diff --git a/admin/src/graphql/getListTransactionLinks.js b/admin/src/graphql/getListTransactionLinks.js new file mode 100644 index 000000000..6268615fe --- /dev/null +++ b/admin/src/graphql/getListTransactionLinks.js @@ -0,0 +1,16 @@ +import gql from 'graphql-tag' + +export const listTransactionLinks = gql` +query($currentPage: Int = 1, $pageSize: Int = 25) { + listTransactionLinks(currentPage: $currentPage, pageSize: $pageSize) { + id + amount + holdAvailableAmount + memo + code + createdAt + validUntil + redeemedAt + } +} +`