INPUT_OBJECT

RegistrationAccessEntryFilter

link GraphQL Schema definition

1input RegistrationAccessEntryFilter {
4
2# Case-insensitive partial match on the entry value.
3search: String
7
5# Only entries of this type.
6type: RegistrationAccessEntryType
10
8# Only entries with this invite-email setting.
9sendInviteEmail: Boolean
13
11# Only entries granting at least one of these application roles.
12applicationRoleIds: [ID!]
16
14# Only entries granting this authorization group.
15authGroupId: ID
19
17# Only entries added at or after this time.
18createdDateTimeFrom: DateTime
22
20# Only entries added at or before this time.
21createdDateTimeTo: DateTime
25
23# Only entries added by one of these users.
24createdBy: [ID!]
26}