diff --git a/frontend/src/graphql/queries.js b/frontend/src/graphql/queries.js index 5887d585a..6f67deee8 100644 --- a/frontend/src/graphql/queries.js +++ b/frontend/src/graphql/queries.js @@ -143,3 +143,17 @@ export const queryTransactionLink = gql` } } ` + +export const listTransactionLinks = gql` + query($currentPage: Int = 1, $pageSize: Int = 5, $order: Order = DESC) { + listTransactionLinks(currentPage: $currentPage, pageSize: $pageSize, order: $order) { + amount + holdAvailableAmount + memo + code + createdAt + validUntil + redeemedAt + } + } +`