OBJECT

EntityScopes

link GraphQL Schema definition

  • type EntityScopes {
  • # The scope id strings which may or not all be EntityIds
  • scopeIds: [String!]
  • # Fetch the scoping entities
  • #
  • # Arguments
  • # entityType: Filter scopes by given entityType
  • # entityTypeConst: Filter scopes by the entityType corresponding
  • # to the enum values
  • scopingEntities(
  • entityType: [String!],
  • entityTypeConst: [EntityTypeConst!]
  • ): [Entity!]
  • }