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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

NTV-181: Migrate Project Page to GraphQL #1401

Merged
merged 2 commits into from Sep 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions app/src/main/graphql/fragments.graphql
Expand Up @@ -2,6 +2,8 @@ fragment fullProject on Project {
availableCardTypes
backersCount
description
minPledge
isLaunched
backing {
... backing
}
Expand Down Expand Up @@ -143,10 +145,12 @@ fragment updates on PostConnection {


fragment category on Category {
analyticsName
id
name
slug
parentCategory {
analyticsName
id
name
slug
Expand Down Expand Up @@ -176,6 +180,13 @@ fragment reward on Reward {
description
estimatedDeliveryOn
available
allowedAddons {
edges {
node {
id
}
}
}
items {
edges {
quantity
Expand Down Expand Up @@ -235,6 +246,7 @@ fragment user on User {
id
imageUrl(blur: false, width: 54),
isCreator
chosenCurrency
}

fragment amount on Money {
Expand Down