Skip to content

Commit

Permalink
remove filtering by dates
Browse files Browse the repository at this point in the history
  • Loading branch information
llunaCreixent committed Oct 16, 2024
1 parent 2e7b283 commit 5e6fcce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async function fetchFromGraph(
first = PAGINATION_SIZE,
) {
const query = `{
${name}(first: ${first}, orderBy: id, where: {id_gt: "${lastID}", ${where}, time_gt: "1690754400", time_lt: "1704150000"}) {
${name}(first: ${first}, orderBy: id, where: {id_gt: "${lastID}", ${where}}) {
${fields}
}
}`;
Expand Down

0 comments on commit 5e6fcce

Please sign in to comment.