GraphQL reference

PutMarkupSessionInput

Input

Autogenerated input type of PutMarkupSession

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

Example

mutation PutMarkupSession(
  $organizationId: ID!
  $projectId: ID!
  $input: PutMarkupSessionInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      putMarkupSession(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
createdAtISO8601DateTime!
idID!
issueIdID!
mutationMetadataJSON
projectIdID!
shapesCreatedJSON!
shapesDeletedJSON!
shapesUpdatedJSON!
updatedAtISO8601DateTime!
userIdID!