Query Examples
sidebar_position: 3 title: Sample Queries
query getDomainForAccount {
account(id: "0xa508c16666c5b8981fa46eb32784fccc01942a71") {
registrations(first: 1, orderBy: expiryDate, orderDirection: desc) {
domain {
name
}
}
id
}
}{
"data": {
"account": {
"registrations": [
{
"domain": {
"name": "datanexus.tomi"
}
}
],
"id": "0xa508c16666c5b8981fa46eb32784fccc01942a71"
}
}
}Last updated