GraphQL reference

CreateNewBidPackagePayload

Object

Autogenerated return type of CreateNewBidPackage.

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

Example

mutation CreateNewBidPackage(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateNewBidPackageInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createNewBidPackage(input: $input) {
        bidPackage
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
bidPackageBidPackage
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!