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
  • # contextId: Get from this parent context id. If not provided,
  • # get from root context
  • # contextNameSearch: Optionally filter contexts based on name
  • # substring.
  • # contextType: Optional list of scope types to filter
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # sort: Sort order for records
  • authContexts(
  • after: String,
  • before: String,
  • contextId: EntityId,
  • contextNameSearch: String,
  • contextType: [AuthRbacAssignableScopeType!],
  • first: Int,
  • sort: [QuerySort!]
  • ): AuthContextConnection!
  • # AuthContext Scope
  • globalScope: Boolean!
  • }