Waiting for engine...
Skip to main content

catalogListingsByArtifact

Query to fetch one catalog listing per artifact by account and fetch similar artifact listings present in different catalogs

An example of the request as follow

query {
catalogListingsByArtifact(
input: {
offset: 0
limit: 10
catalogIds: ["df12bbf9-bf68-4d72-a5ad-b675e"]
searchTerm: "my integration"
catalogListingStatus: [PUBLISHED]
listingTypes: [INTEGRATION_PACK, RECIPE]
}
) {
totalCount
currentPageSize
catalogListings {
id
slug
catalogId
listingMetaData {
name
description
}
listingArtifact {
listingType
artifactSourceId
}
catalogListingStatus
modifiedDate
associatedCatalogs {
catalogName
catalogListing {
id
catalogId
catalogListingStatus
listingMetaData {
name
description
}
}
}
}
}
}

catalogListingsByArtifact(
input: CatalogListingsSearchInput
): CatalogListingsQueryResponse

Arguments

catalogListingsByArtifact.input ● CatalogListingsSearchInput input catalog-service

Type

CatalogListingsQueryResponse object catalog-service

Represents the response for catalog listings queries, including pagination information and the list of catalog listings.

On this Page