-
Notifications
You must be signed in to change notification settings - Fork 990
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MBL-1556: Add network calls to confirm address and requery the PPO ca…
…rd list (#2088) * Add infinite scroll to PPO screen * Attempting to fix tests * Test paging source * linter * Merge conflicts * Linter * Fixes * Linter * Testing * Fix * update graphql schema * fix * Hooked up requery and tests * lint * Cleanup * trying to fix tests * Fixed flaky tests * Cleanup * lint * cleanup * linter --------- Co-authored-by: Yun <[email protected]> Co-authored-by: Leigh Douglas <[email protected]>
- Loading branch information
1 parent
2d6291c
commit 07cc7e4
Showing
25 changed files
with
13,377 additions
and
54,382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -369,6 +369,9 @@ fragment ppoCard on Backing { | |
amount { | ||
...amount | ||
} | ||
deliveryAddress { | ||
id | ||
} | ||
project { | ||
name | ||
id | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,23 @@ | ||
query PledgedProjectsOverview($first: Int, $after: String, $last: Int, $before: String) { | ||
pledgeProjectsOverview { | ||
categories { | ||
count | ||
slug | ||
title | ||
} | ||
pledges(first : $first, after: $after, last : $last, before: $before) { | ||
pageInfo { | ||
endCursor | ||
hasNextPage | ||
hasPreviousPage | ||
startCursor | ||
} | ||
pledgeProjectsOverview { | ||
pledges(first : $first, after: $after, last : $last, before: $before) { | ||
totalCount | ||
edges { | ||
cursor | ||
cursor | ||
node { | ||
backing { | ||
... ppoCard | ||
} | ||
backing { | ||
...ppoCard | ||
} | ||
tierType | ||
tags | ||
} | ||
} | ||
nodes { | ||
backing { | ||
... ppoCard | ||
} | ||
pageInfo { | ||
hasPreviousPage | ||
hasNextPage | ||
endCursor | ||
startCursor | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.