The Graph icon
The Graph icon

The Graph

The Graph is a decentralized protocol for indexing and querying blockchain data. The Graph makes it possible to query data that is difficult to query directly.

Cost / License

  • Subscription
  • Open Source

Platforms

  • Linux
  • Software as a Service (SaaS)
  • Mac
  • Windows
-
No reviews
0likes
0comments
0news articles

Features

Suggest and vote on features
  1.  Blockchain

The Graph News & Activities

Highlights All activities

Recent activities

No activities found.

The Graph information

  • Developed by

    US flagThe Graph
  • Licensing

    Open Source and Commercial product.
  • Pricing

    Subscription that costs $0 per month.
  • Alternatives

    1 alternatives listed
  • Supported Languages

    • English

AlternativeTo Category

Bitcoin & Cryptocurrency

Popular alternatives

View all
The Graph was added to AlternativeTo by Pouya Eghbali on and this page was last updated .
No comments or reviews, maybe you want to be first?
Post comment/review

What is The Graph?

The Graph is a decentralized protocol for indexing and querying blockchain data. The Graph makes it possible to query data that is difficult to query directly.

Projects with complex smart contracts like Uniswap and NFTs initiatives like Bored Ape Yacht Club store data on the Ethereum blockchain, making it really difficult to read anything other than basic data directly from the blockchain.

In the case of Bored Ape Yacht Club, we can perform basic read operations on the contract like getting the owner of a certain Ape, getting the content URI of an Ape based on their ID, or the total supply, as these read operations are programmed directly into the smart contract, but more advanced real-world queries and operations like aggregation, search, relationships, and non-trivial filtering are not possible. For example, if we wanted to query for apes that are owned by a certain address, and filter by one of its characteristics, we would not be able to get that information by interacting directly with the contract itself.

To get this data, you would have to process every single transfer event ever emitted, read the metadata from IPFS using the Token ID and IPFS hash, and then aggregate it. Even for these types of relatively simple questions, it would take hours or even days for a decentralized application (dapp) running in a browser to get an answer.

You could also build out your own server, process the transactions there, save them to a database, and build an API endpoint on top of it all in order to query the data. However, this option is resource intensive, needs maintenance, presents a single point of failure, and breaks important security properties required for decentralization.

Indexing blockchain data is really, really hard.

Blockchain properties like finality, chain reorganizations, or uncled blocks complicate this process further, and make it not just time consuming but conceptually hard to retrieve correct query results from blockchain data.

The Graph solves this with a decentralized protocol that indexes and enables the performant and efficient querying of blockchain data. These APIs (indexed "subgraphs") can then be queried with a standard GraphQL API. Today, there is a hosted service as well as a decentralized protocol with the same capabilities. Both are backed by the open source implementation of Graph Node.

Official Links