INPUT_OBJECT

GraphQLAccessFilter

link GraphQL Schema definition

1input GraphQLAccessFilter {
2
3id: [Int!]
4
5token: [String!]
6
7# Exactly one input field should be provided
8description: StringMatch
9
10# Exactly one input field should be provided
11organizationName: StringMatch
12
13# Exactly one input field should be provided
14integrationName: StringMatch
15
16# Exactly one input field should be provided
17email: StringMatch
18
19# Exactly one input field should be provided
20phoneNumber: StringMatch
21
22isExpired: Boolean
23
24adminUserId: [Int!]
25}