GraphQL reference

RenameSubmittalInput

Input

Autogenerated input type of RenameSubmittal

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

Example

mutation RenameSubmittal(
  $organizationId: ID!
  $projectId: ID!
  $input: RenameSubmittalInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      renameSubmittal(input: $input) {
        submittal
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
nowISO8601DateTime
titleString!