Waiting for engine...
Skip to main content

spaceArtifactListingTagUpdate

Update tag for Space artifact listing category. The spaceArtifactListingTagUpdate mutation accepts the SpaceArtifactListingTagUpdateInput as input. An example of the request is as follows:

mutation ($logoFile: Upload!) {
spaceArtifactListingTagUpdate(
input: {
id: "tag guid"
name: "category name"
refTagId: "reference tag guid"
logo: { logoAltText: "logo alternative text", logoImageUrl: $logoFile }
featured: true
displayOrder: 1
active: false
description: "sales tag"
}) {
id
name
artifactListingCategoryId
referenceTag{
id
name
}
logoImageUrl
logoAltText
featured
displayOrder
createdDate
createdByAccountId
modifiedByAccountId
modifiedDate
active
description
}
}

spaceArtifactListingTagUpdate(
input: SpaceArtifactListingTagUpdateInput
): ArtifactListingTag

Arguments

spaceArtifactListingTagUpdate.input ● SpaceArtifactListingTagUpdateInput input catalog-service

Type

ArtifactListingTag object catalog-service

Contains all relevant artifact details for a Tag, including its id, name, parent and child tag ids, and related metadata.

On this Page