mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
71 lines
1.2 KiB
GraphQL
71 lines
1.2 KiB
GraphQL
#import './fragments.graphql'
|
|
|
|
query adminListContributions(
|
|
$filter: SearchContributionsFilterArgs
|
|
$paginated: Paginated
|
|
) {
|
|
adminListContributions(paginated: $paginated, filter: $filter) {
|
|
contributionCount
|
|
contributionList {
|
|
id
|
|
user {
|
|
emailContact {
|
|
email
|
|
}
|
|
...UserCommonFields
|
|
humhubUsername
|
|
createdAt
|
|
}
|
|
amount
|
|
memo
|
|
createdAt
|
|
contributionDate
|
|
confirmedAt
|
|
confirmedBy
|
|
updatedAt
|
|
updatedBy
|
|
status
|
|
messagesCount
|
|
deniedAt
|
|
deniedBy
|
|
deletedAt
|
|
deletedBy
|
|
moderatorId
|
|
userId
|
|
resubmissionAt
|
|
}
|
|
}
|
|
}
|
|
|
|
query adminListContributionsShort(
|
|
$filter: SearchContributionsFilterArgs
|
|
$paginated: Paginated
|
|
) {
|
|
adminListContributions(
|
|
paginated: $paginated,
|
|
filter: $filter
|
|
) {
|
|
contributionCount
|
|
contributionList {
|
|
id
|
|
amount
|
|
memo
|
|
createdAt
|
|
contributionDate
|
|
confirmedAt
|
|
status
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
query adminListContributionsCount(
|
|
$filter: SearchContributionsFilterArgs
|
|
) {
|
|
adminListContributions(
|
|
filter: $filter
|
|
) {
|
|
contributionCount
|
|
}
|
|
}
|