Back to Content Management API

articleDeleteBulk

Bulk delete articles.

Arguments

  • Name
    ids
    Type
    [ID!]
    Description

    Array of article IDs that you want to delete.

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 ArticleDeleteBulk($ids: [ID!]!) {
    articleDeleteBulk(ids: $ids) {
      id
    }
  }
`;

const variables = {
  "ids": ["60f4b3b3b3b3b3b3b3b3b3b", "60f4b3b3b3b3b3b3b3b3b3c"]
};
const response = await packClient.fetch(query, { variables: variables });
console.log(response.data);

Response

{
    "data": {
        "articleDeleteBulk": {
          "id": "1"
        }
    }
}

Was this page helpful?