Skip to content

Commit

Permalink
Merge pull request #1344 from sora-xor/fix/subsquid-order-books-query
Browse files Browse the repository at this point in the history
Fix SubsquidOrderBooksQuery
  • Loading branch information
Sociopacific authored Mar 7, 2024
2 parents 87c6ed3 + 853c393 commit 9aff6b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/indexer/queries/orderBook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const SubqueryOrderBooksQuery = gql<ConnectionQueryResponse<OrderBookEntity>>`

const SubsquidOrderBooksQuery = gql<ConnectionQueryResponse<OrderBookEntity>>`
query SubsquidOrderBooksQuery($after: String = null, $where: OrderBookWhereInput) {
data: orderBooksConnection(after: $after, where: $where) {
data: orderBooksConnection(orderBy: id_ASC, after: $after, where: $where) {
pageInfo {
hasNextPage
endCursor
Expand Down

0 comments on commit 9aff6b2

Please sign in to comment.