query VestingRecipientBalances(
$vestingToken: String!
$first: Int = 1000
$skip: Int = 0
) {
holderBalances(
first: $first
skip: $skip
where: { vestingToken: $vestingToken, isRecipient: true }
) {
user
allocation
claimed
balance
updatedAt
lastClaimedAt
transferredIn
transferredOut
}
}