This query loads information about a specific wallet.
General Pattern
query{
wallet(Id: "UUID1"){
field_1
field_2 {
nested_field_1
...
}
}
}
Sample Query
query{
wallet(id: "c9b0e4dd-9403-458c-985d-ce8dd3c57b22"){
id
name
address
parentType
}
}
Sample Response
{
"data": {
"wallet": {
"id": "c9b0e4dd-9403-458c-985d-ce8dd3c57b22",
"name": "",
"address": "0x8b644Bedfc172FeC9371FD4302B40792e941CAC6",
"parentType": "organization"
}
}
}
Arguments
Name | Type | Description | Required |
---|---|---|---|
| UUID1 | The wallet ID. | Yes |
Fields
Example
Load the wallet data with basic information: