mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
21 lines
450 B
JavaScript
21 lines
450 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const listTransactionLinksAdmin = gql`
|
|
query ($currentPage: Int = 1, $pageSize: Int = 5, $userId: Int!) {
|
|
listTransactionLinksAdmin(currentPage: $currentPage, pageSize: $pageSize, userId: $userId) {
|
|
linkCount
|
|
linkList {
|
|
id
|
|
amount
|
|
holdAvailableAmount
|
|
memo
|
|
code
|
|
createdAt
|
|
validUntil
|
|
redeemedAt
|
|
deletedAt
|
|
}
|
|
}
|
|
}
|
|
`
|