Waiting for engine...
Skip to main content

catalogPublisherUpdate

Update existing catalog publisher. The catalogPublisherUpdate takes CatalogPublisherUpdateInput as input on success it will return CatalogPublisher as response.

An example of the request as follows:

mutation {
catalogPublisherUpdate(
input: {
id: "catalog-publisher-id"
name: "Updated Publisher Name"
email: "updated@example.com"
active: false
}
) {
publisher {
id
name
email
supportEmail
url
supportUrl
connectorSDKAgreement
publisherLogo {
imageUrl: "logo-url"
altText
}
}
active
modifiedDate
modifiedByUserId
}
}

catalogPublisherUpdate(
input: CatalogPublisherUpdateInput!
): CatalogPublisher

Arguments

catalogPublisherUpdate.input ● CatalogPublisherUpdateInput! non-null input catalog-service

Type

CatalogPublisher object catalog-service

On this Page