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 }
canonical { name { interpreted beautified } }
}
}
}
}
}
Variables
{
"address": "0x801d2e48d378f161dba7ad7ad002ad557714c191"
}
Output
{
"data": {
"account": {
"domains": {
"edges": [
{
"node": {
"label": {
"interpreted": "katrenpadu"
},
"canonical": {
"name": {
"interpreted": "katrenpadu.eth",
"beautified": "katrenpadu.eth"
}
}
}
},
{
"node": {
"label": {
"interpreted": "roppp"
},
"canonical": {
"name": {
"interpreted": "roppp.eth",
"beautified": "roppp.eth"
}
}
}
},
{
"node": {
"label": {
"interpreted": "wrapnation"
},
"canonical": {
"name": {
"interpreted": "wrapnation.eth",
"beautified": "wrapnation.eth"
}
}
}
},
{
"node": {
"label": {
"interpreted": "papa"
},
"canonical": null
}
},
{
"node": {
"label": {
"interpreted": "parker"
},
"canonical": null
}
},
{
"node": {
"label": {
"interpreted": "lowlife"
},
"canonical": null
}
},
{
"node": {
"label": {
"interpreted": "warrpp"
},
"canonical": null
}
},
{
"node": {
"label": {
"interpreted": "2year"
},
"canonical": null
}
},
{
"node": {
"label": {
"interpreted": "chakri"
},
"canonical": null
}
},
{
"node": {
"label": {
"interpreted": "pichin"
},
"canonical": null
}
},
{
"node": {
"label": {
"interpreted": "0xchakri"
},
"canonical": null
}
}
]
}
}
}
}

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

Back to Examples