GraphQL reference

CreateDocumentNodesPayload

Object

Autogenerated return type of CreateDocumentNodes.

mutation { organization(id: $organizationId) { project(id: $projectId) { createDocumentNodes } } }

Example

mutation CreateDocumentNodes(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateDocumentNodesInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createDocumentNodes(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!