INPUT_OBJECT

ImportRegistrationAccessEntriesInput

link GraphQL Schema definition

1input ImportRegistrationAccessEntriesInput {
5
2# The registration configuration whose access list is imported into. One
3# configuration per import.
4registrationConfigurationId: ID!
10
6# false: extend and update the list from the rows. true: delete every normal
7# entry, then insert the rows.
8# Default Access is untouched either way.
9override: Boolean
15
11# The rows to import. At least one. The client bounds how many it submits; the
12# server applies no row
13# limit of its own, so a payload is bounded only by the request body size.
14entries: [RegistrationAccessEntryImportRowInput!]!
16}