Skip to main content

Document Service API: Usage with Draft & Publish

Page summary:

Use the status parameter with the Document Service API to retrieve published or draft versions of documents, count documents by status, and directly publish documents during creation or updates.

By default the Document Service API returns the draft version of a document when the Draft & Publish feature is enabled. This page describes how to use the status parameter to:

  • return the published version of a document,
  • count documents depending on their status,
  • and directly publish a document while creating it or updating it.
Note

Passing { status: 'draft' } to a Document Service API query returns the same results as not passing any status parameter.

To select documents by how their draft and published versions relate (never-published, modified, and others), see Document Service API: publicationFilter.

Get the published version with findOne()

strapi.documents().findOne()

findOne() with status: 'published'

Return the published version of a specific document.

Get the published version with findFirst()

strapi.documents().findFirst()

findFirst() with status: 'published'

Return the published version of the first matching document.

Get the published version with findMany()

strapi.documents().findMany()

findMany() with status: 'published'

Return the published versions of all matching documents.

count() only draft or published versions

To take into account only draft or published versions of documents while counting documents with the Document Service API, pass the corresponding status parameter:

// Count draft documents (also actually includes published documents)
const draftsCount = await strapi.documents("api::restaurant.restaurant").count({
status: 'draft'
});
// Count only published documents
const publishedCount = await strapi.documents("api::restaurant.restaurant").count({
status: 'published'
});
Note

Since published documents necessarily also have a draft counterpart, a published document is still counted as having a draft version.

This means that counting with the status: 'draft' parameter still returns the total number of documents matching other parameters, even if some documents have already been published and are not displayed as "draft" or "modified" in the Content Manager anymore. To count only never-published drafts, pass a publicationFilter value such as 'never-published' or 'never-published-document'.

Create a draft and publish it

strapi.documents().create()

create() with status: 'published'

Create a new document and immediately publish it.

Update a draft and publish it

strapi.documents().update()

update() with status: 'published'

Update an existing document and immediately publish it.

Was this page helpful?