Back to Content Management API

productPagePublishBulk

Bulk publish product pages.

Arguments

  • Name
    ids
    Type
    [ID!]
    Description

    Array of product page IDs that you want to publish.

Returns

  • Name
    Job
    Type
    Job
    Description

    Any requested field from the Job object.

Request

import { PackClient } from '@pack/client'
const packClient = new PackClient({
  token: 'YOUR-PACK-TOKEN'
});

const query = `
  mutation ProductPagePublishBulk($ids: [ID!]!) {
    productPagePublishBulk(ids: $ids) {
      id
    }
  }
`;

const variables = {
  ids: ['1', '2']
};

const response = await packClient.fetch(query, { variables: variables });
console.log(response.data);

Response

{
  "data": {
    "productPagePublishBulk": {
      "id": "1"
    }
  }
}

Was this page helpful?