The maximum number of values returned in a single call is 1000.
Any parameter filter must be lowercased, including addresses (0xDeAd
-> 0xdead
)
List Fees by Recipient
{
fees(first: 1000, where: {recipient: "0xinput_address" }) {
# the timestamp of when the fee was received
timestamp
# the address of the user who paid the fee
user { id }
# the address of the recipient of the fee
recipient { id }
# the asset that the fee was paid in
fee_gem
# the amount of the fee that was paid
fee_amt
# the offer that's fill originated the fee
offer { id }
}
}