Hi,
I recently found GraphQL and, I’m not sure how to use it. I’m currently working on the Cardano network. I want to get all transactions in a period with their input and output addresses and the amount that has been transferred. I wrote this but, It’s not complete yet. Can anybody tell me how to add the addresses?
{
cardano {
transactions(time: {since: "2021-12-01T09:42:59", till: "2021-12-02T09:42:59"}) {
any(of: date)
feeValue
depositValue
}
}
}