GraphQL reference

SubmitContractInput

Input

Autogenerated input type of SubmitContract

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

Example

mutation SubmitContract(
  $organizationId: ID!
  $projectId: ID!
  $input: SubmitContractInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      submitContract(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
approvalEmailMessageRichTextString
approvalEmailSubjectString
clientMutationIdStringA unique identifier for the client performing the mutation.
contractIdID!
emailMessageRichTextString
emailSubjectString
mutationMetadataJSON
projectIdID!