CARV x BNB Chain Easter Campaign | The Second Easter Egg
Curated by
CARV
Call-to-Action
https://bit.ly/3Z7UHA7ID Type
EVM ADDRESS
Cred Type
GRAPHQL
Last Update Time
06/17/2023, 02:12:50
Endpoint
https://api.thegraph.com/***Query
query info($address: String!) {
# write you query here
erc1155Balances(
first: 1
where: {token_: {identifier: "172"}, account_: {id: $address}}
) {
account {
id
}
token {
id
identifier
}
}
}Expression
function(data){
if (data.erc1155Balances.length > 0){
return 1
} else {
return 0}
}