-
Notifications
You must be signed in to change notification settings - Fork 991
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MBL-1464: Create graphQL PPO card list query (#2066)
* first pass, adding new ppo graph query * lotsa cleanup * cleanup * Linter * more cleanup * linter * remove mock code * Remove ppo card mock * fix vm and test * Linter * remove address envelope * linter --------- Co-authored-by: Leigh Douglas <[email protected]>
- Loading branch information
1 parent
85a4c33
commit b94677f
Showing
15 changed files
with
2,752 additions
and
1,730 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
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 | ||
} | ||
totalCount | ||
edges { | ||
cursor | ||
node { | ||
backing { | ||
... ppoCard | ||
} | ||
} | ||
} | ||
nodes { | ||
backing { | ||
... ppoCard | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.