GraphQL reference

RefreshContractInput

Input

Autogenerated input type of RefreshContract

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

Example

mutation RefreshContract(
  $organizationId: ID!
  $projectId: ID!
  $input: RefreshContractInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      refreshContract(input: $input) {
        errors
      }
    }
  }
}

Fields

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