spaceArtifactListingTagSearch
Fetch a list of tag names matching the input string using fuzzy search. The spaceArtifactListingTagSearch query accepts SpaceArtifactListingTagSearchInput as input and returns a list of matching tag names. Fuzzy search ensures results are returned even if there are spelling mistakes or typos. If no matches are found, an empty list will be returned. An example of the request is as follows:
query {
spaceArtifactListingTagSearch(
input: {
searchText: "tag"
artifactListingCatCode: "CAT001"
}
) {
referenceTagId
name
}
}
spaceArtifactListingTagSearch(
input: SpaceArtifactListingTagSearchInput
): [SpaceArtifactListingTagSearchResult!]
Arguments
spaceArtifactListingTagSearch.input ● SpaceArtifactListingTagSearchInput input catalog-service
Type
SpaceArtifactListingTagSearchResult object catalog-service
Represents a search result entry containing a reference tag identifier and its corresponding tag name.
Was this topic helpful?