OBJECT

EntitySchemaQuery

==================== File contents from query_entity_schema.graphqls

link GraphQL Schema definition

  • type EntitySchemaQuery {
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # entityType: Optionally filter by this field
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # provider: Optionally filter by this field
  • # resourceType: Optionally filter by this field
  • # service: Optionally filter by this field
  • querySchema(
  • after: String,
  • entityType: [String!],
  • first: Int,
  • provider: [String!],
  • resourceType: [String!],
  • service: [String!]
  • ): EntitySchemaConnection
  • # Provide summary information for schema at 'next level down' in data model.
  • #
  • # Invoke with no arguments to fetch available providers.
  • # Invoke with a provider to fetch available services in the provider.
  • # Invoke with a provider and a service to fetch available resourceTypes in the
  • # service.
  • #
  • # Arguments
  • # provider: [Not documented]
  • # service: [Not documented]
  • querySchemaSummary(provider: String, service: String): EntitySchemaSummaries!
  • }