catalogListingRelatedSolutions
Query to fetch related catalog listings those are associated with exactly same tags of specific/input catalog listing
The catalogListingRelatedSolutions takes catalogListingId as input
and returns CatalogListingsQueryResponse as response.
An example of the request as follow
query {
catalogListingRelatedSolutions(
catalogListingId: "36fa61ad-89bd-4271-a367-7051f681bb46"
) {
totalCount
currentPageSize
catalogListings {
id
slug
listingMetaData {
name
}
}
}
}
catalogListingRelatedSolutions(
catalogListingId: ID!
): CatalogListingsQueryResponse
Arguments
catalogListingRelatedSolutions.catalogListingId ● ID! non-null scalar miscellaneous
Type
CatalogListingsQueryResponse object catalog-service
Represents the response for catalog listings queries, including pagination information and the list of catalog listings.
Was this topic helpful?