Waiting for engine...
Skip to main content

spaceArtifactListingTagCreate

Create new tag for Space artifact listing category. The spaceArtifactListingTagCreate mutation accepts the SpaceArtifactListingTagCreateInput as input.

An example of the request is as follows:

mutation ($logoFile: Upload!) {
spaceArtifactListingTagCreate(
input: {
name: "category name"
artifactListingCatCode: "CAT_CODE"
refTagId: "GUID of the reference tag"
logo: { logoAltText: "alternative text", logoImageUrl: $logoFile }
featured: true
displayOrder: 1
description: "tag description"
}) {
id
name
artifactListingCategoryId
referenceTag{
id
name
}
logoImageUrl
logoAltText
featured
displayOrder
createdDate
createdByAccountId
modifiedByAccountId
modifiedDate
active
description
}
}

spaceArtifactListingTagCreate(
input: SpaceArtifactListingTagCreateInput
): ArtifactListingTag

Arguments

spaceArtifactListingTagCreate.input ● SpaceArtifactListingTagCreateInput 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