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.