> For the complete documentation index, see [llms.txt](https://geodb.gitbook.io/odin-protocol/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://geodb.gitbook.io/odin-protocol/cli-delegation/delegation-queries.md).

# Delegation queries

Useful delegation queries

Here are some example query commands for delegations that you may find useful.  Of course replace any variables with your own values as needed.

To display the total delegations from a wallet to a single delegate\validator;&#x20;

```
docker exec -it node bandd query staking delegation $ADDRESS $VALIDATOR --node $MASTER 
```

To display all delegations from a single wallet address;

```
docker exec -it node bandd query staking delegations $ADDRESS --node $MASTER
```

To display all delegations from all wallets to a single delegate\validator;

```
docker exec -it node bandd query staking delegations-to $VALIDATOR --node $MASTER
```
