mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-19 11:21:22 +00:00
17 lines
309 B
JavaScript
17 lines
309 B
JavaScript
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
|
|
}
|
|
}
|
|
`
|