Skip to content

Commit

Permalink
add ADDED_FUNDS in contributionsAmount and contributionsAmountTimeSeries
Browse files Browse the repository at this point in the history
  • Loading branch information
znarf committed Oct 30, 2024
1 parent 1f0d18e commit da85f59
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export const budgetSectionContributionsQuery = gql`
currency
stats {
id
totalAmountReceived(dateFrom: $from, dateTo: $to, includeChildren: false, kind: [CONTRIBUTION]) {
totalAmountReceived(dateFrom: $from, dateTo: $to, includeChildren: false, kind: [CONTRIBUTION, ADDED_FUNDS]) {
value
currency
}
contributionsAmount(dateFrom: $from, dateTo: $to, includeChildren: false) {
contributionsAmount(dateFrom: $from, dateTo: $to, includeChildren: false, kind: [CONTRIBUTION, ADDED_FUNDS]) {
label
count
amount {
Expand All @@ -54,7 +54,12 @@ export const budgetSectionContributionsQuery = gql`
currency
}
}
contributionsAmountTimeSeries(dateFrom: $from, dateTo: $to, includeChildren: false) {
contributionsAmountTimeSeries(
dateFrom: $from
dateTo: $to
includeChildren: false
kind: [CONTRIBUTION, ADDED_FUNDS]
) {
timeUnit
nodes {
date
Expand Down

0 comments on commit da85f59

Please sign in to comment.