Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
Add requiresIndexed to block loader.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinsina committed Mar 24, 2022
1 parent aba41f5 commit 91ee504
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ module.exports = async (apolloClient, {
requiresImage,
sectionBubbling,

requiresIndexed,

queryFragment,
queryName,
} = {}) => {
Expand All @@ -74,6 +76,7 @@ module.exports = async (apolloClient, {
since: date(since),
beginning: { after: date(beginningAfter), before: date(beginningBefore) },
ending: { after: date(endingAfter), before: date(endingBefore) },
requiresIndexed,
...(publishedAfter && { after: date(publishedAfter) }),
};
if (field || order) input.sort = { field, order };
Expand Down

0 comments on commit 91ee504

Please sign in to comment.