GraphQL reference

AddSubmittalStageInput

Input

Autogenerated input type of AddSubmittalStage

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

Example

mutation AddSubmittalStage(
  $organizationId: ID!
  $projectId: ID!
  $input: AddSubmittalStageInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      addSubmittalStage(input: $input) {
        submittalStage
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
approvers[SubmittalApproverInput!]
clientMutationIdStringA unique identifier for the client performing the mutation.
mutationMetadataJSON
nowISO8601DateTime
stageIdID!
submittalIdID!
typeString