queryTraders = `query ($first: Int!, $skip: Int!, $startDate: BigInt!, $endDate: BigInt!) {
accounts(first: $first, skip: $skip, where: { lastSeenTimestamp_gt: $startDate, lastSeenTimestamp_lte: $endDate }) {
lastTradedTimestamp
id
transactions(first:1 orderBy: timestamp, orderDirection: asc){
timestamp
}
}
}
`