Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MBL-1916: Display payment plan in Manage Pledge Flow if available #2195

Merged
merged 10 commits into from
Jan 14, 2025
11 changes: 11 additions & 0 deletions app/src/main/graphql/fragments.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ fragment backing on Backing {
paymentSource {
... payment
}
paymentIncrements {
...paymentIncrement
}
shippingAmount {
... amount
}
Expand Down Expand Up @@ -479,4 +482,12 @@ fragment post on Postable {
fragment updateFreeformPost on FreeformPost {
commentsCount(withReplies:true)
body
}
fragment paymentIncrement on PaymentIncrement {
id
amount {
...amount
}
state
scheduledCollection
}
Loading