Demos how to query the Graph Network Arbitrum Subgraph published to The Graph Network using an API Key obtained on The Graph Studio in a ReactJS
application.
# Clone Repo
git clone git@github.com:graphprotocol/query-examples.git
# CD into reactjs example
cd ./examples/reactjs
# Install bun package manager, if needed
curl -fsSL https://bun.sh/install | bash
# Install deps
bun install
# Run
bun run dev
# Copy the example env file into a .env.local.
cp ./.env.example ./.env.local
# replace the `{your api key here}` with your API Key
VITE_API_KEY
- the 32-digit API Key created in The Graph Studio.- Note in this example, the env var is exposed to the client.
This repo utilizes graphql codegen. This validates our graphql and generates types to match the queries written for the app. These types can then be used to make our components type-safe to the graphql queries that will hydrate them.
# run graphql codegen to regen types from updated queries
bun run codegen.gql