Skip to main content
Feedback

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!
)
FieldTypeDescriptionRequired/Optional
idIDThe category guidRequired

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:

KeyValue
AuthorizationBearer <Token\>
Acceptapplication/json

JSON request

mutation {
spaceArtifactListingCategoryDelete(id: "de54c2ed-xxxx-xxx-befa-927b")
}

JSON response

{ "data": { "spaceArtifactListingCategoryDelete": true } }
On this Page