Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve updating multiple items api reference #257

Open
br41nslug opened this issue Mar 20, 2025 · 1 comment
Open

Improve updating multiple items api reference #257

br41nslug opened this issue Mar 20, 2025 · 1 comment

Comments

@br41nslug
Copy link
Member

The "Update Multiple Items" section in the API reference is missing 2 supported methods of doing multiple updates.

On this page https://directus.io/docs/api/items#update-multiple-items we are currently documenting the "update many by keys" approach, here you provide a list of keys and one single object to update all keys with.

PATCH /items/:collection
{
  "keys": [1,2,3,4],
  "data": {
    "status": "published"
  }
}

We also support the following approaches:

  1. "update many by query" similar to the one above but instead of providing a list of ID's you provide a query to filter items to be updated with a single object.
PATCH /items/:collection
{
  "query": {
    "filter": { 
      "status": { "_eq": "draft" },
    },
  },
  "data": {
    "status": "published"
  }
}
  1. "batch updating" this approach allows the sending of a list of items to updated based on ID so each individual item can update different properties.
PATCH /items/:collection
[
  {
    "id": 1,
    "status": "published"
  },
  {
    "id": 2,
    "status": "archived"
  },
  {
    "id": 3,
    "title": "something"
  },
]
Copy link

linear bot commented Mar 20, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant