OBJECT

AccessQueryResult

link GraphQL Schema definition

1type AccessQueryResult {
2
3# The type of access being checked.
4type: AccessType!
5
6# The identifier of the resource related to the access check, if a single ID is
7# required.
8resourceId: ID
9
10# The identifiers of the multiple resources related to the access check, if
11# multiple are required.
12resourceIds: [ID]
13
14# Whether access is granted.
15hasAccess: Boolean
16
17}

link Required by