Git Product home page Git Product logo

Comments (6)

sydneyhenrard avatar sydneyhenrard commented on August 22, 2024

Did you try to use first and skip
first: 1000 => 1000 first items
first: 1000 + skip: 1000 => 1001 to 2000 items and so on
with the same orderBy you should be able to get all the pools

from v3-subgraph.

fedecastelli avatar fedecastelli commented on August 22, 2024

I tried it and it worked only because there are less than 6000 pools in Uniswap V3.

If you try to use first and skip
first: 1000, skip: 6000 => it throws an error saying "The "skip" argument must be between 0 and 5000, but is 6000"

from v3-subgraph.

sydneyhenrard avatar sydneyhenrard commented on August 22, 2024

First query

{
  pools(first: 1000, orderBy: createdAtTimestamp, orderDirection: asc) 
  { id, createdAtBlockNumber, createdAtTimestamp }
}

Second query (use the where clause by providing the createdAtTimestamp from the last record of the previous query.

{
  pools(first: 1000, orderBy: createdAtTimestamp, orderDirection: asc
  where: {createdAtTimestamp_gt: 1621164209 }) 
  { id, createdAtBlockNumber, createdAtTimestamp }
}

Do that until you have no result

from v3-subgraph.

samlaf avatar samlaf commented on August 22, 2024

@fedecastelli mentionned this solution already in his question, but you didn't answer his related question "I could use the createdAtTimestamp_gt parameter inside the where clause but it may happen I'll exclude pools created at the same timestamp.".

For timestamps I'm guessing its unlikely to have two pools with the same timestamp (unless the timestamp is extremely discrete, like block number for eg.). But when ordering by other attributes (say liquidity, volume, etc.) there is a chance to skip out one of the pools.

from v3-subgraph.

f-z avatar f-z commented on August 22, 2024

How about ordering by id then, assuming it is unique and alphanumeric, so can be ordered and compared?

from v3-subgraph.

egearikan avatar egearikan commented on August 22, 2024

Hi @fedecastelli, were you able to solve this issue?

from v3-subgraph.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.