Skip to content

Commit

Permalink
fix(NerdStorageVault): Correct write query example
Browse files Browse the repository at this point in the history
  • Loading branch information
timglaser authored Oct 21, 2020
1 parent 8af704a commit 3815374
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/markdown-pages/explore-docs/nerdstoragevault.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,11 @@ Below are examples of the queries used by the components to interact with NerdSt

```json copy=false lineNumbers=false
mutation {
nerdStorageVaultWriteSecret(scope: { actor: CURRENT_USER } , key: "test", value: "secret_test") {
nerdStorageVaultWriteSecret(scope: { actor: CURRENT_USER } , secret: { key: "test", value: "secret_test" } ) {
status
errors {
message
type
}
}
}
Expand All @@ -88,6 +89,7 @@ mutation {
status
errors {
message
type
}
}
}
Expand Down

0 comments on commit 3815374

Please sign in to comment.