Skip to content

Commit 9d984e1

Browse files
committed
removing from all commands
1 parent ba41a88 commit 9d984e1

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

website/pages/en/cookbook/arweave.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Writing the mappings of an Arweave Subgraph is very similar to writing the mappi
155155
Once your subgraph has been created on your Subgraph Studio dashboard, you can deploy by using the `graph deploy` CLI command.
156156

157157
```bash
158-
graph deploy --studio --access-token <your-access-token>
158+
graph deploy --access-token <your-access-token>
159159
```
160160

161161
## Querying an Arweave Subgraph

website/pages/en/cookbook/cosmos.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Once your subgraph has been created, you can deploy your subgraph by using the `
203203
Visit the Subgraph Studio to create a new subgraph.
204204

205205
```bash
206-
graph deploy --studio subgraph-name
206+
graph deploy subgraph-name
207207
```
208208

209209
**Local Graph Node (based on default configuration):**

website/pages/en/cookbook/near.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ The node configuration will depend on where the subgraph is being deployed.
194194
### Subgraph Studio
195195

196196
```sh
197-
graph auth --studio
198-
graph deploy --studio <subgraph-name>
197+
graph auth
198+
graph deploy <subgraph-name>
199199
```
200200

201201
### Local Graph Node (based on default configuration)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Before you can deploy your subgraph to Subgraph Studio, you need to log into you
8686
Then, use the following command to authenticate from the CLI:
8787

8888
```bash
89-
graph auth --studio <DEPLOY KEY>
89+
graph auth <DEPLOY KEY>
9090
```
9191

9292
## Deploying a Subgraph
@@ -98,7 +98,7 @@ Once you are ready, you can deploy your subgraph to Subgraph Studio.
9898
Use the following CLI command to deploy your subgraph:
9999

100100
```bash
101-
graph deploy --studio <SUBGRAPH_SLUG>
101+
graph deploy <SUBGRAPH_SLUG>
102102
```
103103

104104
After running this command, the CLI will ask for a version label.

website/pages/en/quick-start.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ Remember, deploying is not the same as publishing.
113113

114114
```sh
115115

116-
graph auth --studio <DEPLOY_KEY>
116+
graph auth <DEPLOY_KEY>
117117

118-
graph deploy --studio <SUBGRAPH_SLUG>
118+
graph deploy <SUBGRAPH_SLUG>
119119
```
120120

121121
- The CLI will ask for a version label.

0 commit comments

Comments
 (0)