aptos-labs / aptos-core

Aptos is a layer 1 blockchain built to support the widespread use of blockchain through better technology and user experience.
https://aptosfoundation.org
Other
6.07k stars 3.61k forks source link

Is indexer service without graphql service? #5278

Closed 99Kies closed 1 year ago

99Kies commented 1 year ago

I built indexer service locally and tried to query through graphql but it failed. There seems to be no documentation for the graphql service.

https://aptos.dev/guides/indexing/#aptos-indexer-graphql-servers

Flofie commented 1 year ago

Also interested in that. Is the graphql layer open source - or will it be?

AKnownEntity commented 1 year ago

Following, please add some documentation and or OS code for graphql indexers setup

github-actions[bot] commented 1 year ago

This issue is stale because it has been open 45 days with no activity. Remove the stale label or comment - otherwise this will be closed in 15 days.

davidiw commented 1 year ago

Much of this is on aptos.dev now, feel free to re-open if you can't find what you're looking for.

makstr commented 1 year ago

I am trying to retrieve account tx history, I have been playing with the SDK getAccountTransactions method but got mixed results.

Following this discussion and the instructions https://aptos.dev/nodes/indexer-fullnode/ I have a running instance but as it's been already pointed out the service does not offer GraphQL.

Official documentation is inviting to use https://aptos.dev/guides/indexing/#use-the-aptos-provided-indexing-service but with a rate limit. Perhaps there is a paid plan?

There is some 3rd party apis. I explored the https://blockeden.xyz/docs/aptos/analytics-and-graphql/ which provides an indexer but the aggregate queries are locked out. There is also moralis, it gives similar results as the public GraphQL indexer but is also lacking aggregate data.

Are there any other options out there now?