Waiting for engine...
Skip to main content

catalogPublishers

Query to fetch catalog publishers
The catalogPublishers takes CatalogPublishersSearchInput as input on success
it will return CatalogPublishersQueryResponse as response.
Default values: offset = 0, limit = 10

An example of the request as follows:

query {
catalogPublishers(
input: {
offset: 0
limit: 10
}
) {
totalCount
currentPageSize
catalogPublishers {
publisher {
id
name
email
supportEmail
url
supportUrl
connectorSDKAgreement
publisherLogo {
imageUrl
altText
}
}
active
createdByUserId
createdByAccountId
createdDate
modifiedByUserId
modifiedByAccountId
modifiedDate
}
}
}

catalogPublishers(
input: CatalogPublishersSearchInput
): CatalogPublishersQueryResponse

Arguments

catalogPublishers.input ● CatalogPublishersSearchInput input catalog-service

Type

CatalogPublishersQueryResponse object catalog-service

On this Page