Skip to content

Account Domains

Load domains owned by an address via the Omnigraph `account` root field.
Run in ENSAdmin
GraphQL
query AccountDomains(
$address: Address!
) {
account(by: { address: $address }) {
domains {
edges {
node {
label { interpreted }
name
}
}
}
}
}
Variables
{
"address": "0x205d2686da3bf33f64c17f21462c51b5ead462cf"
}
Output
{
"data": {
"account": {
"domains": {
"edges": [
{
"node": {
"label": {
"interpreted": "5test"
},
"name": "5test.eth"
}
},
{
"node": {
"label": {
"interpreted": "666test"
},
"name": "666test.eth"
}
},
{
"node": {
"label": {
"interpreted": "999test"
},
"name": "999test.eth"
}
},
{
"node": {
"label": {
"interpreted": "indexerisfknworking"
},
"name": "indexerisfknworking.eth"
}
},
{
"node": {
"label": {
"interpreted": "oldnew"
},
"name": "oldnew.eth"
}
},
{
"node": {
"label": {
"interpreted": "test3wallet"
},
"name": "test3wallet.eth"
}
}
]
}
}
}
}

Output matches a GraphQL Response snapshot; live output depends on your ENSNode instance.

Back to Examples