OBJECT
Mutation
link GraphQL Schema definition
- type Mutation {
- # createDoc creates a single doc in the graph
- #
- # Arguments
- # input:
- (: DocConstructor!): Doc!
- # createDocs creates 1-many documents in the graph
- #
- # Arguments
- # input:
- (: DocConstructors!): Docs!
- # putDoc create-or-replaces a Doc in the graph
- #
- # Arguments
- # input:
- (: PutDoc): Doc!
- # putDocs puts a batch of docs in the graph
- #
- # Arguments
- # input:
- (: PutDocs): Docs!
- # editDoc edites a single doc in the graph
- #
- # Arguments
- # input:
- (: Edit!): Doc!
- # editDocs edites 0-many docs in the graph
- #
- # Arguments
- # input:
- (: EditFilter!): Docs!
- # delDoc deletes a doc by reference
- #
- # Arguments
- # input:
- (: RefInput!): Empty
- # delDocs deletes 0-many docs that pass a Filter
- #
- # Arguments
- # input:
- (: Filter!): Empty
- # createConnection creates a single connection in the graph
- #
- # Arguments
- # input:
- (: ConnectionConstructor!): Connection!
- # createConnections creates 1-many connections in the graph
- #
- # Arguments
- # input:
- (: ConnectionConstructors!): Connections!
- # putConnection create-or-replaces a Connection in the graph
- #
- # Arguments
- # input:
- (: PutConnection): Connection!
- # putConnections puts a batch of connections in the graph
- #
- # Arguments
- # input:
- (: PutConnections): Connections!
- # editConnection edites a single connection in the graph
- #
- # Arguments
- # input:
- (: Edit!): Connection!
- # editConnections edites 0-many connections in the graph
- #
- # Arguments
- # input:
- (: EditFilter!): Connections!
- # delConnection deletes a connection by reference
- #
- # Arguments
- # input:
- (: RefInput!): Empty
- # delConnections deletes 0-many connections that pass a Filter
- #
- # Arguments
- # input:
- (: Filter!): Empty
- # broadcast broadcasts a mesage to a pubsub/stream channel
- #
- # Arguments
- # input:
- (: OutboundMessage!): Empty
- # setIndexes sets all of the indexes in the graph
- #
- # Arguments
- # input:
- (: IndexesInput!): Empty
- # setAuthorizers sets all of the authorizers in the graph
- #
- # Arguments
- # input:
- (: AuthorizersInput!): Empty
- # setConstraints sets all of the constraints in the graph
- #
- # Arguments
- # input:
- (: ConstraintsInput!): Empty
- # v sets all of the triggers in the graph
- #
- # Arguments
- # input:
- (: TriggersInput!): Empty
- # searchAndConnect searches for documents and forms connections based on whether
- # they pass a filter
- #
- # Arguments
- # 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:
- (: SearchConnectMeFilter!): Connections!
- }
link Require by
This element is not required by anyone