GraphQL reference

DeleteBidPackagePayload

Object

Autogenerated return type of DeleteBidPackage.

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

Example

mutation DeleteBidPackage(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteBidPackageInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteBidPackage(input: $input) {
        bidPackage
        errors
      }
    }
  }
}

Fields

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