9 minutes
Querying Best Practices
Use The Graph’s GraphQL API to query Subgraph data efficiently. This guide outlines essential GraphQL rules, guides, and best practices to help you write optimized, reliable queries.
Querying a GraphQL API
The Anatomy of a GraphQL Query
GraphQL queries use the GraphQL language, which is defined in the GraphQL specification.
Unlike REST APIs, GraphQL APIs are built on a schema-driven design that defines which queries can be performed.
Here’s a typical query to fetch a token
:
1query GetToken($id: ID!) {2 token(id: $id) {3 id4 owner5 }6}
which will return a predictable JSON response (when passing the proper $id
variable value):
1{2 "token": {3 "id": "...",4 "owner": "..."5 }6}
The above GetToken
query is composed of multiple language parts (replaced below with [...]
placeholders):
1query [operationName]([variableName]: [variableType]) {2 [queryName]([argumentName]: [variableName]) {3 # "{ ... }" express a Selection-Set, we are querying fields from `queryName`.4 [field]5 [field]6 }7}
Rules for Writing GraphQL Queries
Important: Failing to follow these rules will result in an error from The Graph API.
- Each
queryName
must only be used once per operation. - Each
field
must be used only once in a selection (you cannot queryid
twice undertoken
). - Complex types require a selection of sub-fields.
- For example, some
fields' or queries (like
tokens) return complex types which will require a selection of sub-fields. Not providing a selection when expected or providing one when not expected will raise an error, such as
id`. To know a field type, please refer to Graph Explorer.
- For example, some
- Any variable assigned to an argument must match its type.
- Variables must be uniquely defined and used.
For a complete list of rules with code examples, check out the GraphQL Validations guide.
How to Send a Query to a GraphQL API
GraphQL is a query language and a set of conventions for APIs, typically used over HTTP to request and send data between clients and servers. This means that you can query a GraphQL API using standard fetch
(natively or via @whatwg-node/fetch
or isomorphic-fetch
).
However, as recommended in Querying from an Application, it’s best to use graph-client
, which supports the following unique features:
- Cross-chain Subgraph Handling: Querying from multiple Subgraphs in a single query
- Automatic Block Tracking
- Automatic Pagination
- Fully typed result
Example query using graph-client
:
1import { execute } from '../.graphclient'23const query = `4query GetToken($id: ID!) {5 token(id: $id) {6 id7 owner8 }9}10`11const variables = { id: '1' }1213async function main() {14 const result = await execute(query, variables)15 // `result` is fully typed!16 console.log(result)17}1819main()
For more alternatives, see “Querying from an Application”.
Best Practices
1. Always Write Static Queries
A common bad practice is to dynamically build a query string as follows:
1const id = params.id2const fields = ['id', 'owner']3const query = `4query GetToken {5 token(id: ${id}) {6 ${fields.join('\n')}7 }8}9`1011// Execute query...
While the example above produces a valid GraphQL query, it comes with several issues:
- The full query is harder to understand.
- Developers are responsible for safely sanitizing the string interpolation.
- Not sending the values of the variables as part of the request can block server-side caching.
- It prevents tools from statically analyzing the query (e.g.linters or type generation tools).
Instead, it’s recommended to always write queries as static strings.
Example of static string:
1import { execute } from 'your-favorite-graphql-client'23const id = params.id4const query = `5query GetToken($id: ID!) {6 token(id: $id) {7 id8 owner9 }10}11`1213const result = await execute(query, {14 variables: {15 id,16 },17})
Static strings have several key advantages:
- Queries are easier to read, manage, and debug.
- Variable sanitization is handled by the GraphQL server.
- Variables can be cached at the server level.
- Queries can be statically analyzed by tools (see GraphQL Essential Tools).
2. Include Fields Conditionally in Static Queries
Including fields in static queries only for a particular condition improves performance and keeps responses lightweight by fetching only the necessary data when it’s relevant.
- The
@include(if:...)
directive tells the query to include a specific field only if the given condition is true. - The
@skip(if: ...)
directive tells the query to exclude a specific field if the given condition is true.
Example using owner
field with @include(if:...)
directive:
1import { execute } from 'your-favorite-graphql-client'23const id = params.id4const query = `5query GetToken($id: ID!, $includeOwner: Boolean) {6 token(id: $id) {7 id8 owner @include(if: $includeOwner)9 }10}11`1213const result = await execute(query, {14 variables: {15 id,16 includeOwner: true,17 },18})
3. Ask Only For What You Want
GraphQL is known for its “Ask for what you want” tagline, which is why it requires explicitly listing each field you want. There’s no built-in way to fetch all available fields automatically.
- When querying GraphQL APIs, always think of querying only the fields that will actually be used.
- Make sure queries only fetch as many entities as you actually need. By default, queries will fetch 100 entities in a collection, which is usually much more than what will actually be used, e.g., for display to the user. This applies not just to top-level collections in a query, but even more so to nested collections of entities.
For example, in the following query:
1query listTokens {2 tokens {3 # will fetch up to 100 tokens4 id5 transactions {6 # will fetch up to 100 transactions7 id8 }9 }10}
The response could contain 100 transactions for each of the 100 tokens.
If the application only needs 10 transactions, the query should explicitly set first: 10
on the transactions field.
4. Use a Single Query to Request Multiple Records
By default, Subgraphs have a singular entity for one record. For multiple records, use the plural entities and filter: where: {id_in:[X,Y,Z]}
or where: {volume_gt:100000}
Example of inefficient querying:
1query SingleRecord {2 entity(id: X) {3 id4 name5 }6}7query SingleRecord {8 entity(id: Y) {9 id10 name11 }12}
Example of optimized querying:
1query ManyRecords {2 entities(where: { id_in: [X, Y] }) {3 id4 name5 }6}
5. Combine Multiple Queries in a Single Request
Your application might require querying multiple types of data as follows:
1import { execute } from "your-favorite-graphql-client"23const tokensQuery = `4query GetTokens {5 tokens(first: 50) {6 id7 owner8 }9}10`11const countersQuery = `12query GetCounters {13 counters {14 id15 value16 }17}18`1920const [tokens, counters] = Promise.all(21 [22 tokensQuery,23 countersQuery,24 ].map(execute)25)
While this implementation is valid, it will require two round trips with the GraphQL API.
It’s best to send multiple queries in the same GraphQL request as follows:
1import { execute } from "your-favorite-graphql-client"23const query = `4query GetTokensandCounters {5 tokens(first: 50) {6 id7 owner8 }9 counters {10 id11 value12 }13}14`1516const { result: { tokens, counters } } = execute(query)
Sending multiple queries in the same GraphQL request improves the overall performance by reducing the time spent on the network (saves you a round trip to the API) and provides a more concise implementation.
6. Leverage GraphQL Fragments
A helpful feature to write GraphQL queries is GraphQL Fragment.
Looking at the following query, you will notice that some fields are repeated across multiple Selection-Sets ({ ... }
):
1query {2 bondEvents {3 id4 newDelegate {5 id6 active7 status8 }9 oldDelegate {10 id11 active12 status13 }14 }15}
Such repeated fields (id
, active
, status
) bring many issues:
- More extensive queries become harder to read.
- When using tools that generate TypeScript types based on queries (more on that in the last section),
newDelegate
andoldDelegate
will result in two distinct inline interfaces.
An optimized version of the query would be the following:
1query {2 bondEvents {3 id4 newDelegate {5 ...DelegateItem6 }7 oldDelegate {8 ...DelegateItem9 }10 }11}1213# we define a fragment (subtype) on Transcoder14# to factorize repeated fields in the query15fragment DelegateItem on Transcoder {16 id17 active18 status19}
Using a GraphQL fragment
improves readability (especially at scale) and results in better TypeScript types generation.
When using the types generation tool, the above query will generate a proper DelegateItemFragment
type (see last “Tools” section).
GraphQL Fragment Guidelines
Dos and Don’ts for Fragments
- Fragments cannot be based on non-applicable types (types without fields).
BigInt
cannot be used as a fragment’s base because it’s a scalar (native “plain” type).
Example:
1fragment MyFragment on BigInt {2 # ...3}
- Fragments belong to specific types and must be used with those same types in queries.
- Spread only fragments matching the correct type.
Example:
1query {2 bondEvents {3 id4 newDelegate {5 ...VoteItem # Error! `VoteItem` cannot be spread on `Transcoder` type6 }7 oldDelegate {8 ...VoteItem9 }10 }11}1213fragment VoteItem on Vote {14 id15 voter16}
newDelegate
andoldDelegate
are of typeTranscoder
. It’s not possible to spread a fragment of typeVote
here.
- Fragments must be defined based on their specific usage.
- Define fragments as an atomic business unit of data.
How to Define Fragment
as an Atomic Business Unit of Data
For most use-cases, defining one fragment per type (in the case of repeated fields usage or type generation) is enough.
Here is a rule of thumb for using fragments:
- When fields of the same type are repeated in a query, group them in a
Fragment
. - When similar but different fields are repeated, create multiple fragments.
Example:
1# base fragment (mostly used in listing)2fragment Voter on Vote {3 id4 voter5}67# extended fragment (when querying a detailed view of a vote)8fragment VoteWithPoll on Vote {9 id10 voter11 choiceID12 poll {13 id14 proposal15 }16}
GraphQL Essential Tools Guides
Test Queries with Graph Explorer
Before integrating GraphQL queries into your dapp, it’s best to test them. Instead of running them directly in your app, use a web-based playground.
Start with Graph Explorer, a preconfigured GraphQL playground built specifically for Subgraphs. You can experiment with queries and see the structure of the data returned without writing any frontend code.
If you want alternatives to debug/test your queries, check out other similar web-based tools:
Setting up Workflow and IDE Tools
In order to keep up with querying best practices and syntax rules, use the following workflow and IDE tools.
GraphQL ESLint
- Install GraphQL ESLint
Use GraphQL ESLint to enforce best practices and syntax rules with zero effort.
- Use the “operations-recommended” config
This will enforce essential rules such as:
@graphql-eslint/fields-on-correct-type
: Ensures fields match the proper type.@graphql-eslint/no-unused variables
: Flags unused variables in your queries.
Result: You’ll catch errors without even testing queries on the playground or running them in production!
Use IDE plugins
GraphQL plugins streamline your workflow by offering real-time feedback while you code. They highlight mistakes, suggest completions, and help you explore your schema faster.
- VS Code
Install the GraphQL VS Code extension to unlock:
- Syntax highlighting
- Autocomplete suggestions
- Validation against schema
- Snippets
- Go to definition for fragments and input types
If you are using graphql-eslint
, use the ESLint VS Code extension to visualize errors and warnings inlined in your code correctly.
- WebStorm/Intellij and GraphQL
Install the JS GraphQL plugin. It significantly improves the experience of working with GraphQL by providing:
- Syntax highlighting
- Autocomplete suggestions
- Validation against schema
- Snippets
For more information on this topic, check out the WebStorm article which showcases all the plugin’s main features.