GraphQL reference

WillOrWontBidInput

Input

Autogenerated input type of WillOrWontBid

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

Example

mutation WillOrWontBid(
  $organizationId: ID!
  $projectId: ID!
  $input: WillOrWontBidInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      willOrWontBid(input: $input) {
        bid
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
nowISO8601DateTime
willBidBoolean!