OBJECT
AuthContext
link GraphQL Schema definition
- type AuthContext implements Node {
- # Optional child Contexts of this context
- #
- # Arguments
- # after: Return records after the given cursor, as per GraphQL
- # Relay spec
- # before: Return records before the given cursor, as per GraphQL
- # Relay spec
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- # sort: Sort order for records
- (
- String, :
- String, :
- Int, :
- QuerySort!] : [
- ): AuthContextConnection
- # Entity representing this context
- Entity! :
- # Globally unique ID for Node interface
- ID! :
- }