Waiting for engine...
Skip to main content

spaceArtifactListingTagsV2

Fetch the tags by category with hierarchical structure (Version 2). The spaceArtifactListingTagsV2 query accepts SpaceArtifactListingTagV2Input as input.

An example of the request is as follows:

query {
spaceArtifactListingTagsV2(
input: {
artifactListingCategoryId: "category-guid"
pageIndex: 0
pageSize: 10
searchText: "search term"
sortingOrder: "ASC"
}
) {
tags {
name
id
description
childTags {
name
guid
description
}
totalChildTags
}
totalParentTags
pageSize
index
}
}

spaceArtifactListingTagsV2(
input: SpaceArtifactListingTagV2Input
): SpaceArtifactListingTagsV2QueryResponse

Arguments

spaceArtifactListingTagsV2.input ● SpaceArtifactListingTagV2Input input catalog-service

Type

SpaceArtifactListingTagsV2QueryResponse object catalog-service

Hierarchical representation of Space artifact listing Tags.

On this Page