OBJECT

Schema

Schema returns registered connection & doc types & other graph primitives

link GraphQL Schema definition

  • type Schema {
  • # connection_types are the types of connections in the graph
  • connection_types: [String!]
  • # doc_types are the types of docs in the graph
  • doc_types: [String!]
  • # authorizers are all of registered authorizers in the graph
  • authorizers: Authorizers
  • # validators are all of registered validators in the graph
  • validators: TypeValidators
  • # indexes are all of the registered indexes in the graph
  • indexes: Indexes
  • # triggers are all of the registered triggers in the graph
  • triggers: Triggers
  • }

link Require by