First wallets to transfer to mint address (SOL)

I’m trying to figure out a query with the v1 API around the first wallets that purchased a token from the mint address. So I tried:

query MyQuery {
solana(network: solana) {
transfers(
options: {limit: 50, asc: “block.height”}
receiverMintAddress: {in: “GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump”}
transferType: {in: transfer}
) {
receiver {
address
}
block(height: {}) {
height
timestamp {
iso8601
}
}
}
}
}

Very novice over here with this API any assistance about what I’m doing wrong would be super helpful.

v1 query

{
  solana(network: solana) {
    transfers(
      currency: {is: "GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump"}
      options: {limit: 1}
    ) {
      minimum(of: time)
      transaction {
        signature
      }
    }
  }
}

Hey, if it’s any recent token, check EAP endpoint instead of v1