Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 184 Bytes

File metadata and controls

12 lines (9 loc) · 184 Bytes

GraphQL

Type definitions

Type definition with ! meaning non-nullable (will always return a value when queried).

type Weapons {
  id: String!
  name: String!
}