Please refer to the documentation website for a thorough guide on all Envio indexer features
pnpm dev
Visit http://localhost:8080 to see the GraphQL Playground, local password is testing
.
pnpm codegen
query DomainByNameQuery {
Web3Domain(where: {name: {_eq: "hello.xdc"}}) {
id
name
owner
}
}
query DomainByOwnerQuery {
Web3Domain(where: {owner: {_eq: "0x0D29025FA6a82772B5a2ceeD27fb8F447e846901"}}) {
id
name
owner
}
}