OBJECT

Mutation

link GraphQL Schema definition

  • type Mutation {
  • # createDoc creates a single doc in the graph
  • #
  • # Arguments
  • # input:
  • createDoc(input: DocConstructor!): Doc!
  • # createDocs creates 1-many documents in the graph
  • #
  • # Arguments
  • # input:
  • createDocs(input: DocConstructors!): Docs!
  • # putDoc create-or-replaces a Doc in the graph
  • #
  • # Arguments
  • # input:
  • putDoc(input: PutDoc): Doc!
  • # putDocs puts a batch of docs in the graph
  • #
  • # Arguments
  • # input:
  • putDocs(input: PutDocs): Docs!
  • # editDoc edites a single doc in the graph
  • #
  • # Arguments
  • # input:
  • editDoc(input: Edit!): Doc!
  • # editDocs edites 0-many docs in the graph
  • #
  • # Arguments
  • # input:
  • editDocs(input: EditFilter!): Docs!
  • # delDoc deletes a doc by reference
  • #
  • # Arguments
  • # input:
  • delDoc(input: RefInput!): Empty
  • # delDocs deletes 0-many docs that pass a Filter
  • #
  • # Arguments
  • # input:
  • delDocs(input: Filter!): Empty
  • # createConnection creates a single connection in the graph
  • #
  • # Arguments
  • # input:
  • createConnection(input: ConnectionConstructor!): Connection!
  • # createConnections creates 1-many connections in the graph
  • #
  • # Arguments
  • # input:
  • createConnections(input: ConnectionConstructors!): Connections!
  • # putConnection create-or-replaces a Connection in the graph
  • #
  • # Arguments
  • # input:
  • putConnection(input: PutConnection): Connection!
  • # putConnections puts a batch of connections in the graph
  • #
  • # Arguments
  • # input:
  • putConnections(input: PutConnections): Connections!
  • # editConnection edites a single connection in the graph
  • #
  • # Arguments
  • # input:
  • editConnection(input: Edit!): Connection!
  • # editConnections edites 0-many connections in the graph
  • #
  • # Arguments
  • # input:
  • editConnections(input: EditFilter!): Connections!
  • # delConnection deletes a connection by reference
  • #
  • # Arguments
  • # input:
  • delConnection(input: RefInput!): Empty
  • # delConnections deletes 0-many connections that pass a Filter
  • #
  • # Arguments
  • # input:
  • delConnections(input: Filter!): Empty
  • # broadcast broadcasts a mesage to a pubsub/stream channel
  • #
  • # Arguments
  • # input:
  • broadcast(input: OutboundMessage!): Empty
  • # setIndexes sets all of the indexes in the graph
  • #
  • # Arguments
  • # input:
  • setIndexes(input: IndexesInput!): Empty
  • # setAuthorizers sets all of the authorizers in the graph
  • #
  • # Arguments
  • # input:
  • setAuthorizers(input: AuthorizersInput!): Empty
  • # setConstraints sets all of the constraints in the graph
  • #
  • # Arguments
  • # input:
  • setConstraints(input: ConstraintsInput!): Empty
  • # v sets all of the triggers in the graph
  • #
  • # Arguments
  • # input:
  • setTriggers(input: TriggersInput!): Empty
  • # searchAndConnect searches for documents and forms connections based on whether
  • # they pass a filter
  • #
  • # Arguments
  • # input:
  • searchAndConnect(input: SearchConnectFilter!): Connections!
  • # searchAndConnectMe searches for documents and forms connections from the origin
  • # user to the document based on whether they pass a filter
  • #
  • # Arguments
  • # input:
  • searchAndConnectMe(input: SearchConnectMeFilter!): Connections!
  • }

link Require by

This element is not required by anyone