Delete an existing Category from the listing
This mutation deletes an existing category for space artifact listing service. The spaceArtifactListingCategoryDelete mutation accepts category guid as input.
Input syntax
spaceArtifactListingCategoryDelete(
id: ID!
)
| Field | Type | Description | Required/Optional |
|---|---|---|---|
| id | ID | The category guid | Required |
Return syntax
{ "data": { "spaceArtifactListingCategoryDelete": Boolean } }
Implementation
To delete an existing category in catalog service, send a mutation to platform.boomi.com/graphql with the following headers:
| Key | Value |
|---|---|
| Authorization | Bearer <Token\> |
| Accept | application/json |
JSON request
mutation {
spaceArtifactListingCategoryDelete(id: "de54c2ed-xxxx-xxx-befa-927b")
}
JSON response
{ "data": { "spaceArtifactListingCategoryDelete": true } }