mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-19 03:11:20 +00:00
add graphql query listTransactionLinks
This commit is contained in:
parent
5d8fed9c31
commit
5ab0295051
16
admin/src/graphql/getListTransactionLinks.js
Normal file
16
admin/src/graphql/getListTransactionLinks.js
Normal file
@ -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
|
||||
}
|
||||
}
|
||||
`
|
||||
Loading…
x
Reference in New Issue
Block a user