Skip to content

Commit

Permalink
docs: Fix handleMessage example
Browse files Browse the repository at this point in the history
  • Loading branch information
simonas-notcat committed May 6, 2020
1 parent d5e3c01 commit 6f5385a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/Docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ console.log(message.credentials) // public profile
## GraphQL

```graphql
mutation handleMessage($raw: String!, $meta: [MetaDataInput]) {
handleMessage(raw: $raw, meta: $meta, save: true) {
mutation handleMessage($raw: String!, $metaData: [MetaDataInput]) {
handleMessage(raw: $raw, metaData: $meta, save: true) {
id
type
}
Expand All @@ -281,10 +281,10 @@ const data = {
id: 'did:example:1234',
name: 'Alice',
},
credentialStatus:{
type: "EthrStatusRegistry2019",
id:"rinkeby:0x97fd27892cdcD035dAe1fe71235c636044B59348"
}
credentialStatus: {
type: 'EthrStatusRegistry2019',
id: 'rinkeby:0x97fd27892cdcD035dAe1fe71235c636044B59348',
},
}
```

Expand Down

0 comments on commit 6f5385a

Please sign in to comment.