Back to Content Management API

pagePublishBulk

Publishes multiple pages.

Arguments

  • Name
    ids
    Type
    [ID!]
    Description

    Array of 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 PagePublishBulk($ids: [ID!]!) {
  pagePublishBulk(ids: $ids) {
    id
  }
}
`
const variables = {
  ids: [
      "page-id-1",
      "page-id-2"
  ]
}
const response = await packClient.fetch(query, { variables: variables });
console.log(response.data);

Response

  {
      "data": {
          "pagePublishBulk": {
              "id": "1",
          }
      }
  }

Was this page helpful?