Query by Date
This page shows multiple ways to query documents based on a date field.
Here we use a few predicates that can query based on Date or Timestamp fields. Feel free to explore the Date & Time based Predicate Reference page to learn more about this.
Here is an example of how to query for all the articles with the release-date field (Date) equal to January 22, 2020.
Note that this only works for the Date Field, not the Timestamp field.
//To retrieve the API object check how to query the API
api.query(
Prismic.Predicates.at('my.article.release-date', new Date('2020-01-22'))
).then(function(response) {
// response is the response object, response.results holds the documents
});
Here is an example of a query for all documents of the type “blog-post” whose release-date is in the month of May in the year 2016. This might be useful for a blog archive.
//To retrieve the API object check how to query the API
api.query([
Prismic.Predicates.month('my.blog-post.release-date', 'May'),
Prismic.Predicates.year('my.blog-post.release-date', 2016)
]).then(function(response) {
// response is the response object, response.results holds the documents
});
You can also query document by their publications dates.
Here is an example of a query for all documents of the type "blog-post" whose original publication date is in the month of May in the year 2020.
//To retrieve the API object check how to query the API
api.query([
Prismic.Predicates.at('document.type', 'blog-post'),
Prismic.Predicates.month('document.first_publication_date', 'May'),
Prismic.Predicates.year('document.first_publication_date', 2020)
]).then(function(response) {
// response is the response object, response.results holds the documents
});