Galxe Passport Holder

Curated by

Galxe

ID Type

EVM ADDRESS

Cred Type

SUBGRAPH

Last Update Time

10/05/2024, 23:49:07

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
}