Galxe Passport Holder
Curated by
Galxe
ID Type
EVM ADDRESS
Cred Type
SUBGRAPH
Last Update Time
01/25/2024, 04:52:34
Query
query info($address: String!) {
  passports(where: {
    owner: $address
    issueStatus: Valid
  }) {
    id
  }
}
Expression
function(data) {
  if (data.passports != null && data.passports.length > 0) {
    return 1
  }
  return 0
}