✨Discover storytelling in the AI age with Pixar's Matthew Luhn at Sanity Connect, May 8th—register now

GROQ Query for new and unpublished Documents

By Simeon Griggs & Peter

Not all Unpublished Documents are created equal

Querying for Draft Documents

{
  "unpublishedAll": *[_id in path("drafts.**")],
  "unpublishedNew": *[_id in path("drafts.**") && count(*[^._id == "drafts." + _id]) == 0],
  "unpublishedModified": *[count(*[_id in [^._id, "drafts." + ^._id]]) > 1]
}

Draft / Unpublished Documents can be queried by looking for any Document which has an _id that begins with drafts. but determining if the Document has ever been Published before requires more work.

An existing, previously published Document with unpublished changes will exist as two Documents that can be returned by an authenticated query, their _id's look something like:

  • asdf-1234
  • drafts.asdf-1234

However, a new Document that has never been published will only exist with an _id that begins with drafts.

When this snippet is run, the number of results in unpublishedAll should equal the sum of the results in unpublishedNew and unpublishedModified.

Note: These example queries are not optimised and are intended for use cases like document lists for your Dashboard.

The three query keys explained:

  1. unpublishedAll will return all Documents with an _id beginning with drafts.
  2. unpublishedNew does the same search but only returns Documents for which it can also find Published _id's.
  3. unpublishedModified finds as many Documents where both a published and draft _id for the same document exist.

Contributors

Other schemas by authors