Waiting for engine...
Skip to main content

spaceArtifactListingTags

Query to fetch the tags by reference tag ids.
The spaceArtifactListingTags query accepts SpaceArtifactListingTagInput as input.

An example of the request is as follows:

query {
spaceArtifactListingTags(
input: {
pageIndex: 0
pageSize: 1
artifactListingCategoryId: "category guid"
artifactListingTagIds: ["tag1-guid", "tag2-guid"]
}) {
numberOfResults
currentPageSize
spaceArtifactListingTagsData {
id
name
artifactListingCategoryId
categoryCode
categoryName
referenceTag{
id
name
}
logoImageUrl
logoAltText
featured
displayOrder
createdDate
createdByAccountId
modifiedByAccountId
modifiedDate
active
}
}
}

spaceArtifactListingTags(
input: SpaceArtifactListingTagInput
): SpaceArtifactListingTagsQueryResponse

Arguments

spaceArtifactListingTags.input ● SpaceArtifactListingTagInput input catalog-service

Type

SpaceArtifactListingTagsQueryResponse object catalog-service

Response type for querying Space artifact listing tags, including pagination info and tag data.

On this Page