Added

New `updated_at` field

🏷️ API version: 2026-01

You can now retrieve a monday workdoc's last updated date using the new last_updated field on the docs query.

query {
  docs(
    object_ids: [123456789]
    limit: 1
  ) {
    id
    object_id
    settings
    last_updated
    created_by {
      id
      name
    }
  }
}