Cookbook > Tranfer to The Graph

Tranfer to The Graph

Reading time: 3 min

Quickly upgrade your subgraphs from any platform to The Graph's decentralized network.

Benefits of Switching to The Graph

Link to this section
  • Use the same subgraph that your apps already use with zero-downtime migration.
  • Increase reliability from a global network supported by 100+ Indexers.
  • Receive lightning-fast support for subgraphs 24/7, with an on-call engineering team.

Upgrade Your Subgraph to The Graph in 3 Easy Steps

Link to this section
  1. Set Up Your Studio Environment
  2. Deploy Your Subgraph to Studio
  3. Publish to The Graph Network

1. Set Up Your Studio Environment

Link to this section

Create a Subgraph in Subgraph Studio

Link to this section
  • Go to Subgraph Studio and connect your wallet.
  • Click "Create a Subgraph". It is recommended to name the subgraph in Title Case: "Subgraph Name Chain Name".

Note: After publishing, the subgraph name will be editable but requires on-chain action each time, so name it properly.

Install the Graph CLI⁠

Link to this section

You must have Node.js and a package manager of your choice (npm or pnpm) installed to use the Graph CLI. Check for the most recent CLI version.

On your local machine, run the following command:

Using npm:

npm install -g @graphprotocol/graph-cli@latest

Use the following command to create a subgraph in Studio using the CLI:

graph init --product subgraph-studio

Authenticate Your Subgraph

Link to this section

In The Graph CLI, use the auth command seen in Subgraph Studio:

graph auth --studio <your-auth-code>

2. Deploy Your Subgraph to Studio

Link to this section

If you have your source code, you can easily deploy it to Studio. If you don't have it, here's a quick way to deploy your subgraph.

In The Graph CLI, run the following command:

graph deploy --studio <slug> --ipfs-hash <your-subgraph-ipfs-hash>

Note: Every subgraph has an IPFS hash (Deployment ID), which looks like this: "Qmasdfad...". To deploy simply use this IPFS hash. You’ll be prompted to enter a version (e.g., v0.0.1).

3. Publish Your Subgraph to The Graph Network

Link to this section

publish button

Query Your Subgraph

Link to this section

To attract about 3 indexers to query your subgraph, it’s recommended to curate at least 3,000 GRT. To learn more about curating, check out Curating on The Graph.

You can start querying any subgraph by sending a GraphQL query into the subgraph’s query URL endpoint, which is located at the top of its Explorer page in Subgraph Studio.

CryptoPunks Ethereum subgraph by Messari:

Query URL

The query URL for this subgraph is:

https://gateway-arbitrum.network.thegraph.com/api/`**your-own-api-key**`/subgraphs/id/HdVdERFUe8h61vm2fDyycgxjsde5PbB832NHgJfZNqK

Now, you simply need to fill in your own API Key to start sending GraphQL queries to this endpoint.

Getting your own API Key

Link to this section

You can create API Keys in Subgraph Studio under the “API Keys” menu at the top of the page:

API keys

Monitor Subgraph Status

Link to this section

Once you upgrade, you can access and manage your subgraphs in Subgraph Studio and explore all subgraphs in The Graph Explorer.

Additional Resources

Link to this section
  • To quickly create and publish a new subgraph, check out the Quick Start.
  • To explore all the ways you can optimize and customize your subgraph for a better performance, read more about creating a subgraph here.
Edit page

Previous
Subgraph Best Practice 4: Avoid eth_calls
Next
Categorize NFT Marketplaces Using Enums
Edit page