Waiting for engine...
Skip to main content

catalogPublisherCreate

Create new catalog publisher. The catalogPublisherCreate takes CatalogPublisherCreateInput as input on success it will return CatalogPublisher as response.

An example of the request as follows:

mutation {
catalogPublisherCreate(
input: {
name: "Publisher Name"
email: "publisher@example.com"
supportEmail: "support@example.com"
url: "https://example.com"
supportUrl: "https://support.example.com"
connectorSDKAgreement: true
publisherLogo: {
imageUrl: "logo-url"
altText: "Publisher Logo"
}
active: true
}
) {
publisher {
id
name
email
supportEmail
url
supportUrl
connectorSDKAgreement
publisherLogo {
imageUrl
altText
}
}
active
createdDate
createdByUserId
}
}

catalogPublisherCreate(
input: CatalogPublisherCreateInput!
): CatalogPublisher

Arguments

catalogPublisherCreate.input ● CatalogPublisherCreateInput! non-null input catalog-service

Type

CatalogPublisher object catalog-service

On this Page