CatalogListingsSearchInput
No description
input CatalogListingsSearchInput {
offset: Int
limit: Int
catalogId: ID
catalogIds: [ID!]
catalogListingIds: [ID!]
slug: String
searchTerm: String
catalogListingStatus: [CatalogListingStatusEnum!]
listingTypes: [CatalogListingType!]
installationTypes: [CatalogListingInstallationType!]
catalogListingCategories: [CatalogListingByCategoryInput!]
catalogListingTagFilter: Filter
regions: [PlatformRegion!]
solutionGraphEnabled: Boolean
sortDirection: SortOrder
sortField: CatalogListingSortField
}
Fields
CatalogListingsSearchInput.offset ● Int scalar miscellaneous {#offset}
Zero-based page index, must not be negative.
CatalogListingsSearchInput.limit ● Int scalar miscellaneous {#limit}
The size of the page to be returned, must be greater than 0.
CatalogListingsSearchInput.catalogId ● ID scalar miscellaneous {#catalog-id}
Unique identifier for public catalog. Ignored if catalogIds (non-null value) is provided.
CatalogListingsSearchInput.catalogIds ● [ID!] list scalar miscellaneous {#catalog-ids}
List of catalog (space) unique identifiers scoped to the caller's account. When provided (non-null), the catalogId field is ignored and listings are filtered by the caller's account. An empty list ([]) returns every listing across all catalogs belonging to the caller's account. A non-empty list restricts results to listings whose catalog is in the list AND belongs to the caller's account. When omitted (null), the existing catalogId-based behavior is used.
CatalogListingsSearchInput.catalogListingIds ● [ID!] list scalar miscellaneous {#catalog-listing-ids}
list of catalogListing unique identifiers
CatalogListingsSearchInput.slug ● String scalar miscellaneous {#slug}
slug of the catalog listing. It is another form of ID
CatalogListingsSearchInput.searchTerm ● String scalar miscellaneous {#search-term}
search by solution name or solution description
CatalogListingsSearchInput.catalogListingStatus ● [CatalogListingStatusEnum!] list enum catalog-service {#catalog-listing-status}
CatalogListing status list
CatalogListingsSearchInput.listingTypes ● [CatalogListingType!] list enum catalog-service {#listing-types}
The list of types associated with this catalog listing (e.g., RECIPE, ACCELERATOR, TASK_AUTOMATION, CUSTOM, PRE_INSTALLED)
CatalogListingsSearchInput.installationTypes ● [CatalogListingInstallationType!] list enum catalog-service {#installation-types}
The list of allowed installation modes supported by this catalog listing. (For example, SINGLE_ATTACH, MULTI_ATTACH).
CatalogListingsSearchInput.catalogListingCategories ● [CatalogListingByCategoryInput!] list input catalog-service {#catalog-listing-categories}
list of listingTag unique identifiers category wise
CatalogListingsSearchInput.catalogListingTagFilter ● Filter scalar partner-portal {#catalog-listing-tag-filter}
Filter for catalog listings using the Filter Query Language. Available fields for filtering include:
- listingTags.listingTag.name (tag name)
- listingTags.listingTag.id (tag ID)
- listingTags.listingTag.categoryCode (tag category)
Example 1: "listingTags.listingTag.categoryCode = 'solution_app' and listingTags.listingTag.name = 'Active MQ'" Example 2: "listingTags.listingTag.categoryCode = 'solution_category' and listingTags.listingTag.id in ('f078744c-e004-5b10-b8b5-3c6e26d39d85','69ef3db5-fda6-5a05-ae2f-3416872850d9')" Example 3: "((listingTags.listingTag.categoryCode = 'solution_app' and listingTags.listingTag.name = 'Active MQ') and (listingTags.listingTag.categoryCode = 'solution_category' and listingTags.listingTag.id in ('f078744c-e004-5b10-b8b5-3c6e26d39d85','69ef3db5-fda6-5a05-ae2f-3416872850d9'))"
CatalogListingsSearchInput.regions ● [PlatformRegion!] list enum platform {#regions}
Filter listings by region availability. Multi-select with OR semantics: a listing matches when any of its regionAvailability values is in this list. Only meaningful for public-catalog listings; private-catalog listings are not filtered by this field.
CatalogListingsSearchInput.solutionGraphEnabled ● Boolean scalar miscellaneous {#solution-graph-enabled}
Filter listings by whether the solution graph is enabled on the listing. true -> only listings with solutionGraphEnabled = true false -> only listings where the flag is false or has never been set null / omitted -> no filtering on this field (default)
CatalogListingsSearchInput.sortDirection ● SortOrder enum platform {#sort-direction}
The sortDirection input specifies the order in which the solutions should be sorted. This can be either ascending or descending.
CatalogListingsSearchInput.sortField ● CatalogListingSortField enum catalog-service {#sort-field}
The sortField input specifies the field by which the solutions should be sorted
Member Of
catalogListings query ●
catalogListingsByArtifact query