GraphQL reference

UpdateBidInput

Input

Autogenerated input type of UpdateBid

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

Example

mutation UpdateBid(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateBidInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateBid(input: $input) {
        bid
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
amountCentsBigInt
bidScopeIdsJSON
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
notesRichTextString
nowISO8601DateTime
tradeIds[ID!]