mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
26 lines
541 B
JavaScript
26 lines
541 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
|
|
filters: { withRedeemed: true, withExpired: true, withDeleted: true }
|
|
) {
|
|
count
|
|
links {
|
|
id
|
|
amount
|
|
holdAvailableAmount
|
|
memo
|
|
code
|
|
createdAt
|
|
validUntil
|
|
redeemedAt
|
|
deletedAt
|
|
}
|
|
}
|
|
}
|
|
`
|