Back to Content Management API

collectionPageAddSectionsBulk

Add multiple sections to multiple pages.

Arguments

  • Name
    ids
    Type
    [ID!]
    Description

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

  • Name
    input
    Type
    [CollectionPageAddSectionsInput!]!
    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 response = await packClient.fetch(query, { variables: variables });
console.log(response.data);

Response

{
  "data": {
    "collectionPageAddSectionsBulk": {
      "id": "1"
    }
  }
}

Was this page helpful?