Back to Content Management API

articleAddSectionsBulk

Assign sections to multiple articles.

Arguments

  • Name
    ids
    Type
    [ID!]
    Description

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

  • Name
    input
    Type
    [ArticleAddSectionsInput!]!
    Description

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

    • 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 ArticleAddSectionsBulk($ids: [ID!]!, $input: [ArticleAddSectionsInput!]!) {
    articleAddSectionsBulk(ids: $ids, input: $input) {
      id
    }
  }
`;

const variables = {
  "ids": ["article-id-1", "article-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": {
        "articleAddSectionsBulk": {
           "id": "1"
        }
    }
}

Was this page helpful?