Skip to content

Commit de8795f

Browse files
authored
Intro Page for Creating a Subgraph (#832)
* updating-cs-index page * edits to spacing
1 parent 5a7f89c commit de8795f

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

nginx.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ http {
9595
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;
9696
rewrite ^/docs/([a-zA-Z][a-zA-Z])/deploying/subgraph-studio/$ $scheme://$http_host/docs/$1/deploying/deploy-using-subgraph-studio/ permanent;
9797
rewrite ^/docs/([a-zA-Z][a-zA-Z])/managing/deprecate-a-subgraph/$ $scheme://$http_host/docs/$1/managing/delete-a-subgraph/ permanent;
98+
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;
9899
# Temporary redirects (302)
99100
rewrite ^/docs/en/querying/graph-client/$ $scheme://$http_host/docs/en/querying/graph-client/README/ redirect;
100101
rewrite ^/docs/en/developing/graph-ts/$ $scheme://$http_host/docs/en/developing/graph-ts/README/ redirect;

website/pages/en/developing/creating-a-subgraph/_meta.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export default {
2+
'starting-your-subgraph': '',
23
'install-the-cli': '',
34
'subgraph-manifest': '',
45
'ql-schema': '',
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: Starting Your Subgraph
3+
---
4+
5+
## Overview
6+
7+
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.
8+
9+
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.
10+
11+
Subgraph development ranges from simple scaffold subgraphs to advanced, specifically tailored subgraphs.
12+
13+
### Start Building
14+
15+
Start the process and build a subgraph that matches your needs:
16+
17+
1. [Install the CLI](/developing/creating-a-subgraph/install-the-cli/) - Set up your infrastructure
18+
2. [Subgraph Manifest](/developing/creating-a-subgraph/subgraph-manifest/) - Understand a subgraph's key component
19+
3. [The Graph Ql Schema](/developing/creating-a-subgraph/ql-schema/) - Write your schema
20+
4. [Writing AssemblyScript Mappings](/developing/creating-a-subgraph/assemblyscript-mappings/) - Write your mappings
21+
5. [Advanced Features](/developing/creating-a-subgraph/advanced/) - Customize your subgraph with advanced features

0 commit comments

Comments
 (0)