Edit in GitHubLog an issue
B2B feature. Learn more

deleteRequisitionListItems mutation

The deleteRequisitionListItems mutation removes items from the specified requisition list for the logged in customer.

This mutation requires a valid customer authentication token.

Syntax

Copied to your clipboard
mutation {
deleteRequisitionListItems(
requisitionListUid: ID!
requisitionListItemUids: [ID!]!
) {
DeleteRequisitionListItemsOutput
}
}

Reference

The deleteRequisitionListItems reference provides detailed information about the types and fields defined in this mutation.

Example usage

The following example removes the specified items from the requisition list.

Request:

Copied to your clipboard
mutation {
deleteRequisitionListItems(
requisitionListUid: "Mg==",
requisitionListItemUids: ["NA==","NQ=="]
) {
requisition_list {
uid
items_count
}
}
}

Response:

Copied to your clipboard
{
"data": {
"deleteRequisitionListItems": {
"requisition_list": {
"uid": "Mg==",
"items_count": 1
}
}
}
}
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.