OBJECT

AuthUserContext

link GraphQL Schema definition

  • type AuthUserContext {
  • # Get all applicable Auth Contexts
  • #
  • # 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
  • # parentContextId: Get from this parent context id. If not
  • # provided, get from root context
  • # sort: Sort order for records
  • authContexts(
  • after: String,
  • before: String,
  • first: Int,
  • parentContextId: EntityId,
  • sort: [QuerySort!]
  • ): AuthContextConnection!
  • # AuthContext Scope
  • globalScope: Boolean!
  • }