Back to Content Management API

templatePublishBulk

Bulk-publishes templates.

Arguments

  • Name
    ids
    Type
    [ID!]
    Description

    Array of template 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 templatePublishBulk($ids: [ID!]!) {
    templatePublishBulk(ids: $ids) {
       id
    }
  }
`;

const variables = {
  ids: ['TEMPLATE_ID']
};

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

Response

{
  "data": {
    "templatePublishBulk": {
      "id": "1"
    }
  }
}

Was this page helpful?