GraphQL reference

PutMarkupShapeInput

Input

Autogenerated input type of PutMarkupShape

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

Example

mutation PutMarkupShape(
  $organizationId: ID!
  $projectId: ID!
  $input: PutMarkupShapeInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      putMarkupShape(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
createdAtISO8601DateTime
deletedBoolean!
drawingSetPageIdID!
idID!
issueIdID!
lastModifiedOnCanvasIdString
mutationMetadataJSON
opacityFloat
propsString!
rotationFloat!
tldrawIdString!
typeString!
updatedAtISO8601DateTime!
xFloat!
yFloat!