Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intro Page for Creating a Subgraph #832

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ http {
rewrite ^/docs/([a-zA-Z][a-zA-Z])/deploying/deploying-a-subgraph-to-studio/$ $scheme://$http_host/docs/$1/deploying/deploy-using-subgraph-studio/ permanent;
rewrite ^/docs/([a-zA-Z][a-zA-Z])/deploying/subgraph-studio/$ $scheme://$http_host/docs/$1/deploying/deploy-using-subgraph-studio/ permanent;
rewrite ^/docs/([a-zA-Z][a-zA-Z])/managing/deprecate-a-subgraph/$ $scheme://$http_host/docs/$1/managing/delete-a-subgraph/ permanent;
rewrite ^/docs/([a-zA-Z][a-zA-Z])/developing/creating-a-subgraph/$ $scheme://$http_host/docs/$1/developing/creating-a-subgraph/starting-your-subgraph/ permanent;
# Temporary redirects (302)
rewrite ^/docs/en/querying/graph-client/$ $scheme://$http_host/docs/en/querying/graph-client/README/ redirect;
rewrite ^/docs/en/developing/graph-ts/$ $scheme://$http_host/docs/en/developing/graph-ts/README/ redirect;
Expand Down
1 change: 1 addition & 0 deletions website/pages/en/developing/creating-a-subgraph/_meta.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export default {
'starting-your-subgraph': '',
'install-the-cli': '',
'subgraph-manifest': '',
'ql-schema': '',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: Starting Your Subgraph
---

## Overview

The Graph is home to thousands of subgraphs already available for query, so check [The Graph Explorer](https://thegraph.com/explorer) and find one that already matches your needs.

When you create a [subgraph](/subgraphs/), you create a custom open API that extracts data from a blockchain, processes it, stores it, and makes it easy to query via GraphQL.

Subgraph development ranges from simple scaffold subgraphs to advanced, specifically tailored subgraphs.

### Start Building

Start the process and build a subgraph that matches your needs:

1. [Install the CLI](/developing/creating-a-subgraph/install-the-cli/)- Set up your infrastructure
2. [Subgraph Manifest](/developing/creating-a-subgraph/subgraph-manifest/)- Understand a subgraph's key component
3. [The Graph Ql Schema](/developing/creating-a-subgraph/ql-schema/)- Write your schema
4. [Writing AssemblyScript Mappings](/developing/creating-a-subgraph/assemblyscript-mappings/)- Write your mappings
5. [Advanced Features](/developing/creating-a-subgraph/advanced/)- Customize your subgraph with advanced features
idalithb marked this conversation as resolved.
Show resolved Hide resolved
Loading