GraphQL reference

UpdateDrawingSetPayload

Object

Autogenerated return type of UpdateDrawingSet.

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

Example

mutation UpdateDrawingSet(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateDrawingSetInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateDrawingSet(input: $input) {
        errors
      }
    }
  }
}

Fields

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