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
  • childContexts(
  • after: String,
  • before: String,
  • first: Int,
  • sort: [QuerySort!]
  • ): AuthContextConnection
  • # Entity representing this context
  • entity: Entity!
  • # Globally unique ID for Node interface
  • id: ID!
  • }