INPUT_OBJECT

CountryFilter

link GraphQL Schema definition

1input CountryFilter {
2
3id: [Int!]
4
5# Exactly one input field should be provided
6name: StringMatch
7
8ISO2: [String!]
9
10ISO3: [String!]
11
12ISO_NUM: [Int!]
13
14# Exactly one input field should be provided
15continent: StringMatch
16
17isEU: Boolean
18
19totalStates: IntRange
20
21search: String
22
23notNull: [String!]
24
25negate: [String!]
26}