Back to Content Management API

productPageAddSectionsBulk

Assign a sections to multiple proudct pages.

Arguments

  • Name
    ids
    Type
    [ID!]
    Description

    Array of page IDs that you want to add sections to.

  • Name
    input
    Type
    [ProductPageAddSectionsInput!]!
    Description

    An object that takes in an array of sectionIds and a srategy for how to handle the sections attached to the pages.

    • sectionIds: array of section IDs
    • strategy: clone | link

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 ProductPageAddSectionsBulk($ids: [ID!]!, $input: [ProductPageAddSectionsInput!]!) {
    productPageAddSectionsBulk(ids: $ids, input: $input) {
      id
    }
  }
`;

const variables = {
  "ids": ["product-page-id-1", "product-page-id-2"],
  "input": [
    {
      "sectionIds": ["section-id-1", "section-id-2"],
      "strategy": "clone"
    }
  ]
};

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

Response

{
    "data": {
        "productPageAddSectionsBulk": {
          "id": "1"
        }
    }
}

Was this page helpful?