Skip to content

Commit

Permalink
order transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
benjlevesque committed Dec 13, 2023
1 parent 3dc1485 commit 90ef499
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/thegraph-data-access/src/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ query GetTransactionsByTopics($topics: [String!]!){
channels(
where: { topics_contains: $topics }
){
transactions {
transactions(
orderBy: blockTimestamp,
orderDirection: asc
) {
...TransactionsBody
}
}
Expand Down

0 comments on commit 90ef499

Please sign in to comment.