follow guidelines in https://github.com/subquery/subql-starter/tree/v0.2.0 to install
Open your browser and head to http://localhost:3000
.
query{
accounts(first: 3){
nodes{
id
}
}
}
query{
transfers(first: 3){
nodes{
id
amount
blockNumber
}
}
}
query{
transfers(first: 3){
nodes{
id
amount
blockNumber
to{
id
}
}
}
}