GraphQL reference

DeleteOtherCostPayload

Object

Autogenerated return type of DeleteOtherCost.

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

Example

mutation DeleteOtherCost(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteOtherCostInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteOtherCost(input: $input) {
        otherCost
        errors
      }
    }
  }
}

Fields

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