GraphQL reference

DeleteDrawingTagPayload

Object

Autogenerated return type of DeleteDrawingTag.

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

Example

mutation DeleteDrawingTag(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteDrawingTagInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteDrawingTag(input: $input) {
        errors
      }
    }
  }
}

Fields

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