GraphQL reference

CreateCommitmentsFromBidsInput

Input

Autogenerated input type of CreateCommitmentsFromBids

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

Example

mutation CreateCommitmentsFromBids(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateCommitmentsFromBidsInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createCommitmentsFromBids(input: $input) {
        errors
      }
    }
  }
}

Fields

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