GraphQL reference

SetContractTemplateInput

Input

Autogenerated input type of SetContractTemplate

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

Example

mutation SetContractTemplate(
  $organizationId: ID!
  $projectId: ID!
  $input: SetContractTemplateInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      setContractTemplate(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
contractIdID!
mutationMetadataJSON
projectIdID!
templateIdID!