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