Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf(gatsby): Support lte for indexed fast filters #22932

Merged
merged 19 commits into from
Apr 14, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
And the loki commit
  • Loading branch information
pvdz committed Apr 8, 2020
commit 56038149c9efffa8e6e76581533e7a285c365a88
2 changes: 2 additions & 0 deletions packages/gatsby/src/schema/__tests__/run-query.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,8 @@ it(`should use the cache argument`, async () => {
})

it(`should lte when value is lower than all found values`, async () => {
if (IS_LOKI) return

let result = await runFilter({ float: { lte: 1 } })

expect(result).toEqual(null) // Zero results yields undefined
Expand Down