Skip to content

Commit ba41a88

Browse files
committed
fixing command
1 parent 627e08a commit ba41a88

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ In order to be supported by Indexers on The Graph Network, subgraphs must:
7070
Once your subgraph has been created in Subgraph Studio, you can initialize its code through the CLI using this command:
7171

7272
```bash
73-
graph init --studio <SUBGRAPH_SLUG>
73+
graph init <SUBGRAPH_SLUG>
7474
```
7575

7676
You can find the `<SUBGRAPH_SLUG>` value on your subgraph details page in Subgraph Studio, see image below:

website/pages/en/developing/creating-a-subgraph.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ graph init \
6666
The following command initializes a new project from an example subgraph:
6767

6868
```sh
69-
graph init --studio <SUBGRAPH_SLUG> --from-example=example-subgraph
69+
graph init <SUBGRAPH_SLUG> --from-example=example-subgraph
7070
```
7171

7272
- The [example subgraph](https://github.com/graphprotocol/example-subgraph) is based on the Gravity contract by Dani Grant, which manages user avatars and emits `NewGravatar` or `UpdateGravatar` events whenever avatars are created or updated.

website/pages/en/querying/querying-from-an-application.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ With your GraphQL endpoint, you can use various GraphQL Client libraries to quer
2626

2727
### Graph Client
2828

29-
3029
The Graph is providing its own GraphQL client, `graph-client` that supports unique features such as:
3130

3231
- Cross-chain Subgraph Handling: Querying from multiple subgraphs in a single query

website/pages/en/quick-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ For additional information on subgraph creation and the Graph CLI, see [Creating
5757
The following command initializes your subgraph from an existing contract:
5858

5959
```sh
60-
graph init --studio <SUBGRAPH_SLUG>
60+
graph init <SUBGRAPH_SLUG>
6161
```
6262

6363
> Note: If your contract was verified on Etherscan, then the ABI will automatically be created in the CLI.

0 commit comments

Comments
 (0)