Skip to content

Commit a92c6e3

Browse files
committed
updates
1 parent 5ba486e commit a92c6e3

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ http {
9494
rewrite ^/docs/([a-zA-Z][a-zA-Z])/managing/transferring-subgraph-ownership/$ $scheme://$http_host/docs/$1/managing/transfer-and-deprecate-a-subgraph/ permanent;
9595
rewrite ^/docs/en/substreams/(?!index\.).+$ https://substreams.streamingfast.io permanent;
9696
rewrite ^/docs/en/firehose/(?!index\.).+$ https://firehose.streamingfast.io permanent;
97-
97+
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;
9898
# Temporary redirects (302)
9999
rewrite ^/docs/en/querying/graph-client/$ $scheme://$http_host/docs/en/querying/graph-client/README/ redirect;
100100
rewrite ^/docs/en/developing/graph-ts/$ $scheme://$http_host/docs/en/developing/graph-ts/README/ redirect;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
2-
'deploying-a-subgraph-to-studio': '',
2+
'deploy-using-subgraph-studio': '',
33
'subgraph-studio-faqs': '',
44
}

website/pages/en/deploying/deploying-a-subgraph-to-studio.mdx renamed to website/pages/en/deploying/deploy-using-subgraph-studio.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
title: Deploy Using Subgraph Studio
33
---
44

5-
Learn how to deploy your subgraph in Subgraph Studio.
5+
Learn how to deploy your subgraph to Subgraph Studio.
66

77
> Note: When you deploy a subgraph, you push it to Subgraph Studio, where you'll be able to test it. It's important to remember that deploying is not the same as publishing. When you publish a subgraph, you're publishing it on-chain.
88
99
## Subgraph Studio Overview
1010

1111
In [Subgraph Studio](https://thegraph.com/studio/), you can do the following:
1212

13+
- View a list of subgraphs you've created
14+
- Manage, view details, and visualize the status of a specific subgraph
1315
- Create and manage your API keys for specific subgraphs
16+
- Restrict your API keys to specific domains and allow only certain Indexers to query with them
1417
- Create your subgraph through the Studio UI
1518
- Deploy your subgraph using the The Graph CLI
16-
- Integrate your subgraph in staging using the query URL
17-
- Publish your subgraph with the Studio UI
1819
- Test your subgraph in the playground environment
19-
- Restrict your API keys to specific domains and allow only certain Indexers to query with them
20-
- View a list of subgraphs you've created
21-
- Manage, view details, and visualize the status of a specific subgraph
20+
- Integrate your subgraph in staging using the development query URL
21+
- Publish your subgraph with the Studio UI
2222
- Manage your billing
2323

2424
## Install The Graph CLI
@@ -39,9 +39,9 @@ yarn global add @graphprotocol/graph-cli
3939
npm install -g @graphprotocol/graph-cli
4040
```
4141

42-
## Create your Subgraph
42+
## Create Your Subgraph
4343

44-
Before deploying your subgraph you need to create a subgraph in [Subgraph Studio](https://thegraph.com/studio/).
44+
Before deploying your subgraph you need to create an account in [Subgraph Studio](https://thegraph.com/studio/).
4545

4646
1. Open [Subgraph Studio](https://thegraph.com/studio/).
4747
2. Connect your wallet to sign in.
@@ -67,7 +67,7 @@ In order to be supported by Indexers on The Graph Network, subgraphs must:
6767
- Non-fatal errors
6868
- Grafting
6969

70-
## Initialize your Subgraph
70+
## Initialize Your Subgraph
7171

7272
Once your subgraph has been created in Subgraph Studio, you can initialize its code through the CLI using this command:
7373

@@ -108,17 +108,17 @@ After running this command, the CLI will ask for a version label.
108108
- It's strongly recommended to use [semver](https://semver.org/) for versioning like `0.0.1`. That said, you are free to choose any string as version such as `v1`, `version1`, or `asdf`.
109109
- The labels you create will be visible in Graph Explorer and can be used by curators to decide if they want to signal on a specific version or not, so choose them wisely.
110110

111-
## Testing your Subgraph
111+
## Testing Your Subgraph
112112

113113
After deploying, you can test your subgraph (either in Subgraph Studio or in your own app, with the deployment query URL), deploy another version, update the metadata, and publish to [Graph Explorer](https://thegraph.com/explorer) when you are ready.
114114

115115
Use Subgraph Studio to check the logs on the dashboard and look for any errors with your subgraph.
116116

117-
## Publish your Subgraph
117+
## Publish Your Subgraph
118118

119119
In order to publish your subgraph successfully, review [publishing a subgraph](/publishing/publishing-a-subgraph/).
120120

121-
## Versioning your Subgraph with the CLI
121+
## Versioning Your Subgraph with the CLI
122122

123123
If you want to update your subgraph, you can do the following:
124124

@@ -132,7 +132,7 @@ You can also update your subgraph's metadata without publishing a new version. Y
132132
133133
## Automatic Archiving of Subgraph Versions
134134

135-
Whenever you deploy a new subgraph version in Subgraph Studio, the previous version will be archived. Archived versions won't be indexed/synced and therefore cannot be queried. You can unarchive an archived version of your subgraph in Studio UI.
135+
Whenever you deploy a new subgraph version in Subgraph Studio, the previous version will be archived. Archived versions won't be indexed/synced and therefore cannot be queried. You can unarchive an archived version of your subgraph in Subgraph Studio.
136136

137137
> Note: Previous versions of non-published subgraphs deployed to Studio will be automatically archived.
138138

0 commit comments

Comments
 (0)