diff --git a/GraphAPI/GraphAPITestMocks/ProjectInvestigation+Mock.graphql.swift b/GraphAPI/GraphAPITestMocks/ProjectInvestigation+Mock.graphql.swift new file mode 100644 index 0000000000..2b397da599 --- /dev/null +++ b/GraphAPI/GraphAPITestMocks/ProjectInvestigation+Mock.graphql.swift @@ -0,0 +1,14 @@ +// @generated +// This file was automatically generated and should not be edited. + +import ApolloTestSupport +import GraphAPI + +public class ProjectInvestigation: MockObject { + public static let objectType: ApolloAPI.Object = GraphAPI.Objects.ProjectInvestigation + public static let _mockFields = MockFields() + public typealias MockValueCollectionType = Array> + + public struct MockFields { + } +} diff --git a/GraphAPI/GraphAPITestMocks/Query+Mock.graphql.swift b/GraphAPI/GraphAPITestMocks/Query+Mock.graphql.swift index 06d0c9214e..99b6f4a090 100644 --- a/GraphAPI/GraphAPITestMocks/Query+Mock.graphql.swift +++ b/GraphAPI/GraphAPITestMocks/Query+Mock.graphql.swift @@ -21,6 +21,7 @@ public class Query: MockObject { @Field("project") public var project @Field("projects") public var projects @Field<[Category]>("rootCategories") public var rootCategories + @Field<[Location]>("shippingCountryLocations") public var shippingCountryLocations } } @@ -36,7 +37,8 @@ public extension Mock where O == Query { post: AnyMock? = nil, project: Mock? = nil, projects: Mock? = nil, - rootCategories: [Mock]? = nil + rootCategories: [Mock]? = nil, + shippingCountryLocations: [Mock]? = nil ) { self.init() _setEntity(backing, for: \.backing) @@ -50,5 +52,6 @@ public extension Mock where O == Query { _setEntity(project, for: \.project) _setEntity(projects, for: \.projects) _setList(rootCategories, for: \.rootCategories) + _setList(shippingCountryLocations, for: \.shippingCountryLocations) } } diff --git a/GraphAPI/Sources/Fragments/BackerDashboardProjectCellFragment.graphql.swift b/GraphAPI/Sources/Fragments/BackerDashboardProjectCellFragment.graphql.swift index b7b8070be4..59b76e7f6f 100644 --- a/GraphAPI/Sources/Fragments/BackerDashboardProjectCellFragment.graphql.swift +++ b/GraphAPI/Sources/Fragments/BackerDashboardProjectCellFragment.graphql.swift @@ -30,7 +30,7 @@ public struct BackerDashboardProjectCellFragment: GraphAPI.SelectionSet, Fragmen public var projectId: GraphAPI.ID { __data["projectId"] } /// The project's name. public var name: String { __data["name"] } - /// The project's current state. + /// The project's current state in the state machine. public var projectState: GraphQLEnum { __data["projectState"] } /// The project's primary image. public var image: Image? { __data["image"] } diff --git a/GraphAPI/Sources/Fragments/BackingFragment.graphql.swift b/GraphAPI/Sources/Fragments/BackingFragment.graphql.swift index a4314a4efe..e92e88b330 100644 --- a/GraphAPI/Sources/Fragments/BackingFragment.graphql.swift +++ b/GraphAPI/Sources/Fragments/BackingFragment.graphql.swift @@ -825,7 +825,7 @@ public struct BackingFragment: GraphAPI.SelectionSet, Fragment { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Fragments/PPOBackingFragment.graphql.swift b/GraphAPI/Sources/Fragments/PPOBackingFragment.graphql.swift index d9176e35df..b27cba4e64 100644 --- a/GraphAPI/Sources/Fragments/PPOBackingFragment.graphql.swift +++ b/GraphAPI/Sources/Fragments/PPOBackingFragment.graphql.swift @@ -164,7 +164,7 @@ public struct PPOBackingFragment: GraphAPI.SelectionSet, Fragment { public var postCampaignPledgingEnabled: Bool { __data["postCampaignPledgingEnabled"] } /// Project rewards. public var rewards: Rewards? { __data["rewards"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// A project video. public var video: Video? { __data["video"] } diff --git a/GraphAPI/Sources/Fragments/PPOCardFragment.graphql.swift b/GraphAPI/Sources/Fragments/PPOCardFragment.graphql.swift index ae810cd8db..3362c16a99 100644 --- a/GraphAPI/Sources/Fragments/PPOCardFragment.graphql.swift +++ b/GraphAPI/Sources/Fragments/PPOCardFragment.graphql.swift @@ -201,7 +201,7 @@ public struct PPOCardFragment: GraphAPI.SelectionSet, Fragment { public var postCampaignPledgingEnabled: Bool { __data["postCampaignPledgingEnabled"] } /// Project rewards. public var rewards: Rewards? { __data["rewards"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// A project video. public var video: Video? { __data["video"] } diff --git a/GraphAPI/Sources/Fragments/ProjectAnalyticsFragment.graphql.swift b/GraphAPI/Sources/Fragments/ProjectAnalyticsFragment.graphql.swift index dc341c2ac3..8862c3d3d3 100644 --- a/GraphAPI/Sources/Fragments/ProjectAnalyticsFragment.graphql.swift +++ b/GraphAPI/Sources/Fragments/ProjectAnalyticsFragment.graphql.swift @@ -80,7 +80,7 @@ public struct ProjectAnalyticsFragment: GraphAPI.SelectionSet, Fragment { public var postCampaignPledgingEnabled: Bool { __data["postCampaignPledgingEnabled"] } /// Project rewards. public var rewards: Rewards? { __data["rewards"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// A project video. public var video: Video? { __data["video"] } diff --git a/GraphAPI/Sources/Fragments/ProjectCardFragment.graphql.swift b/GraphAPI/Sources/Fragments/ProjectCardFragment.graphql.swift index 91102946e0..9e0554aa0b 100644 --- a/GraphAPI/Sources/Fragments/ProjectCardFragment.graphql.swift +++ b/GraphAPI/Sources/Fragments/ProjectCardFragment.graphql.swift @@ -39,7 +39,7 @@ public struct ProjectCardFragment: GraphAPI.SelectionSet, Fragment { public var pid: Int { __data["pid"] } /// The project's name. public var name: String { __data["name"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The project has launched public var isLaunched: Bool { __data["isLaunched"] } diff --git a/GraphAPI/Sources/Fragments/ProjectFragment.graphql.swift b/GraphAPI/Sources/Fragments/ProjectFragment.graphql.swift index 8a67dd726b..efca93480e 100644 --- a/GraphAPI/Sources/Fragments/ProjectFragment.graphql.swift +++ b/GraphAPI/Sources/Fragments/ProjectFragment.graphql.swift @@ -155,7 +155,7 @@ public struct ProjectFragment: GraphAPI.SelectionSet, Fragment { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Fragments/ProjectPamphletMainCellPropertiesFragment.graphql.swift b/GraphAPI/Sources/Fragments/ProjectPamphletMainCellPropertiesFragment.graphql.swift index 81236c9960..3312c5874e 100644 --- a/GraphAPI/Sources/Fragments/ProjectPamphletMainCellPropertiesFragment.graphql.swift +++ b/GraphAPI/Sources/Fragments/ProjectPamphletMainCellPropertiesFragment.graphql.swift @@ -49,7 +49,7 @@ public struct ProjectPamphletMainCellPropertiesFragment: GraphAPI.SelectionSet, public var projectDescription: String { __data["projectDescription"] } /// The project's creator. public var creator: Creator? { __data["creator"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchAddOnsQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchAddOnsQuery.graphql.swift index 2509b64b76..9016f4690e 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchAddOnsQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchAddOnsQuery.graphql.swift @@ -172,7 +172,7 @@ public class FetchAddOnsQuery: GraphQLQuery { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchBackingQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchBackingQuery.graphql.swift index 5c257cd3b7..b7b84653b7 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchBackingQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchBackingQuery.graphql.swift @@ -1329,7 +1329,7 @@ public class FetchBackingQuery: GraphQLQuery { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchBackingWithIncrementsRefundedQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchBackingWithIncrementsRefundedQuery.graphql.swift index 84328ba3b3..8c60dc9267 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchBackingWithIncrementsRefundedQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchBackingWithIncrementsRefundedQuery.graphql.swift @@ -1339,7 +1339,7 @@ public class FetchBackingWithIncrementsRefundedQuery: GraphQLQuery { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchMyBackedProjectsQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchMyBackedProjectsQuery.graphql.swift index e4efd92a91..81c7d69fcf 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchMyBackedProjectsQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchMyBackedProjectsQuery.graphql.swift @@ -201,7 +201,7 @@ public class FetchMyBackedProjectsQuery: GraphQLQuery { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchMySavedProjectsQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchMySavedProjectsQuery.graphql.swift index 1b90493de7..0b0e7193bb 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchMySavedProjectsQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchMySavedProjectsQuery.graphql.swift @@ -201,7 +201,7 @@ public class FetchMySavedProjectsQuery: GraphQLQuery { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchPledgedProjectsQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchPledgedProjectsQuery.graphql.swift index 30de0cf033..00a8b18597 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchPledgedProjectsQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchPledgedProjectsQuery.graphql.swift @@ -363,7 +363,7 @@ public class FetchPledgedProjectsQuery: GraphQLQuery { public var postCampaignPledgingEnabled: Bool { __data["postCampaignPledgingEnabled"] } /// Project rewards. public var rewards: Rewards? { __data["rewards"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// A project video. public var video: Video? { __data["video"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchProjectByIdQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchProjectByIdQuery.graphql.swift index 52c10068c0..7a7d8b32a7 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchProjectByIdQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchProjectByIdQuery.graphql.swift @@ -195,7 +195,7 @@ public class FetchProjectByIdQuery: GraphQLQuery { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchProjectBySlugQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchProjectBySlugQuery.graphql.swift index f3f6f93903..b84877481b 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchProjectBySlugQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchProjectBySlugQuery.graphql.swift @@ -195,7 +195,7 @@ public class FetchProjectBySlugQuery: GraphQLQuery { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchSimilarProjectsQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchSimilarProjectsQuery.graphql.swift index 9c7cf11bb9..da579fbc9f 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchSimilarProjectsQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchSimilarProjectsQuery.graphql.swift @@ -99,7 +99,7 @@ public class FetchSimilarProjectsQuery: GraphQLQuery { public var pid: Int { __data["pid"] } /// The project's name. public var name: String { __data["name"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The project has launched public var isLaunched: Bool { __data["isLaunched"] } diff --git a/GraphAPI/Sources/Operations/Queries/FetchUserBackingsQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/FetchUserBackingsQuery.graphql.swift index 219edcdd61..7ecbcfa764 100644 --- a/GraphAPI/Sources/Operations/Queries/FetchUserBackingsQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/FetchUserBackingsQuery.graphql.swift @@ -1421,7 +1421,7 @@ public class FetchUserBackingsQuery: GraphQLQuery { public var sendMetaCapiEvents: Bool { __data["sendMetaCapiEvents"] } /// The project's unique URL identifier. public var slug: String { __data["slug"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// The last time a project's state changed, time since epoch public var stateChangedAt: GraphAPI.DateTime { __data["stateChangedAt"] } diff --git a/GraphAPI/Sources/Operations/Queries/SearchQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/SearchQuery.graphql.swift index 5aba5a0ef1..d65ad4e64e 100644 --- a/GraphAPI/Sources/Operations/Queries/SearchQuery.graphql.swift +++ b/GraphAPI/Sources/Operations/Queries/SearchQuery.graphql.swift @@ -173,7 +173,7 @@ public class SearchQuery: GraphQLQuery { public var projectId: GraphAPI.ID { __data["projectId"] } /// The project's name. public var name: String { __data["name"] } - /// The project's current state. + /// The project's current state in the state machine. public var projectState: GraphQLEnum { __data["projectState"] } /// The project's primary image. public var image: Image? { __data["image"] } @@ -223,7 +223,7 @@ public class SearchQuery: GraphQLQuery { public var postCampaignPledgingEnabled: Bool { __data["postCampaignPledgingEnabled"] } /// Project rewards. public var rewards: Rewards? { __data["rewards"] } - /// The project's current state. + /// The project's current state in the state machine. public var state: GraphQLEnum { __data["state"] } /// A project video. public var video: Video? { __data["video"] } diff --git a/GraphAPI/Sources/Operations/Queries/ShippableLocationsQuery.graphql.swift b/GraphAPI/Sources/Operations/Queries/ShippableLocationsQuery.graphql.swift new file mode 100644 index 0000000000..9a482ccaf2 --- /dev/null +++ b/GraphAPI/Sources/Operations/Queries/ShippableLocationsQuery.graphql.swift @@ -0,0 +1,96 @@ +// @generated +// This file was automatically generated and should not be edited. + +@_exported import ApolloAPI + +public class ShippableLocationsQuery: GraphQLQuery { + public static let operationName: String = "ShippableLocations" + public static let operationDocument: ApolloAPI.OperationDocument = .init( + definition: .init( + #"query ShippableLocations { shippingCountryLocations { __typename ...LocationFragment } }"#, + fragments: [LocationFragment.self] + )) + + public init() {} + + public struct Data: GraphAPI.SelectionSet { + public let __data: DataDict + public init(_dataDict: DataDict) { __data = _dataDict } + + public static var __parentType: ApolloAPI.ParentType { GraphAPI.Objects.Query } + public static var __selections: [ApolloAPI.Selection] { [ + .field("shippingCountryLocations", [ShippingCountryLocation].self), + ] } + + /// Country locations for shipping rewards + public var shippingCountryLocations: [ShippingCountryLocation] { __data["shippingCountryLocations"] } + + public init( + shippingCountryLocations: [ShippingCountryLocation] + ) { + self.init(_dataDict: DataDict( + data: [ + "__typename": GraphAPI.Objects.Query.typename, + "shippingCountryLocations": shippingCountryLocations._fieldData, + ], + fulfilledFragments: [ + ObjectIdentifier(ShippableLocationsQuery.Data.self) + ] + )) + } + + /// ShippingCountryLocation + /// + /// Parent Type: `Location` + public struct ShippingCountryLocation: GraphAPI.SelectionSet { + public let __data: DataDict + public init(_dataDict: DataDict) { __data = _dataDict } + + public static var __parentType: ApolloAPI.ParentType { GraphAPI.Objects.Location } + public static var __selections: [ApolloAPI.Selection] { [ + .field("__typename", String.self), + .fragment(LocationFragment.self), + ] } + + /// The country code. + public var country: String { __data["country"] } + /// The localized country name. + public var countryName: String? { __data["countryName"] } + /// The displayable name. It includes the state code for US cities. ex: 'Seattle, WA' + public var displayableName: String { __data["displayableName"] } + public var id: GraphAPI.ID { __data["id"] } + /// The localized name + public var name: String { __data["name"] } + + public struct Fragments: FragmentContainer { + public let __data: DataDict + public init(_dataDict: DataDict) { __data = _dataDict } + + public var locationFragment: LocationFragment { _toFragment() } + } + + public init( + country: String, + countryName: String? = nil, + displayableName: String, + id: GraphAPI.ID, + name: String + ) { + self.init(_dataDict: DataDict( + data: [ + "__typename": GraphAPI.Objects.Location.typename, + "country": country, + "countryName": countryName, + "displayableName": displayableName, + "id": id, + "name": name, + ], + fulfilledFragments: [ + ObjectIdentifier(ShippableLocationsQuery.Data.ShippingCountryLocation.self), + ObjectIdentifier(LocationFragment.self) + ] + )) + } + } + } +} diff --git a/GraphAPI/Sources/Schema/Enums/Feature.graphql.swift b/GraphAPI/Sources/Schema/Enums/Feature.graphql.swift index 6b9d0f4841..d0b1b59ce3 100644 --- a/GraphAPI/Sources/Schema/Enums/Feature.graphql.swift +++ b/GraphAPI/Sources/Schema/Enums/Feature.graphql.swift @@ -44,6 +44,7 @@ public enum Feature: String, EnumType { case ksr10BuildOverview = "ksr10_build_overview" case meGenerativeArt = "me_generative_art" case projectBuildRewardsExplorer = "project_build_rewards_explorer" + case projectBuildIntercom = "project_build_intercom" case projectBuildZendesk = "project_build_zendesk" case projectBuildMilestones = "project_build_milestones" case userMenuDraftProject = "user_menu_draft_project" diff --git a/GraphAPI/Sources/Schema/Objects/ProjectInvestigation.graphql.swift b/GraphAPI/Sources/Schema/Objects/ProjectInvestigation.graphql.swift new file mode 100644 index 0000000000..0c2b34c681 --- /dev/null +++ b/GraphAPI/Sources/Schema/Objects/ProjectInvestigation.graphql.swift @@ -0,0 +1,11 @@ +// @generated +// This file was automatically generated and should not be edited. + +import ApolloAPI + +public extension Objects { + static let ProjectInvestigation = ApolloAPI.Object( + typename: "ProjectInvestigation", + implementedInterfaces: [Interfaces.Node.self] + ) +} \ No newline at end of file diff --git a/GraphAPI/Sources/Schema/SchemaMetadata.graphql.swift b/GraphAPI/Sources/Schema/SchemaMetadata.graphql.swift index 22228020fa..8049fe89ec 100644 --- a/GraphAPI/Sources/Schema/SchemaMetadata.graphql.swift +++ b/GraphAPI/Sources/Schema/SchemaMetadata.graphql.swift @@ -59,6 +59,7 @@ public enum SchemaMetadata: ApolloAPI.SchemaMetadata { case "Organization": return GraphAPI.Objects.Organization case "CuratedPage": return GraphAPI.Objects.CuratedPage case "SavedSearchSegment": return GraphAPI.Objects.SavedSearchSegment + case "ProjectInvestigation": return GraphAPI.Objects.ProjectInvestigation case "Survey": return GraphAPI.Objects.Survey case "PostCommentPayload": return GraphAPI.Objects.PostCommentPayload case "CommentConnection": return GraphAPI.Objects.CommentConnection diff --git a/Kickstarter-iOS/Features/PledgeShippingLocation/PledgeShippingLocationViewController.swift b/Kickstarter-iOS/Features/PledgeShippingLocation/PledgeShippingLocationViewController.swift index 213d1127bc..ceddda9989 100644 --- a/Kickstarter-iOS/Features/PledgeShippingLocation/PledgeShippingLocationViewController.swift +++ b/Kickstarter-iOS/Features/PledgeShippingLocation/PledgeShippingLocationViewController.swift @@ -123,23 +123,23 @@ final class PledgeShippingLocationViewController: UIViewController { self.delegate?.pledgeShippingLocationViewControllerLayoutDidUpdate(self, shimmerLoadingViewIsHidden) } - self.viewModel.outputs.notifyDelegateOfSelectedShippingRule + self.viewModel.outputs.notifyDelegateOfSelectedShippingLocation .observeForUI() - .observeValues { [weak self] shippingRule in + .observeValues { [weak self] location in guard let self = self else { return } - self.delegate?.pledgeShippingLocationViewController(self, didSelect: shippingRule.location) + self.delegate?.pledgeShippingLocationViewController(self, didSelect: location) } - self.viewModel.outputs.presentShippingRules + self.viewModel.outputs.presentShippingLocations .observeForUI() - .observeValues { [weak self] project, shippingRules, selectedShippingRule in - self?.presentShippingRules( - project, shippingRules: shippingRules, selectedShippingRule: selectedShippingRule + .observeValues { [weak self] locations, location in + self?.presentShippingLocations( + locations: locations, selectedLocation: location ) } - self.viewModel.outputs.dismissShippingRules + self.viewModel.outputs.dismissShippingLocations .observeForUI() .observeValues { [weak self] in self?.dismiss(animated: true) @@ -168,32 +168,17 @@ final class PledgeShippingLocationViewController: UIViewController { // MARK: - Functions - private func presentShippingRules( - _ project: Project, shippingRules: [ShippingRule], selectedShippingRule: ShippingRule + private func presentShippingLocations( + locations: [Location], + selectedLocation: Location ) { - let viewController = ShippingRulesTableViewController.instantiate() - viewController.configureWith( - project, shippingRules: shippingRules, - selectedShippingRule: selectedShippingRule + let viewController = ShippingLocationsViewController( + withLocations: locations, + selectedLocation: selectedLocation, + onSelectedLocation: { self.viewModel.inputs.shippingLocationUpdated(to: $0) }, + onCancelled: { self.viewModel.inputs.shippingLocationCancelButtonTapped() } ) - viewController.delegate = self - - let navigationController = UINavigationController(rootViewController: viewController) - - self.presentViewControllerWithSheetOverlay(navigationController, offset: Layout.Sheet.offset) - } -} - -extension PledgeShippingLocationViewController: ShippingRulesTableViewControllerDelegate { - func shippingRulesTableViewControllerCancelButtonTapped() { - self.viewModel.inputs.shippingRulesCancelButtonTapped() - } - - func shippingRulesTableViewController( - _: ShippingRulesTableViewController, - didSelect shippingRule: ShippingRule - ) { - self.viewModel.inputs.shippingRuleUpdated(to: shippingRule) + self.presentViewControllerWithSheetOverlay(viewController, offset: Layout.Sheet.offset) } } diff --git a/Kickstarter-iOS/Features/ShippingRules/Controller/ShippingRulesTableViewController.swift b/Kickstarter-iOS/Features/ShippingRules/Controller/ShippingRulesTableViewController.swift deleted file mode 100644 index 4025185adc..0000000000 --- a/Kickstarter-iOS/Features/ShippingRules/Controller/ShippingRulesTableViewController.swift +++ /dev/null @@ -1,149 +0,0 @@ -import KsApi -import Library -import Prelude -import UIKit - -protocol ShippingRulesTableViewControllerDelegate: AnyObject { - func shippingRulesTableViewControllerCancelButtonTapped() - func shippingRulesTableViewController( - _ tableViewController: ShippingRulesTableViewController, - didSelect rule: ShippingRule - ) -} - -final class ShippingRulesTableViewController: UITableViewController { - // MARK: - Properties - - private let dataSource: ShippingRulesDataSource = ShippingRulesDataSource() - private let viewModel: ShippingRulesViewModelType = ShippingRulesViewModel() - weak var delegate: ShippingRulesTableViewControllerDelegate? - - private lazy var searchBar: UISearchBar = { - UISearchBar(frame: .zero) - |> \.delegate .~ self - |> \.searchBarStyle .~ .minimal - |> \.showsCancelButton .~ false - }() - - // MARK: - Lifecycle - - static func instantiate() -> ShippingRulesTableViewController { - return ShippingRulesTableViewController(style: .plain) - } - - override func viewDidLoad() { - super.viewDidLoad() - - _ = self - |> \.navigationItem.rightBarButtonItem .~ UIBarButtonItem( - barButtonSystemItem: .cancel, - target: self, - action: #selector(ShippingRulesTableViewController.dismissViewController) - ) - - _ = self.navigationItem - |> \.titleView .~ self.searchBar - - _ = self.tableView - |> \.dataSource .~ self.dataSource - |> \.separatorStyle .~ .none - - self.tableView.registerCellClass(ShippingRuleCell.self) - - self.viewModel.inputs.viewDidLoad() - } - - override func viewDidLayoutSubviews() { - super.viewDidLayoutSubviews() - - self.viewModel.inputs.viewDidLayoutSubviews() - } - - // MARK: - Styles - - override func bindStyles() { - super.bindStyles() - - _ = self - |> baseControllerStyle() - } - - // MARK: - View model - - override func bindViewModel() { - super.bindViewModel() - - self.viewModel.outputs.deselectVisibleCells - .observeForUI() - .observeValues { [weak self] in - self?.tableView.visibleCells.forEach { $0.accessoryType = .none } - } - - self.viewModel.outputs.flashScrollIndicators - .observeForUI() - .observeValues { [weak self] in - self?.tableView.flashScrollIndicators() - } - - self.viewModel.outputs.notifyDelegateOfSelectedShippingRule - .observeForUI() - .observeValues { [weak self] selectedShippingRule in - guard let self = self else { return } - - self.delegate?.shippingRulesTableViewController(self, didSelect: selectedShippingRule) - } - - self.viewModel.outputs.reloadDataWithShippingRules - .observeForUI() - .observeValues { [weak self] shippingRules, reload in - self?.dataSource.load(shippingRules) - if reload { - self?.tableView.reloadData() - } - } - - self.viewModel.outputs.scrollToCellAtIndex - .map { IndexPath(row: $0, section: 0) } - .observeForUI() - .observeValues { [weak self] indexPath in - self?.tableView.scrollToRow(at: indexPath, at: .top, animated: false) - } - - self.viewModel.outputs.selectCellAtIndex - .map { IndexPath(row: $0, section: 0) } - .observeForUI() - .observeValues { [weak self] indexPath in - self?.tableView.cellForRow(at: indexPath)?.accessoryType = .checkmark - } - } - - // MARK: - Configuration - - func configureWith(_ project: Project, shippingRules: [ShippingRule], selectedShippingRule: ShippingRule) { - self.viewModel.inputs.configureWith( - project, - shippingRules: shippingRules, - selectedShippingRule: selectedShippingRule - ) - } - - // MARK: - Actions - - @objc private func dismissViewController() { - self.delegate?.shippingRulesTableViewControllerCancelButtonTapped() - } - - // MARK: - UITableViewDelegate - - override func tableView(_: UITableView, didSelectRowAt indexPath: IndexPath) { - self.viewModel.inputs.didSelectShippingRule(at: indexPath.row) - - self.tableView.deselectRow(at: indexPath, animated: true) - } -} - -extension ShippingRulesTableViewController: UISearchBarDelegate { - func searchBar(_: UISearchBar, textDidChange searchText: String) { - self.viewModel.inputs.searchTextDidChange(searchText) - } -} diff --git a/Kickstarter-iOS/Features/ShippingRules/Controller/ShippingRulesTableViewControllerTests.swift b/Kickstarter-iOS/Features/ShippingRules/Controller/ShippingRulesTableViewControllerTests.swift deleted file mode 100644 index 25eccfd31b..0000000000 --- a/Kickstarter-iOS/Features/ShippingRules/Controller/ShippingRulesTableViewControllerTests.swift +++ /dev/null @@ -1,41 +0,0 @@ -@testable import Kickstarter_Framework -@testable import KsApi -@testable import Library -import Prelude -import SnapshotTesting -import UIKit - -final class ShippingRulesTableViewControllerTests: TestCase { - override func setUp() { - super.setUp() - UIView.setAnimationsEnabled(false) - } - - override func tearDown() { - UIView.setAnimationsEnabled(true) - - super.tearDown() - } - - func testView() { - let shippingRule1 = ShippingRule.template - |> ShippingRule.lens.location .~ .canada - - let shippingRule2 = ShippingRule.template - |> ShippingRule.lens.location .~ .greatBritain - - let shippingRule3 = ShippingRule.template - |> ShippingRule.lens.location .~ .usa - - let shippingRules = [shippingRule1, shippingRule2, shippingRule3] - let selectedShippingRule = shippingRule2 - - Device.allCases.forEach { device in - let vc = ShippingRulesTableViewController.instantiate() - vc.configureWith(.template, shippingRules: shippingRules, selectedShippingRule: selectedShippingRule) - let (parent, _) = traitControllers(device: device, orientation: .portrait, child: vc) - - assertSnapshot(matching: parent.view, as: .image, named: "device_\(device)") - } - } -} diff --git a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_pad.png b/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_pad.png deleted file mode 100644 index b476c2b342..0000000000 Binary files a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_pad.png and /dev/null differ diff --git a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone4_7inch.png b/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone4_7inch.png deleted file mode 100644 index b024d9c1d3..0000000000 Binary files a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone4_7inch.png and /dev/null differ diff --git a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone4inch.png b/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone4inch.png deleted file mode 100644 index ba091540ac..0000000000 Binary files a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone4inch.png and /dev/null differ diff --git a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone5_5inch.png b/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone5_5inch.png deleted file mode 100644 index 831e9070f5..0000000000 Binary files a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone5_5inch.png and /dev/null differ diff --git a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone5_8inch.png b/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone5_8inch.png deleted file mode 100644 index 89ceca5449..0000000000 Binary files a/Kickstarter-iOS/Features/ShippingRules/Controller/__Snapshots__/ShippingRulesTableViewControllerTests/testView.device_phone5_8inch.png and /dev/null differ diff --git a/Kickstarter-iOS/Features/ShippingRules/Datasource/ShippingRulesDataSource.swift b/Kickstarter-iOS/Features/ShippingRules/Datasource/ShippingRulesDataSource.swift deleted file mode 100644 index f43ca72158..0000000000 --- a/Kickstarter-iOS/Features/ShippingRules/Datasource/ShippingRulesDataSource.swift +++ /dev/null @@ -1,26 +0,0 @@ -import Foundation -import Library -import UIKit - -final class ShippingRulesDataSource: ValueCellDataSource { - // MARK: - Load - - func load(_ values: [ShippingRuleData]) { - self.set( - values: values, - cellClass: ShippingRuleCell.self, - inSection: 0 - ) - } - - // MARK: - Configure - - override func configureCell(tableCell cell: UITableViewCell, withValue value: Any) { - switch (cell, value) { - case let (cell as ShippingRuleCell, value as (ShippingRuleData)): - cell.configureWith(value: value) - default: - assertionFailure("Unrecognized (cell, viewModel) combo.") - } - } -} diff --git a/Kickstarter-iOS/Features/ShippingRules/Datasource/ShippingRulesDataSourceTests.swift b/Kickstarter-iOS/Features/ShippingRules/Datasource/ShippingRulesDataSourceTests.swift deleted file mode 100644 index 128f38d15b..0000000000 --- a/Kickstarter-iOS/Features/ShippingRules/Datasource/ShippingRulesDataSourceTests.swift +++ /dev/null @@ -1,22 +0,0 @@ -@testable import Kickstarter_Framework -@testable import KsApi -@testable import Library -import XCTest - -final class ShippingRulesDataSourceTests: XCTestCase { - let dataSource = ShippingRulesDataSource() - let tableView = UITableView(frame: .zero, style: .plain) - - func testLoad() { - self.dataSource.load([ - ShippingRuleData(selectedShippingRule: .template, shippingRule: .template), - ShippingRuleData(selectedShippingRule: .template, shippingRule: .template), - ShippingRuleData(selectedShippingRule: .template, shippingRule: .template) - ]) - - XCTAssertEqual(3, self.dataSource.tableView(self.tableView, numberOfRowsInSection: 0)) - XCTAssertEqual(ShippingRuleCell.defaultReusableId, self.dataSource.reusableId(item: 0, section: 0)) - XCTAssertEqual(ShippingRuleCell.defaultReusableId, self.dataSource.reusableId(item: 1, section: 0)) - XCTAssertEqual(ShippingRuleCell.defaultReusableId, self.dataSource.reusableId(item: 2, section: 0)) - } -} diff --git a/Kickstarter-iOS/Features/ShippingRules/ShippingLocationsView.swift b/Kickstarter-iOS/Features/ShippingRules/ShippingLocationsView.swift new file mode 100644 index 0000000000..37a10a53ce --- /dev/null +++ b/Kickstarter-iOS/Features/ShippingRules/ShippingLocationsView.swift @@ -0,0 +1,104 @@ +import KDS +import KsApi +import Library +import SwiftUI + +public func ShippingLocationsViewController( + withLocations locations: [Location], + selectedLocation: Location?, + onSelectedLocation: @escaping (Location) -> Void, + onCancelled: @escaping () -> Void +) -> UIViewController { + let viewModel = ShippingLocationsViewModel( + withLocations: locations, + selectedLocation: selectedLocation + ) + + let view = ShippingLocationsView( + viewModel: viewModel, + onSelectedLocation: onSelectedLocation, + onCancelled: onCancelled + ) + + return UIHostingController(rootView: view) +} + +private struct ShippingLocationsView: View { + @StateObject var viewModel: T + let onSelectedLocation: (Location) -> Void + let onCancelled: () -> Void + + @State private var searchText: String = "" + + @ViewBuilder var locationsList: some View { + VStack(alignment: .leading, spacing: Spacing.unit_06) { + ForEach(self.viewModel.outputs.displayedLocations) { location in + Button { + self.viewModel.inputs.selectedLocation(location) + } label: { + ShippingLocationsRow( + title: location.localizedName, + isSelected: self.viewModel.outputs.isLocationSelected(location) + ) + } + .id(location.id) + } + } + .padding(Spacing.unit_06) + .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading) + } + + public var body: some View { + NavigationStack { + ScrollViewReader { reader in + ScrollView { + self.locationsList + } + .onAppear { + if let selectedLocation = self.viewModel.outputs.selectedLocation { + reader.scrollTo(selectedLocation.id, anchor: .center) + } + } + } + .searchable( + text: self.$searchText, + placement: .navigationBarDrawer(displayMode: .always) + ) + .navigationTitle(Strings.Location()) + .toolbar { + ToolbarItem(placement: .cancellationAction) { + Button(Strings.Cancel()) { + self.onCancelled() + } + } + } + } + .onChange(of: self.searchText) { _, newValue in + self.viewModel.inputs.filteredLocations(withTerm: newValue) + } + .onChange(of: self.viewModel.outputs.selectedLocation) { _, newValue in + if let newValue { + self.onSelectedLocation(newValue) + } + } + } +} + +private struct ShippingLocationsRow: View { + let title: String + let isSelected: Bool + + public var body: some View { + HStack(spacing: Spacing.unit_02) { + Text(self.title) + .font(InterFont.bodyLG.swiftUIFont()) + .multilineTextAlignment(.leading) + .foregroundStyle(Colors.Text.primary.swiftUIColor()) + + if self.isSelected, let checkmark = Library.image(named: "checkmark") { + Spacer() + Image(uiImage: checkmark) + } + } + } +} diff --git a/Kickstarter-iOS/Features/ShippingRules/ShippingLocationsViewModel.swift b/Kickstarter-iOS/Features/ShippingRules/ShippingLocationsViewModel.swift new file mode 100644 index 0000000000..47009cfc6d --- /dev/null +++ b/Kickstarter-iOS/Features/ShippingRules/ShippingLocationsViewModel.swift @@ -0,0 +1,67 @@ +import KsApi +import SwiftUICore + +protocol ShippingLocationsViewModelInputs { + func selectedLocation(_ location: Location) + func filteredLocations(withTerm searchTerm: String) +} + +protocol ShippingLocationsViewModelOutputs { + func isLocationSelected(_ location: Location) -> Bool + var displayedLocations: [Location] { get } + var selectedLocation: Location? { get } +} + +protocol ShippingLocationsViewModelType: ObservableObject { + var inputs: ShippingLocationsViewModelInputs { get } + var outputs: ShippingLocationsViewModelOutputs { get } +} + +class ShippingLocationsViewModel: ObservableObject, ShippingLocationsViewModelType, + ShippingLocationsViewModelInputs, ShippingLocationsViewModelOutputs { + @Published var displayedLocations: [Location] + @Published var selectedLocation: Location? + + // All the possible locations, used for filtering. + private var allLocations: [Location] + + init( + withLocations locations: [Location], + selectedLocation: Location? + ) { + let sortedLocations = locations.sorted { a, b in + a.localizedName <= b.localizedName + } + + self.allLocations = sortedLocations + self.selectedLocation = selectedLocation + self.displayedLocations = sortedLocations + } + + func isLocationSelected(_ location: Location) -> Bool { + return location.id == self.selectedLocation?.id + } + + func selectedLocation(_ location: Location) { + self.selectedLocation = location + } + + func filteredLocations(withTerm searchTerm: String) { + if searchTerm.isEmpty { + self.displayedLocations = self.allLocations + return + } + + self.displayedLocations = self.allLocations.filter { location in + location.localizedName.lowercased().contains(searchTerm.lowercased()) + } + } + + var outputs: any ShippingLocationsViewModelOutputs { + return self + } + + var inputs: any ShippingLocationsViewModelInputs { + return self + } +} diff --git a/Kickstarter-iOS/Features/ShippingRules/Views/Cells/ShippingRuleCell.swift b/Kickstarter-iOS/Features/ShippingRules/Views/Cells/ShippingRuleCell.swift deleted file mode 100644 index b333ebf727..0000000000 --- a/Kickstarter-iOS/Features/ShippingRules/Views/Cells/ShippingRuleCell.swift +++ /dev/null @@ -1,41 +0,0 @@ -import Library -import UIKit - -final class ShippingRuleCell: UITableViewCell, ValueCell { - // MARK: - Properties - - private let viewModel: ShippingRuleCellViewModelType = ShippingRuleCellViewModel() - - // MARK: - Lifecycle - - override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { - super.init(style: style, reuseIdentifier: reuseIdentifier) - - self.bindViewModel() - } - - @available(*, unavailable) - required init?(coder _: NSCoder) { - fatalError("init(coder:) has not been implemented") - } - - // MARK: - View model - - override func bindViewModel() { - super.bindViewModel() - - self.textLabel?.rac.text = self.viewModel.outputs.textLabelText - - self.viewModel.outputs.isSelected - .observeForUI() - .observeValues { [weak self] isSelected in - self?.accessoryType = isSelected ? .checkmark : .none - } - } - - // MARK: - Configuration - - func configureWith(value: ShippingRuleData) { - self.viewModel.inputs.configureWith(value) - } -} diff --git a/Kickstarter.xcodeproj/project.pbxproj b/Kickstarter.xcodeproj/project.pbxproj index 5a1bd72923..ae74c14836 100644 --- a/Kickstarter.xcodeproj/project.pbxproj +++ b/Kickstarter.xcodeproj/project.pbxproj @@ -352,11 +352,6 @@ 3757D107228E521600241AE6 /* UIFontTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3757D106228E521600241AE6 /* UIFontTests.swift */; }; 37637ED8224AA03D00777AD2 /* CreatePasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37637ED7224AA03D00777AD2 /* CreatePasswordViewController.swift */; }; 37653F82220A07710016E7F9 /* SettingsGroupedHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37653F81220A07710016E7F9 /* SettingsGroupedHeaderView.swift */; }; - 3767EDA722CFFE6C0088E8E4 /* ShippingRulesDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3767EDA522CFFE5F0088E8E4 /* ShippingRulesDataSource.swift */; }; - 3767EDA922CFFE770088E8E4 /* ShippingRulesDataSourceTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3767EDA822CFFE770088E8E4 /* ShippingRulesDataSourceTests.swift */; }; - 3767EDAB22CFFED40088E8E4 /* ShippingRuleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3767EDAA22CFFED40088E8E4 /* ShippingRuleCell.swift */; }; - 3767EDAD22CFFEF20088E8E4 /* ShippingRulesTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3767EDAC22CFFEF20088E8E4 /* ShippingRulesTableViewController.swift */; }; - 3767EDAF22CFFF010088E8E4 /* ShippingRulesTableViewControllerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3767EDAE22CFFF010088E8E4 /* ShippingRulesTableViewControllerTests.swift */; }; 3767EDB122CFFF2B0088E8E4 /* ShippingRulesViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3767EDB022CFFF2B0088E8E4 /* ShippingRulesViewModel.swift */; }; 3767EDB322CFFF380088E8E4 /* ShippingRulesViewModelTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3767EDB222CFFF380088E8E4 /* ShippingRulesViewModelTests.swift */; }; 3772A4C6229C9E2000EDDC6F /* String+Attributed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3772A4C5229C9E2000EDDC6F /* String+Attributed.swift */; }; @@ -371,8 +366,6 @@ 379CFFFE2242DAF400F6F0C2 /* Storyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = 379CFFEE2242DAC300F6F0C2 /* Storyboard.swift */; }; 379CFFFF2242DAF900F6F0C2 /* UIImageView+URL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 379CFFEA2242DAC200F6F0C2 /* UIImageView+URL.swift */; }; 37BB45C92243031200E7392A /* UIView+AutoLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37BB45C82243031100E7392A /* UIView+AutoLayout.swift */; }; - 37C7B81523187BA400C78278 /* ShippingRuleCellViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37C7B81423187BA400C78278 /* ShippingRuleCellViewModel.swift */; }; - 37C7B81723187BAC00C78278 /* ShippingRuleCellViewModelTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37C7B81623187BAC00C78278 /* ShippingRuleCellViewModelTests.swift */; }; 37CA16AD23300376006044F9 /* ManageViewPledgeRewardReceivedViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37CA16AC23300376006044F9 /* ManageViewPledgeRewardReceivedViewController.swift */; }; 37CA16AF2330038E006044F9 /* ManageViewPledgeRewardReceivedViewControllerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37CA16AE2330038E006044F9 /* ManageViewPledgeRewardReceivedViewControllerTests.swift */; }; 37CA16B123304DCA006044F9 /* ToggleViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37CA16B023304DCA006044F9 /* ToggleViewController.swift */; }; @@ -1663,6 +1656,7 @@ E13D76802D42C55C00FB58CE /* PledgeOverTimeUseCaseTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1A310272D2845CB0062646C /* PledgeOverTimeUseCaseTests.swift */; }; E13D76812D42CBA400FB58CE /* LoginSignupUseCaseTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E13D767E2D42C52900FB58CE /* LoginSignupUseCaseTests.swift */; }; E147F2902E5F7A6A00825650 /* KDS in Frameworks */ = {isa = PBXBuildFile; productRef = E147F28F2E5F7A6A00825650 /* KDS */; }; + E14D9B3A2ED4F1A0007FB545 /* ShippingLocationsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E14D9B392ED4F1A0007FB545 /* ShippingLocationsViewModel.swift */; }; E158020E2D7F53220000BAB3 /* Project+ProjectCellModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E158020D2D7F53220000BAB3 /* Project+ProjectCellModel.swift */; }; E15802102D7F536A0000BAB3 /* BackerDashboardProjectCellFragment+ProjectCellModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E158020F2D7F536A0000BAB3 /* BackerDashboardProjectCellFragment+ProjectCellModel.swift */; }; E15802502D7F784F0000BAB3 /* BackerDashboardProjectCellViewModel+Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = E158024F2D7F784F0000BAB3 /* BackerDashboardProjectCellViewModel+Utilities.swift */; }; @@ -1671,6 +1665,7 @@ E158030B2D836C370000BAB3 /* SearchQuery_EmptyResults.json in Resources */ = {isa = PBXBuildFile; fileRef = E15803052D83632F0000BAB3 /* SearchQuery_EmptyResults.json */; }; E16794282B7EAA5200064063 /* OAuthTokenExchange.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16794272B7EAA5200064063 /* OAuthTokenExchange.swift */; }; E167942A2B85136900064063 /* OAuthTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16794292B85136900064063 /* OAuthTests.swift */; }; + E16D0B0C2ECCD3AA004F28CC /* ShippingLocationsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16D0B0B2ECCD3A3004F28CC /* ShippingLocationsView.swift */; }; E16ECA702C245A34002A1D25 /* PagedContainerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16ECA6F2C245A34002A1D25 /* PagedContainerViewController.swift */; }; E16ECA722C245A51002A1D25 /* PagedContainerViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16ECA712C245A51002A1D25 /* PagedContainerViewModel.swift */; }; E170B9112B20E83B001BEDD7 /* MockGraphQLClient+CombineTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E170B9102B20E83B001BEDD7 /* MockGraphQLClient+CombineTests.swift */; }; @@ -2143,11 +2138,6 @@ 3757D106228E521600241AE6 /* UIFontTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIFontTests.swift; sourceTree = ""; }; 37637ED7224AA03D00777AD2 /* CreatePasswordViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CreatePasswordViewController.swift; sourceTree = ""; }; 37653F81220A07710016E7F9 /* SettingsGroupedHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsGroupedHeaderView.swift; sourceTree = ""; }; - 3767EDA522CFFE5F0088E8E4 /* ShippingRulesDataSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingRulesDataSource.swift; sourceTree = ""; }; - 3767EDA822CFFE770088E8E4 /* ShippingRulesDataSourceTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingRulesDataSourceTests.swift; sourceTree = ""; }; - 3767EDAA22CFFED40088E8E4 /* ShippingRuleCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingRuleCell.swift; sourceTree = ""; }; - 3767EDAC22CFFEF20088E8E4 /* ShippingRulesTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingRulesTableViewController.swift; sourceTree = ""; }; - 3767EDAE22CFFF010088E8E4 /* ShippingRulesTableViewControllerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingRulesTableViewControllerTests.swift; sourceTree = ""; }; 3767EDB022CFFF2B0088E8E4 /* ShippingRulesViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingRulesViewModel.swift; sourceTree = ""; }; 3767EDB222CFFF380088E8E4 /* ShippingRulesViewModelTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingRulesViewModelTests.swift; sourceTree = ""; }; 3772A4C5229C9E2000EDDC6F /* String+Attributed.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Attributed.swift"; sourceTree = ""; }; @@ -2163,8 +2153,6 @@ 379CFFF12242DAC400F6F0C2 /* WebViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WebViewController.swift; sourceTree = ""; }; 37BB45C82243031100E7392A /* UIView+AutoLayout.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+AutoLayout.swift"; sourceTree = ""; }; 37BFD8472208F22C00815C9C /* CreatePasswordTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CreatePasswordTableViewController.swift; sourceTree = ""; }; - 37C7B81423187BA400C78278 /* ShippingRuleCellViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingRuleCellViewModel.swift; sourceTree = ""; }; - 37C7B81623187BAC00C78278 /* ShippingRuleCellViewModelTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingRuleCellViewModelTests.swift; sourceTree = ""; }; 37CA16AC23300376006044F9 /* ManageViewPledgeRewardReceivedViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ManageViewPledgeRewardReceivedViewController.swift; sourceTree = ""; }; 37CA16AE2330038E006044F9 /* ManageViewPledgeRewardReceivedViewControllerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ManageViewPledgeRewardReceivedViewControllerTests.swift; sourceTree = ""; }; 37CA16B023304DCA006044F9 /* ToggleViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToggleViewController.swift; sourceTree = ""; }; @@ -3427,6 +3415,7 @@ E13D76772D4195E700FB58CE /* ApplePayTokenUseCaseTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApplePayTokenUseCaseTests.swift; sourceTree = ""; }; E13D767C2D42C36900FB58CE /* LoginSignupUseCase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginSignupUseCase.swift; sourceTree = ""; }; E13D767E2D42C52900FB58CE /* LoginSignupUseCaseTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginSignupUseCaseTests.swift; sourceTree = ""; }; + E14D9B392ED4F1A0007FB545 /* ShippingLocationsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingLocationsViewModel.swift; sourceTree = ""; }; E158020D2D7F53220000BAB3 /* Project+ProjectCellModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Project+ProjectCellModel.swift"; sourceTree = ""; }; E158020F2D7F536A0000BAB3 /* BackerDashboardProjectCellFragment+ProjectCellModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BackerDashboardProjectCellFragment+ProjectCellModel.swift"; sourceTree = ""; }; E158024F2D7F784F0000BAB3 /* BackerDashboardProjectCellViewModel+Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BackerDashboardProjectCellViewModel+Utilities.swift"; sourceTree = ""; }; @@ -3436,6 +3425,7 @@ E15E22CD2E54B91B00EE6BB0 /* KDS */ = {isa = PBXFileReference; lastKnownFileType = wrapper; path = KDS; sourceTree = ""; }; E16794272B7EAA5200064063 /* OAuthTokenExchange.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OAuthTokenExchange.swift; sourceTree = ""; }; E16794292B85136900064063 /* OAuthTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OAuthTests.swift; sourceTree = ""; }; + E16D0B0B2ECCD3A3004F28CC /* ShippingLocationsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShippingLocationsView.swift; sourceTree = ""; }; E16ECA6F2C245A34002A1D25 /* PagedContainerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PagedContainerViewController.swift; sourceTree = ""; }; E16ECA712C245A51002A1D25 /* PagedContainerViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PagedContainerViewModel.swift; sourceTree = ""; }; E170B9102B20E83B001BEDD7 /* MockGraphQLClient+CombineTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MockGraphQLClient+CombineTests.swift"; sourceTree = ""; }; @@ -3561,6 +3551,7 @@ E1BBB66D2E035BDD00291D48 /* FetchLocationsUseCase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchLocationsUseCase.swift; sourceTree = ""; }; E1BBB66E2E035BDD00291D48 /* FetchLocationsUseCaseTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchLocationsUseCaseTests.swift; sourceTree = ""; }; E1CFB5942D8E00C5004AB0D6 /* DiscoveryParams_Sort+SortOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "DiscoveryParams_Sort+SortOption.swift"; sourceTree = ""; }; + E1D529FC2ED4D21A00923AA9 /* ShippableLocationsQuery.graphql */ = {isa = PBXFileReference; lastKnownFileType = text; path = ShippableLocationsQuery.graphql; sourceTree = ""; }; E1D569B92E09D5CB00C78297 /* LocationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationView.swift; sourceTree = ""; }; E1D569C52E0C787800C78297 /* AmountRaisedView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AmountRaisedView.swift; sourceTree = ""; }; E1DBB2352DAEBCB60050733F /* SearchFiltersHeaderViewTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchFiltersHeaderViewTests.swift; sourceTree = ""; }; @@ -4858,47 +4849,12 @@ 19450C5228C82CEF00C60F97 /* ShippingRules */ = { isa = PBXGroup; children = ( - 19450C5328C82D6500C60F97 /* Views */, - 19450C5528C82D7100C60F97 /* Datasource */, - 19450C5628C82D7900C60F97 /* Controller */, + E16D0B0B2ECCD3A3004F28CC /* ShippingLocationsView.swift */, + E14D9B392ED4F1A0007FB545 /* ShippingLocationsViewModel.swift */, ); path = ShippingRules; sourceTree = ""; }; - 19450C5328C82D6500C60F97 /* Views */ = { - isa = PBXGroup; - children = ( - 19450C5428C82D6A00C60F97 /* Cells */, - ); - path = Views; - sourceTree = ""; - }; - 19450C5428C82D6A00C60F97 /* Cells */ = { - isa = PBXGroup; - children = ( - 3767EDAA22CFFED40088E8E4 /* ShippingRuleCell.swift */, - ); - path = Cells; - sourceTree = ""; - }; - 19450C5528C82D7100C60F97 /* Datasource */ = { - isa = PBXGroup; - children = ( - 3767EDA522CFFE5F0088E8E4 /* ShippingRulesDataSource.swift */, - 3767EDA822CFFE770088E8E4 /* ShippingRulesDataSourceTests.swift */, - ); - path = Datasource; - sourceTree = ""; - }; - 19450C5628C82D7900C60F97 /* Controller */ = { - isa = PBXGroup; - children = ( - 3767EDAC22CFFEF20088E8E4 /* ShippingRulesTableViewController.swift */, - 3767EDAE22CFFF010088E8E4 /* ShippingRulesTableViewControllerTests.swift */, - ); - path = Controller; - sourceTree = ""; - }; 19450C5728C82D9800C60F97 /* ThanksProjects */ = { isa = PBXGroup; children = ( @@ -7133,8 +7089,6 @@ D72370532118C19B001EA4CA /* SettingsRecommendationsCellViewModelTests.swift */, A75C81161D210BD700B5AD03 /* ShareViewModel.swift */, A7ED1F811E831C5C00BFFA01 /* ShareViewModelTests.swift */, - 37C7B81423187BA400C78278 /* ShippingRuleCellViewModel.swift */, - 37C7B81623187BAC00C78278 /* ShippingRuleCellViewModelTests.swift */, 3767EDB022CFFF2B0088E8E4 /* ShippingRulesViewModel.swift */, 3767EDB222CFFF380088E8E4 /* ShippingRulesViewModelTests.swift */, A72C3A921D00F6C70075227E /* SortPagerViewModel.swift */, @@ -7741,6 +7695,7 @@ E190EB672E29944E006A6DB6 /* FetchUserSetup.graphql */, E190EB682E29944E006A6DB6 /* FetchUserStoredCards.graphql */, E190EB692E29944E006A6DB6 /* LocationsByTermQuery.graphql */, + E1D529FC2ED4D21A00923AA9 /* ShippableLocationsQuery.graphql */, E190EB6A2E29944E006A6DB6 /* SearchQuery.graphql */, E190EB6B2E29944E006A6DB6 /* SimilarProjectQuery.graphql */, E190EB6C2E29944E006A6DB6 /* ValidateCheckout.graphql */, @@ -8599,7 +8554,6 @@ 6018626629A9194600EA2842 /* AppTrackingTransparency.swift in Sources */, 3757D0CE228E51F800241AE6 /* UIFont.swift in Sources */, 778F891C22D3E37300D095C5 /* Feature+Helpers.swift in Sources */, - 37C7B81523187BA400C78278 /* ShippingRuleCellViewModel.swift in Sources */, 3996536A2E2EEA2300ED69E5 /* SearchEmptyStateCellViewModel.swift in Sources */, 77C9122923C4FC0B00F3D2C9 /* ApplePayCapabilities.swift in Sources */, D796867C20FE655300E54C61 /* SettingsFollowCellViewModel.swift in Sources */, @@ -8848,7 +8802,6 @@ E17611E62B75242A00DF2F50 /* PaginatorTests.swift in Sources */, 8AFB8C99233E9A1F006779B5 /* CreatePaymentSourceInput+ConstructorTests.swift in Sources */, A7ED1F2B1E830FDC00BFFA01 /* IsValidEmailTests.swift in Sources */, - 37C7B81723187BAC00C78278 /* ShippingRuleCellViewModelTests.swift in Sources */, 601342F32C81420D00B851FA /* PostCampaignCheckoutViewModelTests.swift in Sources */, 6008633F29BF750700B87B39 /* MockAppTrackingTransparency.swift in Sources */, 37FDAFAD2273BA4B00662CC8 /* UIStackView+Tests.swift in Sources */, @@ -9182,6 +9135,7 @@ D796868021013C1F00E54C61 /* SettingsPrivacyStaticCell.swift in Sources */, 8AA3DB33250AE40C009AC8EA /* SettingsViewModel.swift in Sources */, 771E630B23425977005967E8 /* CancelPledgeViewController.swift in Sources */, + E14D9B3A2ED4F1A0007FB545 /* ShippingLocationsViewModel.swift in Sources */, 06DC4144266FF184005205F7 /* RootCommentCell.swift in Sources */, A75AB2231C8A85D1002FC3E6 /* ActivityUpdateCell.swift in Sources */, 777C60A6241FECD800820C59 /* PersonalizationCell.swift in Sources */, @@ -9251,6 +9205,7 @@ A72C3AB71D00FB1F0075227E /* DiscoveryExpandedSelectableRow.swift in Sources */, 063D2D0A2846767F00CEDE33 /* PledgeLocalPickupView.swift in Sources */, 37059843226F79A700BDA6E3 /* PledgeShippingLocationViewController.swift in Sources */, + E16D0B0C2ECCD3AA004F28CC /* ShippingLocationsView.swift in Sources */, 01940B291D467ECE0074FCE3 /* HelpWebViewController.swift in Sources */, 8AA3DB35250AE46D009AC8EA /* SettingsAccountViewModel.swift in Sources */, 60E1BB352C74F7E4007D723B /* EstimatedShippingCheckoutView.swift in Sources */, @@ -9270,7 +9225,6 @@ 8A08B521249C3352009CF74E /* EasyButton.swift in Sources */, 6044532C2BA08FE100B8F485 /* PledgeRewardsSummaryTotalViewController.swift in Sources */, 20C186ED26726612008046D8 /* CommentsDataSource.swift in Sources */, - 3767EDA722CFFE6C0088E8E4 /* ShippingRulesDataSource.swift in Sources */, 770E441321137E7400396D46 /* SettingsNotificationPickerCell.swift in Sources */, AAA71B292DB2C53700031C1F /* FlowLayout.swift in Sources */, 06232D392795D26600A81755 /* TextViewElementCell.swift in Sources */, @@ -9325,7 +9279,6 @@ A7C795B41C873AC90081977F /* DiscoveryViewController.swift in Sources */, E1BAA03A2C1A1CCD004F8B06 /* PPOViewModel.swift in Sources */, E10841722DCBD874000E4F17 /* SearchResultsCountCell.swift in Sources */, - 3767EDAB22CFFED40088E8E4 /* ShippingRuleCell.swift in Sources */, 47C500712696481300BB4BF2 /* CommentViewMoreRepliesFailedCell.swift in Sources */, D63BBCD0217E5460007E01F0 /* PaymentMethodSettingsViewController.swift in Sources */, 379CFFFC2242DAE800F6F0C2 /* Nib.swift in Sources */, @@ -9369,7 +9322,6 @@ 8A49396B24B7735100C3C3CE /* RewardAddOnCardView.swift in Sources */, 01DEFB961CB44A5D003709C0 /* TwoFactorViewController.swift in Sources */, 7717805A22F9ED130064A32F /* RewardsCollectionViewFooter.swift in Sources */, - 3767EDAD22CFFEF20088E8E4 /* ShippingRulesTableViewController.swift in Sources */, 370ACB00225D337900C8745F /* PledgeAmountViewController.swift in Sources */, 06FFE98827C67C8800E3A929 /* GIFAnimatedImageView.swift in Sources */, 06B02BED26680D4300903A83 /* CommentCell.swift in Sources */, @@ -9442,7 +9394,6 @@ A783560A1E85BE890021DA5A /* BackerDashboardProjectsViewControllerTests.swift in Sources */, 77941D2E216FCB0100398B89 /* ChangePasswordViewControllerTests.swift in Sources */, A7ED20661E83256700BFFA01 /* UpdateViewModelTests.swift in Sources */, - 3767EDAF22CFFF010088E8E4 /* ShippingRulesTableViewControllerTests.swift in Sources */, A7ED20161E83229E00BFFA01 /* DiscoveryPagesDataSourceTests.swift in Sources */, 8A13D16C249848DA007E2C0B /* PledgeExpandableRewardsHeaderDataSourceTests.swift in Sources */, 77EFBAE92268E3D200DA5C3C /* RewardsCollectionViewDataSourceTests.swift in Sources */, @@ -9468,7 +9419,6 @@ 77891BDE20CEB6DB00B46D5D /* ThanksProjectsDataSourceTests.swift in Sources */, 19450C2628C8225200C60F97 /* SearchViewControllerTests.swift in Sources */, 209B0E3A265801D70006DB7D /* CommentComposerViewTests.swift in Sources */, - 3767EDA922CFFE770088E8E4 /* ShippingRulesDataSourceTests.swift in Sources */, 8A8C6136243FBA640092B682 /* PledgePaymentMethodsDataSourceTests.swift in Sources */, 19A97D2328C7FCF00031B857 /* ManagePledgeViewControllerTests.swift in Sources */, 601342EF2C81419C00B851FA /* PostCampaignCheckoutViewControllerTests.swift in Sources */, diff --git a/KsApi/models/graphql/adapters/Location+LocationFragment.swift b/KsApi/models/graphql/adapters/Location+LocationFragment.swift index 8ec8485a13..2fd1d913dc 100644 --- a/KsApi/models/graphql/adapters/Location+LocationFragment.swift +++ b/KsApi/models/graphql/adapters/Location+LocationFragment.swift @@ -37,4 +37,13 @@ extension Location { return KsApi.Location.location(from: fragment) } } + + public static func locations(from data: GraphAPI.ShippableLocationsQuery.Data) -> [Location] { + let nodes = data.shippingCountryLocations + + return nodes.compactMap { node in + let fragment = node.fragments.locationFragment + return KsApi.Location.location(from: fragment) + } + } } diff --git a/KsApi/models/graphql/adapters/Location+LocationFragmentTests.swift b/KsApi/models/graphql/adapters/Location+LocationFragmentTests.swift index 3440844ebc..3ca6a5442f 100644 --- a/KsApi/models/graphql/adapters/Location+LocationFragmentTests.swift +++ b/KsApi/models/graphql/adapters/Location+LocationFragmentTests.swift @@ -5,18 +5,12 @@ import XCTest final class Location_LocationFragmentTests: XCTestCase { func test() { - let locationFragment: GraphAPI.LocationFragment = try! testGraphObject( - jsonString: - """ - { - "__typename": "Location", - "country": "CA", - "countryName": "Canada", - "displayableName": "Canada", - "id": "TG9jYXRpb24tMjM0MjQ3NzU=", - "name": "Canada" - } - """ + let locationFragment = GraphAPI.LocationFragment( + country: "CA", + countryName: "Canada", + displayableName: "Canada", + id: "TG9jYXRpb24tMjM0MjQ3NzU=", + name: "Canada" ) XCTAssertNotNil(Location.location(from: locationFragment)) diff --git a/Library/SharedFunctions.swift b/Library/SharedFunctions.swift index 301ecd2336..d306dcf99e 100644 --- a/Library/SharedFunctions.swift +++ b/Library/SharedFunctions.swift @@ -217,6 +217,20 @@ public func defaultShippingRule(fromShippingRules shippingRules: [ShippingRule]) return shippingRuleInUSA ?? shippingRules.first } +public func defaultShippingLocation(fromLocations locations: [Location]) -> Location? { + let environmentCountry = AppEnvironment.current.config?.countryCode + if let currentLocation = locations + .first(where: { $0.country == environmentCountry }) { + return currentLocation + } + + if let usaLocation = locations.first(where: { $0.country == "US" }) { + return usaLocation + } + + return locations.first +} + public func formattedAmountForRewardOrBacking( project: Project, rewardOrBacking: Either diff --git a/Library/ViewModels/PledgeShippingLocationViewModel.swift b/Library/ViewModels/PledgeShippingLocationViewModel.swift index 29543eaf0b..a8867f19f1 100644 --- a/Library/ViewModels/PledgeShippingLocationViewModel.swift +++ b/Library/ViewModels/PledgeShippingLocationViewModel.swift @@ -1,4 +1,5 @@ import Foundation +import GraphAPI import KsApi import Prelude import ReactiveExtensions @@ -12,16 +13,16 @@ public struct PledgeShippingLocationViewData { public protocol PledgeShippingLocationViewModelInputs { func configureWith(data: PledgeShippingLocationViewData) func shippingLocationButtonTapped() - func shippingRulesCancelButtonTapped() - func shippingRuleUpdated(to rule: ShippingRule) + func shippingLocationCancelButtonTapped() + func shippingLocationUpdated(to rule: Location) func viewDidLoad() } public protocol PledgeShippingLocationViewModelOutputs { var adaptableStackViewIsHidden: Signal { get } - var dismissShippingRules: Signal { get } - var presentShippingRules: Signal<(Project, [ShippingRule], ShippingRule), Never> { get } - var notifyDelegateOfSelectedShippingRule: Signal { get } + var dismissShippingLocations: Signal { get } + var presentShippingLocations: Signal<([Location], Location), Never> { get } + var notifyDelegateOfSelectedShippingLocation: Signal { get } var shimmerLoadingViewIsHidden: Signal { get } var shippingLocationButtonTitle: Signal { get } var shippingRulesError: Signal { get } @@ -50,15 +51,18 @@ public final class PledgeShippingLocationViewModel: PledgeShippingLocationViewMo let shippingShouldBeginLoading = project .mapConst(true) - let shippingRulesEvent = project - .switchMap { project -> SignalProducer.Event, Never> in - getShippingRulesForAllRewards(in: project) + let locationsQuery = configData + .switchMap { _ in + shippableLocations().materialize() } - let shippingRulesLoadingCompleted = shippingRulesEvent - .filter { $0.isTerminating } - .mapConst(false) - .ksr_debounce(.seconds(1), on: AppEnvironment.current.scheduler) + let loadedLocations = locationsQuery.values() + let erroredLocations = locationsQuery.errors() + + let shippingRulesLoadingCompleted = Signal.merge( + loadedLocations.ignoreValues(), + erroredLocations.ignoreValues() + ).mapConst(false) let isLoading = Signal.merge( shippingShouldBeginLoading, @@ -68,37 +72,33 @@ public final class PledgeShippingLocationViewModel: PledgeShippingLocationViewMo self.adaptableStackViewIsHidden = isLoading self.shimmerLoadingViewIsHidden = isLoading.negate() - let shippingRules = shippingRulesEvent.values() - - let initialShippingRule = Signal.combineLatest( + let initialShippingLocation = Signal.combineLatest( project, - shippingRules, + loadedLocations, selectedLocationId ) - .map(determineShippingRule) + .map(determineShippingLocation) - self.shippingRulesError = shippingRulesEvent.errors().map { _ in - Strings.We_were_unable_to_load_the_shipping_destinations() - } + self.shippingRulesError = erroredLocations + .mapConst(Strings.We_were_unable_to_load_the_shipping_destinations()) - self.notifyDelegateOfSelectedShippingRule = Signal.merge( - initialShippingRule.skipNil(), - self.shippingRuleUpdatedSignal + self.notifyDelegateOfSelectedShippingLocation = Signal.merge( + initialShippingLocation.skipNil(), + self.shippingLocationUpdatedSignal ) - self.presentShippingRules = Signal.combineLatest( - project, - shippingRulesEvent.values(), - self.notifyDelegateOfSelectedShippingRule + self.presentShippingLocations = Signal.combineLatest( + loadedLocations, + self.notifyDelegateOfSelectedShippingLocation ) .takeWhen(self.shippingLocationButtonTappedSignal) - self.shippingLocationButtonTitle = self.notifyDelegateOfSelectedShippingRule - .map { $0.location.localizedName } + self.shippingLocationButtonTitle = self.notifyDelegateOfSelectedShippingLocation + .map { $0.localizedName } - self.dismissShippingRules = Signal.merge( - self.shippingRulesCancelButtonTappedProperty.signal, - self.shippingRuleUpdatedSignal.signal + self.dismissShippingLocations = Signal.merge( + self.shippingLocationCancelButtonTappedProperty.signal, + self.shippingLocationUpdatedSignal.signal .ignoreValues() .ksr_debounce(.milliseconds(300), on: AppEnvironment.current.scheduler) ) @@ -115,14 +115,15 @@ public final class PledgeShippingLocationViewModel: PledgeShippingLocationViewMo self.shippingLocationButtonTappedObserver.send(value: ()) } - private let shippingRulesCancelButtonTappedProperty = MutableProperty(()) - public func shippingRulesCancelButtonTapped() { - self.shippingRulesCancelButtonTappedProperty.value = () + private let shippingLocationCancelButtonTappedProperty = MutableProperty(()) + public func shippingLocationCancelButtonTapped() { + self.shippingLocationCancelButtonTappedProperty.value = () } - private let (shippingRuleUpdatedSignal, shippingRuleUpdatedObserver) = Signal.pipe() - public func shippingRuleUpdated(to rule: ShippingRule) { - self.shippingRuleUpdatedObserver.send(value: rule) + private let (shippingLocationUpdatedSignal, shippingLocationUpdatedObserver) = Signal + .pipe() + public func shippingLocationUpdated(to location: Location) { + self.shippingLocationUpdatedObserver.send(value: location) } private let viewDidLoadProperty = MutableProperty(()) @@ -131,9 +132,9 @@ public final class PledgeShippingLocationViewModel: PledgeShippingLocationViewMo } public let adaptableStackViewIsHidden: Signal - public let dismissShippingRules: Signal - public let presentShippingRules: Signal<(Project, [ShippingRule], ShippingRule), Never> - public let notifyDelegateOfSelectedShippingRule: Signal + public let dismissShippingLocations: Signal + public let presentShippingLocations: Signal<([Location], Location), Never> + public let notifyDelegateOfSelectedShippingLocation: Signal public let shimmerLoadingViewIsHidden: Signal public let shippingLocationButtonTitle: Signal public let shippingRulesError: Signal @@ -161,71 +162,28 @@ private func shippingValue(of project: Project, with shippingRuleCost: Double) - return Format.attributedPlusSign(combinedAttributes) + attributedCurrency } -private func determineShippingRule( +private func determineShippingLocation( with project: Project, - shippingRules: [ShippingRule], + locations: [Location], selectedLocationId: Int? -) -> ShippingRule? { +) -> Location? { if let locationId = selectedLocationId ?? project.personalization.backing?.locationId, - let selectedShippingRule = shippingRules.first(where: { $0.location.id == locationId }) { - return selectedShippingRule + let selectedShippingLocation = locations.first(where: { $0.id == locationId }) { + return selectedShippingLocation } - return defaultShippingRule(fromShippingRules: shippingRules) + return defaultShippingLocation(fromLocations: locations) } -/* - Iterates through all reward shipping preferences to get all possible shipping rules. - */ - -private func getShippingRulesForAllRewards(in project: Project) -> SignalProducer.Event, Never> { - /// Get all of the reward IDs we'll need to fetch the Shipping Rules. See inner method logic for more details. - let rewardIDsToQuery: Set = getRewardIDsToQuery(for: project) - - /// Initializing the result with a fetch using the first reward ID in the Set to avoid optional warnings - var queryResult: SignalProducer.Event, Never>? - - /// Fetch the shipping rules for each reward and then consolidate each corresponding SignalProducer into the `queryResult` variable using .merge(with:). - rewardIDsToQuery.forEach { id in - let fetchResult = AppEnvironment.current.apiService.fetchRewardShippingRules( - projectId: project.id, - rewardId: id - ) +private func shippableLocations() -> SignalProducer<[Location], ErrorEnvelope> { + let query = GraphAPI.ShippableLocationsQuery() + let producer = AppEnvironment.current.apiService.fetch(query: query) + .map { data in + let locations = Location.locations(from: data) + return locations + } .ksr_delay(AppEnvironment.current.apiDelayInterval, on: AppEnvironment.current.scheduler) - .map(ShippingRulesEnvelope.lens.shippingRules.view) - .retry(upTo: 3) - .materialize() - - queryResult = queryResult?.merge(with: fetchResult) ?? fetchResult - } - - return queryResult ?? SignalProducer(value: .value([])) -} - -private func getRewardIDsToQuery(for project: Project) -> Set { - /// Using a Set to avoid adding duplicate reward IDs. Some rewards may have the same shipping preferences. - var rewardIDsToQuery = Set() - - /// If project contains a reward with an `unrestricted` shipping preference, we can query just that reward. This will return ALL available locations. - if let reward = project.rewards - .first(where: { $0.isUnRestrictedShippingPreference && $0.shipping.enabled }) { - rewardIDsToQuery.insert(reward.id) - } - - /// If project does not contain a reward with an `unrestricted` shipping preference, then we'll need to query all other rewards to capture all possible shipping locations. - if rewardIDsToQuery.isEmpty { - let restrictedRewards = project.rewards - .filter { - ($0.isRestrictedShippingPreference || $0.hasNoShippingPreference) - && $0.shipping.enabled - } - - restrictedRewards.forEach { rewardIDsToQuery.insert($0.id) } - } - return rewardIDsToQuery + return producer } diff --git a/Library/ViewModels/PledgeShippingLocationViewModelTests.swift b/Library/ViewModels/PledgeShippingLocationViewModelTests.swift index 94b636b636..9a1a3ceb4b 100644 --- a/Library/ViewModels/PledgeShippingLocationViewModelTests.swift +++ b/Library/ViewModels/PledgeShippingLocationViewModelTests.swift @@ -1,4 +1,5 @@ import Foundation +import GraphAPI @testable import KsApi @testable import Library import Prelude @@ -6,24 +7,14 @@ import ReactiveExtensions import ReactiveExtensions_TestHelpers import XCTest -private let shippingRules = [ - ShippingRule.template - |> ShippingRule.lens.location .~ .brooklyn, - ShippingRule.template - |> ShippingRule.lens.location .~ .canada, - ShippingRule.template - |> ShippingRule.lens.location .~ .australia -] - final class PledgeShippingLocationViewModelTests: TestCase { private let vm: PledgeShippingLocationViewModelType = PledgeShippingLocationViewModel() private let adaptableStackViewIsHidden = TestObserver() - private let dismissShippingRules = TestObserver() - private let presentShippingRulesProject = TestObserver() - private let presentShippingRulesAllRules = TestObserver<[ShippingRule], Never>() - private let presentShippingRulesSelectedRule = TestObserver() - private let notifyDelegateOfSelectedShippingRule = TestObserver() + private let dismissShippingLocations = TestObserver() + private let presentShippingLocationsAllLocations = TestObserver<[Location], Never>() + private let presentShippingLocationsSelectedLocation = TestObserver() + private let notifyDelegateOfSelectedShippingLocation = TestObserver() private let shimmerLoadingViewIsHidden = TestObserver() private let shippingLocationButtonTitle = TestObserver() private let shippingRulesError = TestObserver() @@ -32,19 +23,22 @@ final class PledgeShippingLocationViewModelTests: TestCase { super.setUp() self.vm.outputs.adaptableStackViewIsHidden.observe(self.adaptableStackViewIsHidden.observer) - self.vm.outputs.dismissShippingRules.observe(self.dismissShippingRules.observer) + self.vm.outputs.dismissShippingLocations.observe(self.dismissShippingLocations.observer) self.vm.outputs.shimmerLoadingViewIsHidden.observe(self.shimmerLoadingViewIsHidden.observer) - self.vm.outputs.presentShippingRules.map { $0.0 }.observe(self.presentShippingRulesProject.observer) - self.vm.outputs.presentShippingRules.map { $0.1 }.observe(self.presentShippingRulesAllRules.observer) - self.vm.outputs.presentShippingRules.map { $0.2 }.observe(self.presentShippingRulesSelectedRule.observer) - self.vm.outputs.notifyDelegateOfSelectedShippingRule - .observe(self.notifyDelegateOfSelectedShippingRule.observer) + self.vm.outputs.presentShippingLocations.map { $0.0 } + .observe(self.presentShippingLocationsAllLocations.observer) + self.vm.outputs.presentShippingLocations.map { $0.1 } + .observe(self.presentShippingLocationsSelectedLocation.observer) + self.vm.outputs.notifyDelegateOfSelectedShippingLocation + .observe(self.notifyDelegateOfSelectedShippingLocation.observer) self.vm.outputs.shippingLocationButtonTitle.observe(self.shippingLocationButtonTitle.observer) self.vm.outputs.shippingRulesError.observe(self.shippingRulesError.observer) } func testDefaultShippingRule_ProjectCountryEqualsProjectCurrencyCountry_US() { - let mockService = MockService(fetchShippingRulesResult: Result.success(shippingRules)) + let mockService = MockService(fetchGraphQLResponses: [ + (ShippableLocationsQuery.self, shippingLocationsData) + ]) let reward = Reward.template |> Reward.lens.shipping.enabled .~ true @@ -61,31 +55,26 @@ final class PledgeShippingLocationViewModelTests: TestCase { self.adaptableStackViewIsHidden.assertValues([true]) self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertDidNotEmitValue() + self.notifyDelegateOfSelectedShippingLocation.assertDidNotEmitValue() self.shippingLocationButtonTitle.assertValues([]) self.scheduler.advance() - guard let defaultShippingRule = shippingRules.first(where: { $0.location == .brooklyn }) else { - XCTFail("Default shipping rule should exist") - return - } - - self.adaptableStackViewIsHidden.assertValues([true]) - self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertValues([defaultShippingRule]) - self.shippingLocationButtonTitle.assertValues(["Brooklyn, NY"]) - self.shippingRulesError.assertDidNotEmitValue() - - self.scheduler.advance(by: .seconds(1)) - self.adaptableStackViewIsHidden.assertValues([true, false]) self.shimmerLoadingViewIsHidden.assertValues([false, true]) + self.notifyDelegateOfSelectedShippingLocation.assertValues( + [Location.usa], + "Because the user has an environment with a US country code, their default location should be the USA." + ) + self.shippingLocationButtonTitle.assertValues(["United States"]) + self.shippingRulesError.assertDidNotEmitValue() } } func testDefaultShippingRule_US_ProjectCountry_NonUSProjectCurrencyCountry_US_UserLocation() { - let mockService = MockService(fetchShippingRulesResult: Result.success(shippingRules)) + let mockService = MockService(fetchGraphQLResponses: [ + (ShippableLocationsQuery.self, shippingLocationsData) + ]) let reward = Reward.template |> Reward.lens.shipping.enabled .~ true @@ -102,35 +91,31 @@ final class PledgeShippingLocationViewModelTests: TestCase { project: project, selectedLocationId: nil )) + self.vm.inputs.viewDidLoad() self.adaptableStackViewIsHidden.assertValues([true]) self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertDidNotEmitValue() + self.notifyDelegateOfSelectedShippingLocation.assertDidNotEmitValue() self.shippingLocationButtonTitle.assertValues([]) self.scheduler.advance() - guard let defaultShippingRule = shippingRules.first(where: { $0.location == .brooklyn }) else { - XCTFail("Default shipping rule should exist") - return - } - - self.adaptableStackViewIsHidden.assertValues([true]) - self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertValues([defaultShippingRule]) - self.shippingLocationButtonTitle.assertValues(["Brooklyn, NY"]) - self.shippingRulesError.assertDidNotEmitValue() - - self.scheduler.advance(by: .seconds(1)) - self.adaptableStackViewIsHidden.assertValues([true, false]) self.shimmerLoadingViewIsHidden.assertValues([false, true]) + self.notifyDelegateOfSelectedShippingLocation.assertValues( + [Location.usa], + "Because the user has an environment with a US country code, their default location should be the USA." + ) + self.shippingLocationButtonTitle.assertValues(["United States"]) + self.shippingRulesError.assertDidNotEmitValue() } } func testDefaultShippingRule_ProjectCountryEqualsProjectCurrencyCountry_US_DefaultsToPreselected() { - let mockService = MockService(fetchShippingRulesResult: Result.success(shippingRules)) + let mockService = MockService(fetchGraphQLResponses: [ + (ShippableLocationsQuery.self, shippingLocationsData) + ]) let reward = Reward.template |> Reward.lens.shipping.enabled .~ true @@ -147,31 +132,26 @@ final class PledgeShippingLocationViewModelTests: TestCase { self.adaptableStackViewIsHidden.assertValues([true]) self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertDidNotEmitValue() + self.notifyDelegateOfSelectedShippingLocation.assertDidNotEmitValue() self.shippingLocationButtonTitle.assertValues([]) self.scheduler.advance() - guard let defaultShippingRule = shippingRules.first(where: { $0.location == .australia }) else { - XCTFail("Default shipping rule should exist") - return - } - - self.adaptableStackViewIsHidden.assertValues([true]) - self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertValues([defaultShippingRule]) - self.shippingLocationButtonTitle.assertValues(["Australia"]) - self.shippingRulesError.assertDidNotEmitValue() - - self.scheduler.advance(by: .seconds(1)) - self.adaptableStackViewIsHidden.assertValues([true, false]) self.shimmerLoadingViewIsHidden.assertValues([false, true]) + self.notifyDelegateOfSelectedShippingLocation.assertValues( + [Location.australia], + "Because the project has a backing in Australia, the selected shipping location should be Australia." + ) + self.shippingLocationButtonTitle.assertValues(["Australia"]) + self.shippingRulesError.assertDidNotEmitValue() } } func testShippingRulesSelection() { - let mockService = MockService(fetchShippingRulesResult: Result.success(shippingRules)) + let mockService = MockService(fetchGraphQLResponses: [ + (ShippableLocationsQuery.self, shippingLocationsData) + ]) let reward = Reward.template |> Reward.lens.shipping.enabled .~ true @@ -185,40 +165,42 @@ final class PledgeShippingLocationViewModelTests: TestCase { )) self.vm.inputs.viewDidLoad() - guard let defaultShippingRule = shippingRules.first(where: { $0.location == .brooklyn }) else { - XCTFail("Default shipping rule should exist") - return - } - - guard let selectedShippingRule = shippingRules.first(where: { $0.location == .australia }) else { - XCTFail("Selected shipping rule should exist") - return - } + let defaultShippingLocation = Location.usa + let selectedShippingLocation = Location.australia - self.notifyDelegateOfSelectedShippingRule.assertDidNotEmitValue() + self.notifyDelegateOfSelectedShippingLocation.assertDidNotEmitValue() self.scheduler.advance() - self.notifyDelegateOfSelectedShippingRule.assertValues([defaultShippingRule]) + self.notifyDelegateOfSelectedShippingLocation.assertValues([defaultShippingLocation]) self.vm.inputs.shippingLocationButtonTapped() - self.dismissShippingRules.assertDidNotEmitValue() - self.presentShippingRulesProject.assertValues([.template]) - self.presentShippingRulesAllRules.assertValues([shippingRules]) - self.presentShippingRulesSelectedRule.assertValues([defaultShippingRule]) + self.dismissShippingLocations.assertDidNotEmitValue() + self.presentShippingLocationsAllLocations.assertValues([[ + Location.usa, + Location.canada, + Location.australia + ]]) + self.presentShippingLocationsSelectedLocation.assertValues([defaultShippingLocation]) - self.vm.inputs.shippingRuleUpdated(to: selectedShippingRule) + self.vm.inputs.shippingLocationUpdated(to: selectedShippingLocation) self.scheduler.advance(by: .milliseconds(300)) - self.dismissShippingRules.assertValueCount(1) - self.notifyDelegateOfSelectedShippingRule.assertValues([defaultShippingRule, selectedShippingRule]) + self.dismissShippingLocations.assertValueCount(1) + self.notifyDelegateOfSelectedShippingLocation.assertValues([ + defaultShippingLocation, + selectedShippingLocation + ]) } } func testShippingRulesCancelation() { - let mockService = MockService(fetchShippingRulesResult: Result.success(shippingRules)) + let mockService = MockService(fetchGraphQLResponses: [ + (ShippableLocationsQuery.self, shippingLocationsData) + ]) + let reward = Reward.template |> Reward.lens.shipping.enabled .~ true @@ -232,38 +214,42 @@ final class PledgeShippingLocationViewModelTests: TestCase { )) self.vm.inputs.viewDidLoad() - guard let defaultShippingRule = shippingRules.first(where: { $0.location == .brooklyn }) else { - XCTFail("Default shipping rule should exist") - return - } + let defaultShippingLocation = Location.usa - self.notifyDelegateOfSelectedShippingRule.assertDidNotEmitValue() + self.notifyDelegateOfSelectedShippingLocation.assertDidNotEmitValue() self.scheduler.advance() - self.notifyDelegateOfSelectedShippingRule.assertValues([defaultShippingRule]) + self.notifyDelegateOfSelectedShippingLocation.assertValues([defaultShippingLocation]) self.vm.inputs.shippingLocationButtonTapped() - self.presentShippingRulesProject.assertValues([.template]) - self.presentShippingRulesAllRules.assertValues([shippingRules]) - self.presentShippingRulesSelectedRule.assertValues([defaultShippingRule]) + self.presentShippingLocationsAllLocations.assertValues([shippingLocations]) + self.presentShippingLocationsSelectedLocation.assertValues([defaultShippingLocation]) - self.dismissShippingRules.assertDidNotEmitValue() - self.vm.inputs.shippingRulesCancelButtonTapped() - self.dismissShippingRules.assertValueCount(1) + self.dismissShippingLocations.assertDidNotEmitValue() + self.vm.inputs.shippingLocationCancelButtonTapped() + self.dismissShippingLocations.assertValueCount(1) } } func testShippingRulesError_ProjectCountryEqualsProjectCurrencyCountry_US() { - let error = ErrorEnvelope(errorMessages: [], ksrCode: nil, httpCode: 404, exception: nil) + let errorData = GraphAPI.ShippableLocationsQuery.Data( + shippingCountryLocations: [] + ) + + let mockService = MockService(fetchGraphQLResponses: [ + (ShippableLocationsQuery.self, errorData) + ]) + let reward = Reward.template |> Reward.lens.shipping.enabled .~ true let project = Project.template |> Project.lens.rewardData.rewards .~ [reward] - withEnvironment(apiService: MockService(fetchShippingRulesResult: Result.failure(error))) { + // Leaving the mock unimplemented gives us an ErrorEnvelope, which is what we want to te + withEnvironment { self.vm.inputs.configureWith(data: PledgeShippingLocationViewData( project: project, selectedLocationId: nil @@ -274,21 +260,18 @@ final class PledgeShippingLocationViewModelTests: TestCase { self.scheduler.advance() - self.adaptableStackViewIsHidden.assertValues([true]) - self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertDidNotEmitValue() - self.shippingLocationButtonTitle.assertValues([]) - self.shippingRulesError.assertValues([Strings.We_were_unable_to_load_the_shipping_destinations()]) - - self.scheduler.advance(by: .seconds(1)) - self.adaptableStackViewIsHidden.assertValues([true, false]) self.shimmerLoadingViewIsHidden.assertValues([false, true]) + self.notifyDelegateOfSelectedShippingLocation.assertDidNotEmitValue() + self.shippingLocationButtonTitle.assertValues([]) + self.shippingRulesError.assertValues([Strings.We_were_unable_to_load_the_shipping_destinations()]) } } func testShippingLocationFromBackingIsDefault_ProjectCountryEqualsProjectCurrencyCountry_US() { - let mockService = MockService(fetchShippingRulesResult: Result.success(shippingRules)) + let mockService = MockService(fetchGraphQLResponses: [ + (ShippableLocationsQuery.self, shippingLocationsData) + ]) let reward = Reward.template |> Reward.lens.shipping.enabled .~ true @@ -317,34 +300,48 @@ final class PledgeShippingLocationViewModelTests: TestCase { self.adaptableStackViewIsHidden.assertValues([true]) self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertDidNotEmitValue() + self.notifyDelegateOfSelectedShippingLocation.assertDidNotEmitValue() self.shippingLocationButtonTitle.assertValues([]) self.scheduler.advance() - guard let defaultShippingRule = shippingRules.first(where: { $0.location == .canada }) else { - XCTFail("Default shipping rule should exist") - return - } - - self.adaptableStackViewIsHidden.assertValues([true]) - self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertValues([defaultShippingRule]) + self.adaptableStackViewIsHidden.assertValues([true, false]) + self.shimmerLoadingViewIsHidden.assertValues([false, true]) + self.notifyDelegateOfSelectedShippingLocation.assertValues( + [Location.canada], + "Because the backing was made with the location Canada, the selected shipping location should default to Canada." + ) self.shippingLocationButtonTitle.assertValues(["Canada"]) self.shippingRulesError.assertDidNotEmitValue() self.scheduler.advance(by: .seconds(1)) - - self.adaptableStackViewIsHidden.assertValues([true, false]) - self.shimmerLoadingViewIsHidden.assertValues([false, true]) } } func testShippingLocationFromBackingIsDefault_ProjectCountryEqualsProjectCurrencyCountry_US_NewRewardDoesNotHaveSelectedRule( ) { - let shippingRulesWithoutCanada = shippingRules.filter { $0.location != .canada } - - let mockService = MockService(fetchShippingRulesResult: Result.success(shippingRulesWithoutCanada)) + let shippingDataWithoutCanada = GraphAPI.ShippableLocationsQuery.Data( + shippingCountryLocations: [ + GraphAPI.ShippableLocationsQuery.Data.ShippingCountryLocation( + country: "US", + countryName: "United States", + displayableName: "United States", + id: encodeToBase64("Location-5"), + name: "United States" + ), + GraphAPI.ShippableLocationsQuery.Data.ShippingCountryLocation( + country: "AU", + countryName: "Australia", + displayableName: "Australia", + id: encodeToBase64("Location-8"), + name: "Australia" + ) + ] + ) + + let mockService = MockService(fetchGraphQLResponses: [ + (ShippableLocationsQuery.self, shippingDataWithoutCanada) + ]) let reward = Reward.template |> Reward.lens.shipping.enabled .~ true @@ -373,26 +370,47 @@ final class PledgeShippingLocationViewModelTests: TestCase { self.adaptableStackViewIsHidden.assertValues([true]) self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertDidNotEmitValue() + self.notifyDelegateOfSelectedShippingLocation.assertDidNotEmitValue() self.shippingLocationButtonTitle.assertValues([]) self.scheduler.advance() - guard let defaultShippingRule = shippingRules.first(where: { $0.location == .brooklyn }) else { - XCTFail("Default shipping rule should exist") - return - } - - self.adaptableStackViewIsHidden.assertValues([true]) - self.shimmerLoadingViewIsHidden.assertValues([false]) - self.notifyDelegateOfSelectedShippingRule.assertValues([defaultShippingRule]) - self.shippingLocationButtonTitle.assertValues(["Brooklyn, NY"]) - self.shippingRulesError.assertDidNotEmitValue() - - self.scheduler.advance(by: .seconds(1)) - self.adaptableStackViewIsHidden.assertValues([true, false]) self.shimmerLoadingViewIsHidden.assertValues([false, true]) + self.notifyDelegateOfSelectedShippingLocation.assertValues( + [Location.usa], + "Because Canada is no longer a valid shipping destination, even though the backing was sent to Canada, the shipping location should default to the user's default location." + ) + self.shippingLocationButtonTitle.assertValues(["United States"]) + self.shippingRulesError.assertDidNotEmitValue() } } } + +private let shippingLocations: [Location] = Location.locations(from: shippingLocationsData) + +private let shippingLocationsData = GraphAPI.ShippableLocationsQuery.Data( + shippingCountryLocations: [ + GraphAPI.ShippableLocationsQuery.Data.ShippingCountryLocation( + country: "US", + countryName: "United States", + displayableName: "United States", + id: encodeToBase64("Location-5"), + name: "United States" + ), + GraphAPI.ShippableLocationsQuery.Data.ShippingCountryLocation( + country: "CA", + countryName: "Canada", + displayableName: "Canada", + id: encodeToBase64("Location-6"), + name: "Canada" + ), + GraphAPI.ShippableLocationsQuery.Data.ShippingCountryLocation( + country: "AU", + countryName: "Australia", + displayableName: "Australia", + id: encodeToBase64("Location-8"), + name: "Australia" + ) + ] +) diff --git a/Library/ViewModels/RewardsCollectionViewModelTests.swift b/Library/ViewModels/RewardsCollectionViewModelTests.swift index dc4c08f305..51669a1da8 100644 --- a/Library/ViewModels/RewardsCollectionViewModelTests.swift +++ b/Library/ViewModels/RewardsCollectionViewModelTests.swift @@ -10,6 +10,7 @@ final class RewardsCollectionViewModelTests: TestCase { private let reloadDataWithValues = TestObserver<[Reward], Never>() private let scrollToRewardIndex = TestObserver() private let goToCustomizeYourReward = TestObserver() + private let shippingLocationViewHidden = TestObserver() private let vm = RewardsCollectionViewModel() @@ -22,6 +23,8 @@ final class RewardsCollectionViewModelTests: TestCase { self.vm.outputs.scrollToRewardIndexPath.map { $0.row }.observe(self.scrollToRewardIndex.observer) self.vm.outputs.goToCustomizeYourReward.observe(self.goToCustomizeYourReward.observer) + + self.vm.outputs.shippingLocationViewHidden.observe(self.shippingLocationViewHidden.observer) } func testRewardsOrdered() { @@ -203,6 +206,8 @@ final class RewardsCollectionViewModelTests: TestCase { self.vm.viewDidLoad() self.vm.viewDidLayoutSubviews() + self.shippingLocationViewHidden.assertLastValue(false) + self.vm.inputs.shippingLocationSelected(location2) self.vm.inputs.rewardSelected(with: reward.id) @@ -249,6 +254,8 @@ final class RewardsCollectionViewModelTests: TestCase { self.vm.viewDidLoad() self.vm.viewDidLayoutSubviews() + self.shippingLocationViewHidden.assertLastValue(true) + self.vm.inputs.shippingLocationSelected(location1) self.vm.inputs.rewardSelected(with: reward.id) @@ -300,12 +307,14 @@ final class RewardsCollectionViewModelTests: TestCase { |> Project.lens.rewardData.rewards .~ rewards self.vm.configure(with: testProject, refTag: nil, context: .createPledge, secretRewardToken: nil) - // Because the shipping location is powered by the available shipping rules, - // if there are no shippable rewards, the location element may be hidden and output `nil` once. self.vm.inputs.shippingLocationSelected(nil) self.vm.viewDidLoad() self.vm.viewDidLayoutSubviews() + // Because the shipping location is powered by the available shipping rules, + // if there are no shippable rewards, the location element may be hidden and output `nil` once. + self.shippingLocationViewHidden.assertLastValue(true) + self.vm.inputs.rewardSelected(with: digitalReward.id) self.goToCustomizeYourReward.assertDidEmitValue() diff --git a/Library/ViewModels/ShippingRuleCellViewModel.swift b/Library/ViewModels/ShippingRuleCellViewModel.swift deleted file mode 100644 index 57cc98722a..0000000000 --- a/Library/ViewModels/ShippingRuleCellViewModel.swift +++ /dev/null @@ -1,44 +0,0 @@ -import Foundation -import KsApi -import Prelude -import ReactiveExtensions -import ReactiveSwift - -public protocol ShippingRuleCellViewModelInputs { - func configureWith(_ value: ShippingRuleData) -} - -public protocol ShippingRuleCellViewModelOutputs { - var isSelected: Signal { get } - var textLabelText: Signal { get } -} - -public protocol ShippingRuleCellViewModelType { - var inputs: ShippingRuleCellViewModelInputs { get } - var outputs: ShippingRuleCellViewModelOutputs { get } -} - -public final class ShippingRuleCellViewModel: ShippingRuleCellViewModelType, - ShippingRuleCellViewModelInputs, ShippingRuleCellViewModelOutputs { - public init() { - let data = self.configDataProperty.signal - .skipNil() - - self.isSelected = data - .map { $0.selectedShippingRule == $0.shippingRule } - - self.textLabelText = data - .map(\.shippingRule.location.localizedName) - } - - private let configDataProperty = MutableProperty(nil) - public func configureWith(_ value: ShippingRuleData) { - self.configDataProperty.value = value - } - - public let isSelected: Signal - public let textLabelText: Signal - - public var inputs: ShippingRuleCellViewModelInputs { return self } - public var outputs: ShippingRuleCellViewModelOutputs { return self } -} diff --git a/Library/ViewModels/ShippingRuleCellViewModelTests.swift b/Library/ViewModels/ShippingRuleCellViewModelTests.swift deleted file mode 100644 index 3a64c71f8c..0000000000 --- a/Library/ViewModels/ShippingRuleCellViewModelTests.swift +++ /dev/null @@ -1,54 +0,0 @@ -import Foundation -@testable import KsApi -@testable import Library -import Prelude -import ReactiveExtensions_TestHelpers - -final class ShippingRuleCellViewModelTests: TestCase { - private let vm: ShippingRuleCellViewModelType = ShippingRuleCellViewModel() - - private let isSelected = TestObserver() - private let textLabelText = TestObserver() - - override func setUp() { - super.setUp() - - self.vm.outputs.isSelected.observe(self.isSelected.observer) - self.vm.outputs.textLabelText.observe(self.textLabelText.observer) - } - - func testIsSelected_False() { - let selectedShippingRule: ShippingRule = .template - |> ShippingRule.lens.location .~ Location.canada - let data = ShippingRuleData( - selectedShippingRule: selectedShippingRule, - shippingRule: .template - ) - - self.vm.inputs.configureWith(data) - - self.isSelected.assertValues([false]) - } - - func testIsSelected_True() { - let data = ShippingRuleData( - selectedShippingRule: .template, - shippingRule: .template - ) - - self.vm.inputs.configureWith(data) - - self.isSelected.assertValues([true]) - } - - func testTextLabelText() { - let data = ShippingRuleData( - selectedShippingRule: .template, - shippingRule: .template - ) - - self.vm.inputs.configureWith(data) - - self.textLabelText.assertValues(["Brooklyn, NY"]) - } -} diff --git a/graphql/graphql-schema.json b/graphql/graphql-schema.json index c7471d460b..484c95ebe9 100644 --- a/graphql/graphql-schema.json +++ b/graphql/graphql-schema.json @@ -1 +1 @@ -{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":"The query root of the Kickstarter GraphQL interface.","fields":[{"name":"backerReportSavedSearchSegments","description":"Fetches all saved searches user in provided origin","args":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SavedSearchSegment","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"Fetches a backing given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"captionLanguages","description":"Languages that are eligible for creating captions for video tracks","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CaptionLanguage","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"category","description":"Fetch a project category by param..","args":[{"name":"param","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"checkout","description":"Fetches a checkout given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"claims","description":"Extracts claims from text.","args":[{"name":"text","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"useStanford","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Claims","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentCurrency","description":"The visitor's chosen currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultTaxCategories","description":"Default tax categories managed by Kickstarter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TaxCategory","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"editorial","description":null,"args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"slug","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"revision","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"admin","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"EditorialConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialPage","description":null,"args":[{"name":"slug","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialPage","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialPageForAdmin","description":null,"args":[{"name":"slug","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialPageForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialPages","description":null,"args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"search","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pageType","description":null,"type":{"kind":"ENUM","name":"EditorialPageType","ofType":null},"defaultValue":null},{"name":"sortField","description":null,"type":{"kind":"ENUM","name":"EditorialPageSortField","ofType":null},"defaultValue":null},{"name":"sortDirection","description":null,"type":{"kind":"ENUM","name":"EditorialPageSortDirection","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialPageForAdminConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialRevision","description":null,"args":[{"name":"uuid","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialRevision","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialRevisionForAdmin","description":null,"args":[{"name":"uuid","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentAddress","description":"Fetches a address given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fundingCurrencies","description":"Currencies a creator can choose between for collecting pledges on a project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FundingCurrency","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"inspectUser","description":"A user you're inspecting","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"Fetches an item given its relay id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ksrFact","description":"Get a kickstarter fact","args":[],"type":{"kind":"OBJECT","name":"KsrFact","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":"Searches locations.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"term","description":"Location search term.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"assignable","description":"Only return locations assignable (to a Project or User).","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"searchable","description":"Only return locations for searching Projects.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"lat","description":"Latitude of the location.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"long","description":"Longitude of the location.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"radius","description":"Maximum distance in kilometers from the given coordinates.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"useSessionLocation","description":"Use the session location to search for locations.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filterByCoordinates","description":"Filter by coordinates.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"discoverable","description":"Filter by discoverable.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LocationsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"me","description":"You.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"Fetches an order given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"orderEdit","description":"Fetches an order edit given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEdit","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"photoForEditor","description":null,"args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManagerOptOutReasons","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptOutReason","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeProjectsOverview","description":"Provides an overview of pledge projects","args":[{"name":"tierTypes","description":"tier types to include in response","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PledgeProjectsOverviewSort","ofType":null}}},"defaultValue":null},{"name":"sort","description":"Sort option as a string.","type":{"kind":"ENUM","name":"BackingsDashboardSortOptions","ofType":null},"defaultValue":"RELEVANCY"},{"name":"filters","description":"All filter criteria for pledge projects.","type":{"kind":"INPUT_OBJECT","name":"PledgeProjectsOverviewFilterInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PledgeProjectsOverview","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":"Fetches a post given its ID.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Fetches a project given its slug or pid.","args":[{"name":"slug","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pid","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectInvestigations","description":null,"args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"projectName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"reportStatuses","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"TaskState","ofType":null}}},"defaultValue":null},{"name":"reportCategories","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"TaskProjectReportCategory","ofType":null}}},"defaultValue":null},{"name":"projectState","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ProjectState","ofType":null}}},"defaultValue":null},{"name":"creatorHrcTier","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreatorHrcStatusTier","ofType":null}}},"defaultValue":null},{"name":"projectDeadlineSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"flaggingsCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"reportsCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"reportsOpenCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"reportsUnassignedCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"zendeskTicketsCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"openZendeskTicketsCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"seed","description":"Seed for ordering the projects","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectInvestigationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"Get some projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"backed","description":"Get projects backed by the current user.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"collaborated","description":"Get projects where the current user is a collaborator.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"categoryId","description":"Get projects in only this category.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created","description":"Get projects created by the current user.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"following","description":"social (backed by people I'm following).","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"goal","description":"Get projects with a USD goal amount in this bucket.","type":{"kind":"ENUM","name":"GoalBuckets","ofType":null},"defaultValue":null},{"name":"locationId","description":"Get projects from this location.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"pledged","description":"Get projects with a USD pledged amount in this bucket.","type":{"kind":"ENUM","name":"PledgedBuckets","ofType":null},"defaultValue":null},{"name":"raised","description":"Get projects with a raised percent in this bucket.","type":{"kind":"ENUM","name":"RaisedBuckets","ofType":null},"defaultValue":null},{"name":"recommended","description":"Get projects recommended for the current user.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"recommendationsModels","description":"The recommendations models to use","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RecommendationsModel","ofType":null}}},"defaultValue":null},{"name":"recommendationsSource","description":"The source for recommendations.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RecommendationsSource","ofType":null}}},"defaultValue":null},{"name":"seed","description":"Seed for ordering the projects","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"similarToPid","description":"Find projects similar to the given project by pid.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"similarTo","description":"Find projects similar to the given project term.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"sort","description":"The sort order for returned projects.","type":{"kind":"ENUM","name":"ProjectSort","ofType":null},"defaultValue":null},{"name":"staffPicks","description":"Get project selected as staff picks.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"starred","description":"Get projects starred by the current user.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"state","description":"Get projects with this state.","type":{"kind":"ENUM","name":"PublicProjectState","ofType":null},"defaultValue":null},{"name":"tagId","description":"Get projects with this tag.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"term","description":"Project search term.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"excludePids","description":"A list of pids corresponding to projects to be excluded from the results","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null},{"name":"deadlineAfter","description":"Get projects with deadlines after this date","type":{"kind":"SCALAR","name":"DateTime","ofType":null},"defaultValue":null},{"name":"deadlineBefore","description":"Get projects with deadlines before this date","type":{"kind":"SCALAR","name":"DateTime","ofType":null},"defaultValue":null},{"name":"lat","description":"Latitude of the location.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"long","description":"Longitude of the location.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"radius","description":"Maximum distance in kilometers from the given coordinates.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"useSessionLocation","description":"Use the session location to search for locations.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filterByCoordinates","description":"Filter by coordinates.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectsConnectionWithTotalCount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"quizProjects","description":"Editorialized quiz projects for the taste profile quiz.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"excludeQuizProjectIds","description":"Exclude certain quiz projects from the results","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"QuizProjectsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refund","description":"Fetches a refund given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Refund","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckout","description":"Fetches a refund checkout given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RefundCheckout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"regionalAuthorities","description":"Regional tax authorities","args":[{"name":"country","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":null,"args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rootCategories","description":"Root project categories.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Category","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingCountryLocations","description":"Country locations for shipping rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRegionalLocations","description":"Regional locations for shipping rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRoot","description":"Root location for shipping rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"supportedCountries","description":"Countries that can launch projects.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Country","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"Tags.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"scope","description":"Scoped to a provided scope","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"TagScope","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TagsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"trackBackgroundJobProgress","description":null,"args":[{"name":"jobName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackgroundJobProgress","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":"Fetches a project update given its ID.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FreeformPost","ofType":null},"isDeprecated":true,"deprecationReason":"Use post field instead"},{"name":"uploadLimit","description":"The maximum file size of an upload by type.","args":[{"name":"filetype","description":"The type of file we are checking the upload limit of.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UploadLimitFiletype","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UploadLimit","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usdType","description":"How USD currencies should be rendered, based on user's location","args":[],"type":{"kind":"ENUM","name":"UsdType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validateDigitalResourceCsv","description":"Validates a digital resource CSV file","args":[{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"searchQuery","description":null,"type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ValidateDigitalResource","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"visibleCountries","description":"Countries that are visible to the current user. This may include countries that cannot launch projects.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Country","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Address","ofType":null},{"kind":"OBJECT","name":"AdjustmentSummary","ofType":null},{"kind":"OBJECT","name":"AiDisclosure","ofType":null},{"kind":"OBJECT","name":"AttachedAudio","ofType":null},{"kind":"OBJECT","name":"AttachedVideo","ofType":null},{"kind":"OBJECT","name":"Backing","ofType":null},{"kind":"OBJECT","name":"Category","ofType":null},{"kind":"OBJECT","name":"Checkout","ofType":null},{"kind":"OBJECT","name":"Comment","ofType":null},{"kind":"OBJECT","name":"Conversation","ofType":null},{"kind":"OBJECT","name":"CreatorInterview","ofType":null},{"kind":"OBJECT","name":"CreatorPrompt","ofType":null},{"kind":"OBJECT","name":"CuratedPage","ofType":null},{"kind":"OBJECT","name":"Flagging","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null},{"kind":"OBJECT","name":"InterviewAnswer","ofType":null},{"kind":"OBJECT","name":"InterviewQuestion","ofType":null},{"kind":"OBJECT","name":"Location","ofType":null},{"kind":"OBJECT","name":"Message","ofType":null},{"kind":"OBJECT","name":"Order","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Photo","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ProjectProfile","ofType":null},{"kind":"OBJECT","name":"Refund","ofType":null},{"kind":"OBJECT","name":"Reward","ofType":null},{"kind":"OBJECT","name":"RewardItem","ofType":null},{"kind":"OBJECT","name":"SavedSearchSegment","ofType":null},{"kind":"OBJECT","name":"ShippingRule","ofType":null},{"kind":"OBJECT","name":"Survey","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null},{"kind":"OBJECT","name":"User","ofType":null},{"kind":"OBJECT","name":"UserUrl","ofType":null},{"kind":"OBJECT","name":"Video","ofType":null},{"kind":"OBJECT","name":"VideoTrack","ofType":null},{"kind":"OBJECT","name":"VideoTrackCue","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"VXNlci0xMA==\"`) or integer (such as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"User","description":"A member of Kickstarter.","fields":[{"name":"activeBackings","description":"A user's active backings of live projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserBackingsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"activeProjects","description":"Projects a user has created or is an active collaborator on","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserActiveProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addresses","description":"This user's saved shipping addresses","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AddressConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allowsFollows","description":"Indicates whether or not the user allows other Kickstarter users to follow them","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backedProjects","description":"Projects a user has backed.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserBackedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backedProjectsWithDummy","description":"Projects a user has backed, including finalized dummy backings","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserBackedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingActionCount","description":"Count of pledges with pending action","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backings","description":"A user's backings.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"status","description":"Filter backings to only those with this status","type":{"kind":"ENUM","name":"BackingState","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserBackingsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingsCount","description":"Number of backings for this user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"badges","description":"List of names of the badges applied to a user","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"biography","description":"A description of the user's background.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"blockedUsers","description":"List of users blocked by current user","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"canCurate","description":"Whether or not the user can curate pages","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeeConfirmSignalModal","description":"Whether user can see the confirmation modal that appears after the user likes or dislike a project for the first time","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeeConfirmWatchModal","description":"Whether user can see the confirmation modal that appears after the user watches a project for the first time","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeePylToast","description":"Whether user can see PYL toast notification","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeeRewardImagesToast","description":"Whether user can see the reward images toast notification that appears on build pages","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeeTasteProfileToast","description":"Whether user can see the taste profile toast notification that appears on the thanks page","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"chosenCurrency","description":"The user's chosen currency","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"conversations","description":"Conversations the user had","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"mailbox","description":"The mailbox","type":{"kind":"ENUM","name":"MailboxType","ofType":null},"defaultValue":null},{"name":"project_id","description":"The project id","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserConversationsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdProjects","description":"Projects a user has created.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Column to order the list of projects by","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"order","description":"Order in ascending or descending order","type":{"kind":"ENUM","name":"OrderDirection","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserCreatedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"curatedPages","description":"Pages curated by the user","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserCuratedPagesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"digitalAccessResources","description":"Digital Access Resources provided by a creator to fulfill digital rewards","args":[{"name":"pid","description":"The project for which the digital reward was provided","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DigitalAccessResource","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"A user's email address.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enabledFeatures","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Feature","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"followers","description":"Users following a user.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserFollowersConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"following","description":"Users a user is following.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserFollowingConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillingProjects","description":"Projects a user has launched that are successful,\n but have not completed fulfillment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasConfirmedDisconnectRequest","description":"Whether or not the user has confirmed Apple Id disconnect request via email auth token.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasExpiredDisconnectToken","description":"Whether or not the user's Apple Id disonnect token has expired.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasImage","description":"If the user has uploaded an avatar.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPassword","description":"Whether or not the user has a password.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasPendingDisconnectRequest","description":"Whether or not the user has a pending Apple Id disconnect request.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasSlug","description":"Whether a user has their slug set.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasUnreadMessages","description":"Whether or not a user has unread messages.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasUnseenActivity","description":"Whether or not a user has unseen activity.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasUnseenSavedProjectsActivity","description":"Whether or not a user has unseen saved projects activity.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"highestProjectSentiment","description":"The highest sentiment for successful projects for a user","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"The user's avatar.","args":[{"name":"blur","description":"Whether or not to blur the image.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"width","description":"The width of the image in pixels.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"invitedProjects","description":"Projects a user has been invited to collaborate on","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserInvitedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isAdvisoryCouncilAlum","description":"Whether the user has been on our advisory council","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isAdvisoryCouncilMember","description":"Whether the user is currently on our advisory council","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isAppleConnected","description":"Whether or not the user has authenticated with Apple.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isBackerFavorite","description":"Whether the user (as a creator) is a Backer Favorite","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isBlocked","description":"Is user blocked by current user","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isCreator","description":"Whether a user is a creator of any project","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeliverable","description":"Whether a user's email address is deliverable","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isEmailVerified","description":"Whether or not the user's email is verified.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isFacebookConnected","description":"Whether or not the user is connected to Facebook.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isFollowing","description":"Whether or not you are following the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isGhosting","description":"Whether a KSR admin is ghosting as another user","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isKsrAdmin","description":"Whether or not you are a KSR admin.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isRegistered","description":"Whether the user is registered","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSepaEligible","description":"Whether the user can create SEPA account payment sources","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSlugValid","description":"Whether a user's entered slug is valid.","args":[{"name":"slug","description":"The user's entered slug.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Validation","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSocializing","description":"Whether or not the user is either Facebook connected or has follows/followings.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isSuperbacker","description":"Whether the user is a superbacker","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"joinedOn","description":"The timestamp of when the user joined Kickstarter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastLogin","description":"The last time a user logged in, time since epoch","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latestBackerFavoriteProject","description":"The most recent successful project that has a positive sentiment and a qualifying backer coverage rate","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"launchedProjects","description":"Projects a user has launched.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"excludePids","description":"A list of pids corresponding to projects to be excluded from the results","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null},{"name":"orderBy","description":"Column to order the list of projects by","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"order","description":"Order in ascending or descending order","type":{"kind":"ENUM","name":"OrderDirection","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectsConnectionWithTotalCount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"Where the user is based.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"membershipProjects","description":"Projects the user has collaborated on.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"MembershipProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The user's provided name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"needsFreshFacebookToken","description":"Does the user to refresh their facebook token?","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"newsletterSubscriptions","description":"Which newsleters are the users subscribed to","args":[],"type":{"kind":"OBJECT","name":"NewsletterSubscriptions","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"notifications","description":"All of a user's notifications","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Notification","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"optedOutOfRecommendations","description":"Is the user opted out from receiving recommendations","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organizations","description":"Organizations a user is a member of","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Filter organizations by membership state.","type":{"kind":"ENUM","name":"OrganizationMembershipState","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserOrganizationsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pendingEmail","description":"The user's pending email when changing email or disconnecting from Apple ID","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ppoHasAction","description":"Whether backer has any action in PPO","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectNotifications","description":"A user's project notification settings","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Notification","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"recentSearches","description":"The user's recent searches","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RecentSearch","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"savedProjects","description":"Projects a user has saved.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Filter projects by publically accessible state.","type":{"kind":"ENUM","name":"PublicProjectState","ofType":null},"defaultValue":null},{"name":"deadlineAfter","description":"Get saved projects with deadlines after this date","type":{"kind":"SCALAR","name":"DateTime","ofType":null},"defaultValue":null},{"name":"deadlineBefore","description":"Get saved projects with deadlines before this date","type":{"kind":"SCALAR","name":"DateTime","ofType":null},"defaultValue":null},{"name":"upcoming","description":"Get saved projects that are upcoming","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"launched","description":"Get saved projects that have launched","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserSavedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"showPublicProfile","description":"Is the user's profile public","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The user's slug.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"storedBankAccounts","description":"SEPA accounts stored for this user.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"includeExpired","description":"Should expired accounts be included.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BankAccountConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"storedCards","description":"Stored Cards","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserCreditCardTypeConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"successfulBackings","description":"A user's backings of successful projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserBackingsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"successfulProjects","description":"Projects a user has launched that are successful.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectsConnectionWithTotalCount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"surveyResponses","description":"This user's survey responses","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"answered","description":"Filter by projects that have or have not been answered.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SurveyResponsesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalBackersAcrossProjects","description":"The total number of backers across all the user's projects","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalProjectsWeLove","description":"The total number of projects the user has created that are staff picked","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"uid","description":"A user's uid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unsuccessfulBackings","description":"A user's backings that are cancelled or for unsuccessful projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserBackingsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A URL to the user's profile.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userRestrictions","description":"Details about a user's restrictions","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserRestriction","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"vatNumbers","description":"List of VAT ids used by the user","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"websites","description":"A user's websites","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserUrl","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"Feature","description":"The list of available public features","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"device_components","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"show_posts_feed","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_crashlytics","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_mixpanel","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_new_relic","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_hockey_app","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_koala","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_i18n","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_tappable_category_location","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_favorite_categories","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_wh_tout","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_qualtrics","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_native_checkout","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_native_checkout_pledge_view","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_live_streams","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_live_stream_discovery","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_live_stream_chat","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_scroll_output_observe_for_ui","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_backer_dashboard","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_email_verification_flow","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_email_verification_skip","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_segment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_braze","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"android_segment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"android_braze","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"native_creator_breakdown_chart","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"identity_verification_project_overview","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"message_archiving","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"message_spam","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"emoji_locale","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"default_to_campaign_on_mobile","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pinned_posts_on_feed","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"image_uploader_alt_text","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"rich_text_embedifier","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"admin_checkout_debugger","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"accounts_upgrade","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ksr10_build_overview","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"me_generative_art","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_build_rewards_explorer","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_build_zendesk","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_build_milestones","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"user_menu_draft_project","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"make_100_2020","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"funding_sheet","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"qualtrics","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"track_define_namespace","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"how_it_works","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"disable_manual_create_stripe_elements_postal_code","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_update_requests","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_header_media_carousel_hero","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"featured_project_mobile_optimizations","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IBAN_flexibility","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"inside_voices_footer","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"stacked_recs_on_mobile","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_prelaunch_summaries","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ca_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ch_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dk_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"no_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pl_usd_currency_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"sg_usd_currency_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"se_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"datalake_fe_events","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_demographics_survey","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"save_project_experiment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"segment_tracking_events","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"segment_hide_project_deadline_property","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"web_error_on_retry_of_failed_3ds_backing","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"hide_facebook_login_button_2022","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_onboarding_flow_2021","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"updated_risks_flow","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"payment_element_project_build_2022","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"hk_bank_account_holder_name","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_osat_survey_2022","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"uk_created_projects_accept_usd_currency","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"enable_spotlight_bg_image","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ecovadis_component_2023","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"web_braze","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ckeditor_project_updates","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"payments_stripe_link_on_checkout","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"address_collection_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"backer_report_update_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"delay_backer_trust_module_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"reset_backer_survey_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_projects_overview_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_projects_overview_ios_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prelaunch_story_editor","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prelaunch_story_exception","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_nav_refresh","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"sku_editing_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"superbacker_progress","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"backers_can_choose_plot_v1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"sepa_debit_payment_element","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"trust_and_safety_project_banner","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"notification_banner_update_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"react_backed_projects","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"copy_addons","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KDS_messages_app","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KDS_messages_app_backer_filter","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"discover_ui_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_management_reward_setup","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_experience_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"backings_dash_v2_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"featured_rewards_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_tab_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"show_creative_download_2024_report_in_nav","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"recent_searches_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_classifiers_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_over_time_ga_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_over_time_monthly_cadence_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"remove_event_sourcing_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"digital_rewards_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"digital_rewards__upload_button_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_over_time_edit_pledge_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_over_time_mid_plot_refunds_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"eufymake_backer_report","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"multi_vat_ids_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"shopify_sync_integration_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_tax_reporting_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"allow_survey_response_edits_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"shopify_kickoff_sync_job_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"tax_category_improvements","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prelaunch_updates","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_opt_out_feedback_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"include_canada_item_taxes_in_price","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"allow_editing_shipping_rates_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pm_backer_preview_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_and_order_combined_refund_charge_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"include_uk_vat_in_item_prices","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"include_eu_vat_in_item_prices","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_manager_eligibility_questionnaire_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pm_order_editing_2025","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"DateTime","description":"Epoch time stamp.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserUrl","description":"A user's websites","fields":[{"name":"domain","description":"The domain of a user's website","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The URL of a user's website","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Location","description":"A location.","fields":[{"name":"country","description":"The country code.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"countryName","description":"The localized country name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"county","description":"The county name or code. Can be null.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"discoverUrl","description":"A URL to a discover page filtered by location","args":[{"name":"ref_tag","description":"The ref tag","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"displayableName","description":"The displayable name. It includes the state code for US cities. ex: 'Seattle, WA'","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRoot","description":"Whether or not this location is the root location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"latitude","description":"The latitude of the location.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"longitude","description":"The longitude of the location.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The localized name","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The state name or code. Can be null.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Float","description":"Represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Validation","description":"Validity and associated messages.","fields":[{"name":"errorTypes","description":"Error keys for validation error, if any","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"messages","description":"Error messages associated with the value","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"valid","description":"Whether a value is valid.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserCreditCardTypeConnection","description":"The connection type for CreditCard.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CreditCardEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CreditCard","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreditCardEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreditCard","description":"A credit card on file.","fields":[{"name":"expirationDate","description":"When the credit card expires.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The card ID","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastFour","description":"The last four digits of the credit card number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lowercaseType","description":"The card type, but in lowercase.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"LowercaseCreditCardTypes","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentType","description":"The card's payment type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardPaymentType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The card's state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stripeCardId","description":"Stripe card id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The card type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardTypes","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Date","description":"ISO Date: YYYY-MM-DD","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CreditCardTypes","description":"Credit card types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AMEX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DISCOVER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JCB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MASTERCARD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VISA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DINERS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UNIONPAY","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"LowercaseCreditCardTypes","description":"Credit card types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"amex","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"discover","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"jcb","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"mastercard","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"visa","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"diners","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"unionpay","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CreditCardPaymentType","description":"Credit card payment types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ANDROID_PAY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"APPLE_PAY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BANK_ACCOUNT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CREDIT_CARD","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CreditCardState","description":"States of Credit Cards","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"UNAUTHORIZED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VERIFYING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INACTIVE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"BankAccountConnection","description":"The connection type for BankAccount.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"BankAccountEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"BankAccount","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BankAccountEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"BankAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BankAccount","description":"A bank account.","fields":[{"name":"bankName","description":"The bank name if available.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastFour","description":"The last four digits of the account number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stripeCardId","description":"The stripe bank account id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserBackedProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":true,"deprecationReason":"Please use backingsCount instead."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":"A project on Kickstarter.","fields":[{"name":"accountInfo","description":"Account information.","args":[],"type":{"kind":"OBJECT","name":"AccountInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"actions","description":"Actions you can currently perform","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectActions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"activeWave","description":"The active checkout_wave, if there is one","args":[],"type":{"kind":"OBJECT","name":"CheckoutWave","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addOns","description":"Backing Add-ons","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"crowdfundingAndPledgeManagement","description":"Retrieves both, pledge redemption and crowdfunding add-ons","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"pledgeManagementOnly","description":"Filters available add ons by pledge redemption only","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"forLocation","description":"Filters available add ons by given location","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"sort","description":"Enables/disables add-ons sort by cost and title, with sorting enabled by default","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectRewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"additionalSubcategory","description":"The project's additional category.","args":[],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addressCollectionEnabled","description":"Whether or not the creator has enabled address collection","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addressCollectionForDigitalReward","description":"Whether or not the creator has enabled address collection for digital reward backers","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"aiDisclosure","description":null,"args":[],"type":{"kind":"OBJECT","name":"AiDisclosure","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allOrdersSyncedWithShopifyAt","description":"When all orders were last synced with Shopify","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"amountCollectedForAddonsUpgradesAndNewBackers","description":"The total amount collected for add-ons, upgrades, and new backers in the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountCollectedForShipping","description":"The total amount collected for shipping in the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"availableBackerEntryPoints","description":"The customer entry point available on this project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PreviewEntryPointEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableCardTypes","description":"Available card types.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardTypes","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableFundingCurrenciesForCountry","description":"A list of currencies that the project's country can use","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"averageSentiment","description":"The average sentiment of the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerAddressLockoutDate","description":"The lockout date for address collection","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerAddressLockoutDatePassed","description":"Whether or not the backer address lockout date has passed.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReport","description":"Returns the backer report in JSON format","args":[{"name":"rewards","description":"Filter by reward IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"addons","description":"Filter by add-on IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterAddons","description":"SQL operator to use for filtering add-ons","type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"items","description":"Filter by item IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterItems","description":"AND the item IDs instead of ORing them","type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"skus","description":"Filter by SKU IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterSkus","description":"AND the item variant IDs instead of ORing them","type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"locations","description":"Filter by backer selected shipping location","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"amountMin","description":"Filter by reward cost minimum","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"amountMax","description":"Filter by reward cost maximum","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pledgedAtMin","description":"Filter by date pledged minimum","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pledgedAtMax","description":"Filter by date pledged maximum","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pmCompletedAtMin","description":"Filter by pledge manager completed at minimum","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pmCompletedAtMax","description":"Filter by pledge manager completed at maximum","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"fulfillmentStatus","description":"Filter by fulfillment status","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"surveyAnswered","description":"Filter by wether the backer has answered the survey","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"sortBy","description":"Sort the backer report by this field","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ascOrDesc","description":"Sort the backer report in ascending or descending order","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"page","description":"Page number for pagination","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"perPage","description":"Number of items per page","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"term","description":"Backer report search term","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"status","description":"Filter by backing status","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pledgeRedemptionState","description":"Filter by pledge redemption state","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"actionsTaken","description":"Filter by actions taken","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pledgeOverTime","description":"Filter by pledge type","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"backerEntryPoint","description":"Filter by backer entry point","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerSurvey","description":"Backer survey for the project","args":[],"type":{"kind":"OBJECT","name":"BackerSurvey","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerSurveyIntro","description":"An optional introduction to the backer survey.","args":[{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backers","description":"Backers of the project","args":[{"name":"limit","description":"Limit the number of backers returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"followed","description":"Limit to backers that the current user is following","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"backersCount","description":"Total backers for the project","args":[{"name":"withNewPmBackers","description":"Whether or not to considere new pm backers in the final count.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backersRemainingForPledgeRedemption","description":"The number of original backers who have yet to go through the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"The current user's backing of this project. Does not include inactive backings.","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingDetailsPageRoute","description":"URL/path for the backing details page","args":[{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Route","ofType":null}},"defaultValue":null},{"name":"tab","description":null,"type":{"kind":"ENUM","name":"BackingDetailsPageTab","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canComment","description":"True if the current user can comment (considers restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canCommentSansRestrictions","description":"True if the current user can comment (does not consider restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canNewUserEnterPm","description":"Can new user enter pledge manager checkout?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canOptInToPledgeManager","description":"Whether or not the project can be opted into pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canPrelaunchEarly","description":"Whether the project is eligible for early prelaunch","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserEditProjectStatus","description":"Whether user is allowed to edit project status","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserRequestUpdate","description":"Whether a user can request an update about this project from the Creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserViewProjectStatusFeedback","description":"Whether user is a backer of the project or not","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canceledAt","description":"If the project is in a canceled state, when was it canceled?","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"category","description":"The project's category.","args":[],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"changeMethodProjectPledgePath","description":"The path to change the current user's payment method for their pledge to this project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"chargeShippingInPledgeManager","description":"Will this project be using a pledge manager to charge shipping?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cleanupErroredPledgesDeadline","description":"The date after which errored pledges should be dropped","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"collaboratorPermissions","description":"Permissions that can be assigned to a collaborator on a project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorPermission","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"collaborators","description":"A project's collaborators.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"withCreator","description":"include creator in list of collaborators","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withInvited","description":"include both active and invited users in list of collaborators","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectCollaboratorConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":"List of comments on the commentable","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentsCount","description":"Comment count - defaults to root level comments only","args":[{"name":"withReplies","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"completedMilestones","description":"Representation of the Project Milestones","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectMilestone","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedPostLaunchWatchesCount","description":"Number of post-launch watchers who went on to back the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedPreLaunchWatchesCount","description":"Number of pre-launch watchers who went on to back the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedWatchesCount","description":"Number of watchers who went on to back the project.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"country","description":"The project's country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Country","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"countryCode","description":"The project's country.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"isDeprecated":true,"deprecationReason":"Moved to country which returns CountryType."},{"name":"createdAt","description":"When the project was created","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The project's creator.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creatorSharedDrafts","description":"The draft projects that have a share token for the project creator","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectSharedDraft","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorToolsPaths","description":"The paths for the creator tools pages","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatorToolsPaths","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"curatedCollection","description":"The Curated Collection that a project is in e.g. Make 100","args":[],"type":{"kind":"OBJECT","name":"CuratedCollection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":"The project's currency code.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currentAmountPledgedUsd","description":"The current amount pledged in USD","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentBackersCount","description":"Total current backers for the project","args":[{"name":"withNewPmBackers","description":"Whether or not to considere new pm backers in the final count.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deadlineAt","description":"When is the project scheduled to end?","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"defaultFundingCurrencyForCountry","description":"The default currency for the project's country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultPledge","description":"The default no reward pledge amount based on the project's currency.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"A short description of the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"destroyProjectPledgePath","description":"The path to destroy the current user's pledge for this project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"duration","description":"Funding duration in days","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editProjectPledgePath","description":"The path to edit the current user's pledge for this project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environmentalCommitments","description":"The environmental commitments of the project.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentalCommitment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"erroredOrdersCount","description":"The number of orders that errored during sync","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"faqs","description":"List of FAQs of a project","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectFaqConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"finalCollectionDate","description":"The date at which pledge collections will end","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"flagging","description":"A report by the current user for the project.","args":[],"type":{"kind":"OBJECT","name":"Flagging","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"friends","description":"A project's friendly backers.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectBackerFriendsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentModalDismissedAt","description":"When the fulfillment modal was dismissed","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentStatus","description":"Status of fulfillment","args":[],"type":{"kind":"ENUM","name":"FulfillmentStatus","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentStatusUpdatedAt","description":"When the fulfillment status was updated","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fundingRatio","description":"The ratio of funding progress.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Ratio","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fxRate","description":"Exchange rate for the current user's currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"generatedSlug","description":"The project's title converted to a slug.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"goal","description":"The minimum amount to raise for the project to be successful.","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"googleAnalyticsApiSecret","description":"API secret for Google Analytics event","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"googleAnalyticsTrackingId","description":"The Google Analytics tracking ID.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasAnsweredEligibilityQuestionnaire","description":"Whether the project creator has answered the eligibility questionnaire","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasLaunchedPledgeManager","description":"Whether the project has launched its pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPledgeOverTimeConfig","description":"Does this project have any pledge over time config record?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPostCampaignConfig","description":"Does this project have any post-campaign config?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasRewardImages","description":"Whether or not the project has reward images","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasShopifyShop","description":"Whether the project has successfully linked a Shopify shop","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasSlug","description":"Whether a project has its slug set.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasSuccessfulFundsCapturePayout","description":"If the payout for the funds capture has happened","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasSupportingMaterials","description":"Whether or not the project has supporting materials (Prototype Gallery)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasUnresolvedBackings","description":"Whether the project still has backings in \"pledged\" or \"errored\" state","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasUpgradeableRewards","description":"Whether or not the project has upgradeable rewards configured","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"image","description":"The project's primary image.","args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"A read-only representation of the image (complete with fallback default image)","args":[{"name":"blur","description":"Whether or not to blur the image.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"width","description":"The width of the image in pixels.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"importIntoEuRequiredCountriesForVatIds","description":"The countries that the project ships to in the EU","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"importsToEu","description":"Whether the project has stock locations outside the EU that ship to the EU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"importsToUk","description":"Whether the project has stock locations outside the UK that ship to the UK","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isApproved","description":"Is the project's submission state accepted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDisliked","description":"Has the current user disliked this project?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isForwardFundTagged","description":"Is the project tagged with one of the Forward Fund tags?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isInPostCampaignPledgingPhase","description":"Is this project currently accepting post-campaign pledges?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isLaunched","description":"The project has launched","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isLiked","description":"Has the current user liked this project?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPledgeOverTimeAllowed","description":"Whether a project is enrolled in plot","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isProjectOfTheDay","description":"Whether or not this is a Project of the Day.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isProjectWeLove","description":"Whether or not this is a Kickstarter-featured project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSharingProjectBudget","description":"Whether the project is sharing it's budgeting information with the everyone","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isShopifyShopSyncing","description":"Whether the Shopify shop is actively syncing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isUserCreator","description":"Whether current user is creator of current project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isWatchable","description":"Whether a not the project can be watched.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isWatched","description":"Is the current user watching this project?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemVariants","description":"Item variants associated with the project","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SkuCount","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"Items available through the project's backer rewards.","args":[{"name":"excludeItemsWithoutRewards","description":"Whether to exclude the items that are not attached to any reward or addon.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUploadedVideo","description":"A project's last uploaded video, if it's processing, or the current project video.","args":[],"type":{"kind":"OBJECT","name":"Video","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"lastWave","description":"The last checkout_wave, if there is one","args":[],"type":{"kind":"OBJECT","name":"CheckoutWave","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgeBackersCount","description":"Total backers for the project during late pledge phase","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgePlannedEndDate","description":"The datetime at which the last available time-limited reward will end, if all the rewards are time-limited","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgePledged","description":"How much money is pledged to the project during late pledge phase.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgesEndedAt","description":"The datetime at which post-campaign pledging will end. This can be set to a future date if we have automatically scheduled an end to late pledging.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latestSentimentStats","description":"The tallies from the sentiment from each backers latest feedback","args":[],"type":{"kind":"OBJECT","name":"ProjectSentimentStats","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"launchedAt","description":"When the project launched","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"Where the project is based.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locationVatNumbers","description":"Possible VAT numbers the project could have, by location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"LocationVatNumber","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"mappingsCreatedAt","description":"When the sku mappings were finalzied","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"maxPledge","description":"The max pledge amount for a single reward tier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"meetsPledgeManagerUsageCriteria","description":"Whether the project meets the criteria to use pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"metKycRequirements","description":"Whether or not the project has met KYC requirement","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"metaCapiAccessToken","description":"Access token for Meta Conversion API","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"metaPixelId","description":"The unique identifier for the project's Meta Pixel ID","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"milestoneCategories","description":"List of milestones available to project, empty array if project has no possible milestones","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MilestoneCategory","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"minPledge","description":"The min pledge amount for a single reward tier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mostRecentShopifySyncAt","description":"When the most recent sync with Shopify occurred","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The project's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"newBackersCount","description":"The number of new backers who have gone through the pledge manager","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"newBackersEnabled","description":"Whether the project has been enabled to allow new backers into pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"noVatCollection","description":"Whether the project's shipping rules designate no vat collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onBehalfOf","description":"A Stripe account identifier","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order for the logged in user associated with the project","args":[],"type":{"kind":"OBJECT","name":"Order","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentPlan","description":"Build a payment plan given a project id and amount","args":[{"name":"amount","description":"Amount in project funding currency, dollars-and-cents equivalent format","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PaymentPlan","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":"Payment source on creator's account used to issue refunds.","args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"percentFunded","description":"What percent the project has towards meeting its funding goal.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pid","description":"The project's pid.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManager","description":"The project's pledge manager","args":[],"type":{"kind":"OBJECT","name":"PledgeManager","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeCollectionPlanChargeExplanation","description":"Backer-facing summary of when the incremental charges will occur","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeCollectionPlanChargedAsNPayments","description":"Quick summary of the amount of increments pledges will be spread over","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeCollectionPlanShortPitch","description":"Backer-facing short summary of this project's number of payment increments to split over","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeEnabled","description":"Does this project have Pledge Over Time enabled?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeMinimum","description":"The minimum pledge amount to be eligible for PLOT, localized to the project currency","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeMinimumExplanation","description":"The minimum pledge amount to be eligible for PLOT, localized to the project currency and backer language","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeWarning","description":"Warns the backer that their pledge is no longer eligible for Pledge Over Time","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeWarningExplanation","description":"Warns the backer that their pledge is no longer eligible for Pledge Over Time with detail","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledged","description":"How much money is pledged to the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgesRedeemedPercentage","description":"The percentage of original pledges that have been redeemed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postCampaignPledgingEnabled","description":"Is this project configured for post-campaign pledges?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postLaunchWatchesCount","description":"Number of watchers from post-launch","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"posts","description":"Project updates.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Scoped to draft or published posts","type":{"kind":"ENUM","name":"PostState","ofType":null},"defaultValue":null},{"name":"postType","description":"Scoped to post type: creator_interview or freeform_post","type":{"kind":"ENUM","name":"PostFormat","ofType":null},"defaultValue":null},{"name":"forActivePrompt","description":"Scoped to a creator’s post associated with the active prompt","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PostConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"preLaunchWatchesCount","description":"Number of watchers from pre-launch","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchActivated","description":"Whether a project has activated prelaunch (can return true if project has been launched)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchIsActive","description":"Whether a project is currently in active prelaunch (returns false if project has been launched)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchStory","description":"The rich text story for a prelaunch campaign.","args":[{"name":"first","description":"The number of visible characters to fetch (does not include HTML markup).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchStoryForEditor","description":"The rich text story for a prelaunch campaign in raw form.","args":[{"name":"first","description":"The number of visible characters to fetch (does not include HTML markup).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchStoryRichText","description":"Return an itemized version of the prelaunch story. This feature is in BETA: types can change anytime!","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RichTextComponent","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"previewUrl","description":"The project's preview url.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"profile","description":"The project's profile.","args":[],"type":{"kind":"OBJECT","name":"ProjectProfile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectNotice","description":"The text of the currently applied project notice, empty if there is no notice","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectOfTheDayAt","description":"When this project was Project of the Day.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectRelayId","description":"The root project id under which the comment is nested","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectShortLink","description":"The project's bitly short URL","args":[{"name":"ref_tag","description":"The ref tag type for the bitly hash","type":{"kind":"ENUM","name":"BitlyHashes","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectStatus","description":"Project's now and next status","args":[],"type":{"kind":"OBJECT","name":"ProjectStatus","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectUsdExchangeRate","description":"Exchange rate to US Dollars (USD) for the project's currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"Survey questions asked of all the project's backers","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"recommendations","description":null,"args":[],"type":{"kind":"OBJECT","name":"Recommendations","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"redemptionPageUrl","description":"URL for redeeming the backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rewards","description":"Project rewards.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"crowdfundingAndPledgeManagement","description":"Retrieves both, pledge redemption and crowdfunding rewards","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"pledgeManagementOnly","description":"Filters available rewards by pledge redemption only","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withActiveBackings","description":"Filters by active backings","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withNewPmBackers","description":"Retrieves rewards considering if the project is currently in PM","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"sort","description":"Sort the rewards by availability and cost","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectRewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"riskQuestions","description":"Risk questions for the project plan.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RiskQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"riskStrategies","description":"The risk mitigation strategies outlined for this project.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RiskStrategy","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"risks","description":"Potential hurdles to project completion.","args":[{"name":"first","description":"The number of characters to fetch.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rootShippingZoneExists","description":"whether project has shipping zone for 'rest of the world' location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sendMetaCapiEvents","description":"Is this project configured so that events should be triggered for Meta's Conversions API?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sendThirdPartyEvents","description":"Is this project configured for third party analytics events?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shipWithinEuRequiredCountriesForVatIds","description":"The EU countries that require a VAT ID for the project to collect VAT","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippableCountries","description":"Shipping destination countries on all rewards on the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingConfig","description":"Details regarding how the project is set up to charge shipping","args":[],"type":{"kind":"OBJECT","name":"ShippingConfig","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingCostsCompleted","description":"Whether or not the project has completed either flat-rate or weight-based shipping costs and setup","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingZones","description":"Shipping zones configured for the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ShippingZone","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shipsWithinEu","description":"Whether the project has stock locations in the EU that ship to the EU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shipsWithinUk","description":"Whether the project has stock locations in the UK that ship to the UK","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shopifySkus","description":"The project's pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ShopifyVariant","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"showCtaToLiveProjects","description":"Whether or not to show ended to live cta","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"showSignalOfFulfillmentModal","description":"Whether or not to show the signal of fulfillment modal","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The project's unique URL identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"spreadsheet","description":"The Google Sheet associated to this project","args":[],"type":{"kind":"OBJECT","name":"Spreadsheet","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The project's current state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ProjectState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stateChangedAt","description":"The last time a project's state changed, time since epoch","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"statsInterval","description":"The initial project stats polling duration in ms","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stockLocations","description":"Locations from which the project fulfills","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StockLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"story","description":"The story behind the project, parsed for presentation.","args":[{"name":"first","description":"The number of visible characters to fetch (does not include HTML markup).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"HTML","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"storyForEditor","description":"The project description without conversion for usage by Rich Text Editors.","args":[{"name":"first","description":"The number of visible characters to fetch (does not include HTML markup).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"HTML","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"storyRichText","description":"Return an itemized version of the story. This feature is in BETA: types can change anytime!","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RichTextComponent","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"storyRteVersion","description":"The Rich Text Editor version that was used to generate the project story","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submission","description":"A project submission.","args":[],"type":{"kind":"OBJECT","name":"Submission","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"syncedOrdersCount","description":"The number of orders synced with Shopify","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"Tags project has been tagged with","args":[{"name":"scope","description":"Scoped to an optionally provided scope","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"TagScope","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Tag","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"targetLaunchDate","description":"The project's target launch date","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"targetLaunchDateUpdatedAt","description":"The time that the project's target launch date was updated","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tariffSurchargesEnabled","description":"Whether tariff surcharges are enabled for the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxCategories","description":"Tax categories configured for the project excluding the non-taxable category","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TaxCategory","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"taxInformationCompletionStatus","description":"Whether or not the project has configured a deposit account address and vat id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PrereqCompletionStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"timeline","description":"The timeline of project events, including updates and milestones.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"withPinnedFirst","description":"Makes any pinned post the first item in the timeline","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectTimelineConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unassignedShippableLocations","description":"Locations (including countries and root) where shipping rates or shipping zones have been configured\n but there is no ship-from location assigned","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A URL to the project's page.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usdExchangeRate","description":"Exchange rate to US Dollars (USD), null for draft projects.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"usedLegacySurveys","description":"Whether or not the project has used legacy surveys.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userFeedback","description":"The feedback the current user has left for the project","args":[{"name":"questionName","description":"Which question to fetch","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectFeedback","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userGroups","description":"User groups associated with the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserGroup","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"userWasRemoved","description":"Was the current user removed from this project?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"verifiedCreatorName","description":"Name of user on verified account","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"verifiedIdentity","description":"Name of user on verified account","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":true,"deprecationReason":"Use verified_creator_name instead"},{"name":"video","description":"A project video.","args":[],"type":{"kind":"OBJECT","name":"Video","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"watchesCount","description":"Number of watchers a project has.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"Commentable","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Commentable","description":"Something that can be commented on","fields":[{"name":"canComment","description":"True if the current user can comment (considers restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canCommentSansRestrictions","description":"True if the current user can comment (does not consider restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserRequestUpdate","description":"Whether a user can request an update about this project from the Creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":"List of comments on the commentable","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentsCount","description":"Comment count - defaults to root level comments only","args":[{"name":"withReplies","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectRelayId","description":"The root project id under which the comment is nested","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"CreatorInterview","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null}]},{"kind":"OBJECT","name":"CommentConnection","description":"The connection type for Comment.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CommentEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Comment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CommentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Comment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Comment","description":"A comment","fields":[{"name":"author","description":"The author of the comment","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"authorBacking","description":"The author's backing information","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"authorBadges","description":"The badges for the comment author","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"CommentBadge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorCanceledPledge","description":"Whether the author has canceled their pledge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The body of the comment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canDelete","description":"Whether the current user can delete the comment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canPin","description":"Whether current user can pin a comment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canReport","description":"Whether current user can report a comment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When was this comment posted","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleted","description":"Whether the comment is deleted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletedAuthor","description":"Whether the comment author is a deleted user and not the creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasFlaggings","description":"Whether a comment has any flaggings","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parentId","description":"The ID of the parent comment","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pinnedAt","description":"When the comment was pinned","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"removedPerGuidelines","description":"Whether the comment author has been removed by kickstarter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"replies","description":"The replies on a comment","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spam","description":"Is this comment spam","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sustained","description":"Whether this comment has been reviewed and sustained by an admin","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CommentBadge","description":"All available comment author badges","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"creator","description":"Indicates the author is a creator","isDeprecated":false,"deprecationReason":null},{"name":"collaborator","description":"Indicates the author is a collaborator","isDeprecated":false,"deprecationReason":null},{"name":"superbacker","description":"Indicates the author is a superbacker","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Backing","description":"A backing","fields":[{"name":"addOns","description":"The add-ons that the backer selected","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardTotalCountConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addOnsWithQuantity","description":"The add-ons that the backer selected","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackingAddon","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"adjustmentSummary","description":"A summary of refunds and removal issued by the creator","args":[],"type":{"kind":"OBJECT","name":"AdjustmentSummary","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allowedCountries","description":"Countries that the backing's reward can be shipped to. If null, the backing's reward can be shipped to any country.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"amount","description":"Total amount pledged by the backer to the project, including shipping.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountDue","description":"The amount due on the backing.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountLessShipping","description":"The amount pledged by the backer, less shipping.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backer","description":"The backer","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerCompleted","description":"If the backer_completed_at is set or not","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerNote","description":"Backer's note regarding their backing","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerSentiment","description":"The sentiment feedback the backer has submitted for the backing, if any","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingDetailsPageRoute","description":"URL/path for the backing details page","args":[{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Route","ofType":null}},"defaultValue":null},{"name":"tab","description":null,"type":{"kind":"ENUM","name":"BackingDetailsPageTab","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backingRewards","description":"The backing rewards on a backing","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackingAddon","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"backingUrl","description":"A link to the backing information","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"bonusAmount","description":"Extra amount the backer pledged on top of the minimum.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cancelable","description":"If the backing can be cancelled","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cart","description":"Contains the backer's item preferences and responses to survey questions","args":[],"type":{"kind":"OBJECT","name":"Cart","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"If `requires_action` is true, `client_secret` should be used to initiate additional client-side authentication steps","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completedAt","description":"When the backing was completed","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completedRefundAttempts","description":"Refund attempts performed by the creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Refund","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"conversation","description":"Message thread between backer and creator","args":[],"type":{"kind":"OBJECT","name":"Conversation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deliveryAddress","description":"The delivery address associated with the backing","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"digitalAccessResources","description":"Digital Access Resources provided by a creator to fulfill digital rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DigitalAccessResource","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"errorReason","description":"The reason for an errored backing","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentStatus","description":"The fulfillment status of a backing.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FulfillmentStatusDisplayOptions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasFlaggings","description":"Whether or not the backing has any open flaggings","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"incremental","description":"If the backing was incremental, ie pledged over time","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isLatePledge","description":"Whether or not the backing is a late pledge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPostCampaign","description":"Is this backing a late pledge or did it occur during the crowdfunding campaign?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"latestSetupIntent","description":"If present, the most recent setup_intent data from Stripe.","args":[],"type":{"kind":"OBJECT","name":"SetupIntent","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"legacySurveyResponseMissing","description":"Whether or not the backing is missing a legacy survey response","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The backing location.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order associated with the backing","args":[],"type":{"kind":"OBJECT","name":"Order","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"originalOrUpgradedReward","description":"The original or upgraded backer reward","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentIncrements","description":"Scheduled incremental payments","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PaymentIncrement","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":"Payment source used on a backing.","args":[],"type":{"kind":"UNION","name":"PaymentSource","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"payoutStarted","description":"If the payout for the backing has happened","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgedOn","description":"When the backing was created","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"processing","description":"Is this pledge processing?","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"redemptionPageUrl","description":"URL for redeeming the backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refunded","description":"If the backing was refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotalOnBackerReward","description":"How much the backer paid on their base reward, after refunds","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"removalRequestIsNonissue","description":"Whether or not a removal request task is marked as nonissue","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"requiresAction","description":"Whether this checkout requires additional client-side authentication steps (e.g. 3DS2) to complete the on-session pledge flow","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The reward the backer is expecting","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardsAmount","description":"Amount pledged for all rewards, the sum off all minimums, excluding shipping","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rosiePledgeAdminTree","description":"Admin tree for the associated Rosie Pledge","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sequence","description":"Sequence of the backing","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingAmount","description":"Shipping amount for the rewards chosen by the backer for their location","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingSummary","description":"A brief description of shipping selections for backing","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"The status of a backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BackingState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"successfulRefunds","description":"Refunds","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"surveyResponses","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SurveyResponse","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"usableBackerAddresses","description":"All of the backer's saved addresses that match the backing country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"Route","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"path","description":"Just the path (does not include the domain)","isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The entire URL (include the domain)","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BackingDetailsPageTab","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"details","description":"Details","isDeprecated":false,"deprecationReason":null},{"name":"survey_responses","description":"Survey responses","isDeprecated":false,"deprecationReason":null},{"name":"messages","description":"Messages","isDeprecated":false,"deprecationReason":null},{"name":"pledge_redemption","description":"Pledge redemption","isDeprecated":false,"deprecationReason":null},{"name":"digital_rewards","description":"Digital rewards","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Money","description":"A monetary amount and its corresponding currency.","fields":[{"name":"amount","description":"Floating-point numeric value of monetary amount represented as a string","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":"Currency of the monetary amount","args":[],"type":{"kind":"ENUM","name":"CurrencyCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"displaySymbol","description":"Symbol of the currency in which the monetary amount appears","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"symbol","description":"Symbol of the currency in which the monetary amount appears","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CurrencyCode","description":"A list of Iso4217–supported currencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AUD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CAD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CHF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DKK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EUR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GBP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HKD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JPY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MXN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NOK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NZD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PLN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SEK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SGD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USD","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Address","description":"A user's shipping address","fields":[{"name":"addressLine1","description":"Address line 1 (Street address/PO Box/Company name)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"addressLine2","description":"Address line 2 (Apartment/Suite/Unit/Building)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"city","description":"City","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"countryCode","description":"2-letter country code","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"countryName","description":"The name of the country associated with the country code","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nonUpdatableSurveyResponsesCount","description":"The number of non updatable survey responses to this address","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"phoneNumber","description":"Recipient's phone number","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postalCode","description":"ZIP or postal code","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"primary","description":"Is this the user's primary address?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectsWithUpdatableSurveyResponses","description":"The title of projects with updatable survey responses","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"projectsWithoutUpdatableSurveyResponses","description":"The title of projects with non updatable survey responses","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"recipientName","description":"Address recipient name","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"referenceName","description":"Address reference or nickname","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"region","description":"State/County/Province/Region.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatableSurveyResponsesCount","description":"The number of current updatable survey responses to this address","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"The user associated with the shipping address","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CountryCode","description":"Two letter ISO code for a country.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ES","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ET","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ID","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ML","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"QA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ST","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"WF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"WS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"XK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"YE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"YT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ZA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ZM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ZW","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Cart","description":"A cart associated with a surveyable (backing or order)","fields":[{"name":"addOnQuestions","description":"The add-on questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CartQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"autoFinalized","description":"Whether the cart required backer action or was finalized on creation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backingRewardAnswers","description":"Answers associated with a cart's backing rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"baseRewardAnswers","description":"The answers to reward-level questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"baseRewardQuestions","description":"The base reward questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CartQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"finalizedAt","description":"When the cart was finalized (i.e., when the backer submitted responses)","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNonOptionalQuestions","description":"Whether the cart has non-optional questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inProgress","description":"Whether the backer has begun answering their survey","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lineItems","description":"The associated line items","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"LineItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"projectAnswers","description":"The answers to project-level questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"projectQuestions","description":"The project-level questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CartQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shouldCollectAddress","description":"Whether or not this cart needs an address to be finalized","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LineItem","description":"A line item in a cart","fields":[{"name":"answers","description":"The answers associated with the line item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item associated with the line item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemVariant","description":"The item variant the backer selected (unless master variant)","args":[],"type":{"kind":"OBJECT","name":"ItemVariant","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optionValues","description":"The option values that comprise the selected item variant, if present.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"The questions associated with the line item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CartQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"requiresSelection","description":"True if the backer needs to select a variant or answer an item question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ItemVariant","description":"A unique item variant aka SKU","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name (e.g. 'Hoodie Small Blue Checkered')","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optionValues","description":"The option values associated with this variant","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"sku","description":"The sku value (e.g. 'Hoodie-Small-Blue-Checkered')","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OptionValue","description":"An option value (e.g. \"red\") associated with an option type (e.g. \"color\")","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optionType","description":"The option type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The option value","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OptionType","description":"An option type associated with an item (e.g. \"size\" or \"color\")","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item associated with the option type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The option type name (e.g. \"size\" or \"color\")","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prompt","description":"The option type prompt (e.g. \"What size do you want?\")","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"values","description":"The associated option values","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardItem","description":"A reward item.","fields":[{"name":"addOns","description":"The add-ons that the item is included in.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"addOnsCount","description":"The numer of add-ons that the item is included in.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasBackers","description":"Whether backers have backed rewards this item belongs to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"image","description":"The item image","args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"itemVariants","description":"Variants of this item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemVariant","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"itemWeight","description":"Item weight related configuration","args":[],"type":{"kind":"OBJECT","name":"ItemWeight","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"maxInventoryCount","description":"The max amount of this item that may have to be produced based on reward limits.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"An item name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optionTypes","description":"Option types tied to this item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionType","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"Questions tied to this item that will be posed to backers","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"rewards","description":"The rewards that the item is included in.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"rewardsCount","description":"The number of rewards that the item is included in.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeRules","description":"Surcharge rules configured for this item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SurchargeRule","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"taxConfig","description":"Tax related configuration","args":[],"type":{"kind":"OBJECT","name":"ItemTaxConfig","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxConfigCompletionStatus","description":"Whether the item is completely configured for tax purposes","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PrereqCompletionStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Reward","description":"A project reward.","fields":[{"name":"allowedAddons","description":"Add-ons which can be combined with this reward.\nUses creator preferences and shipping rules to determine allow-ability.\nInclusion in this list does not necessarily indicate that the add-on is available for backing.\n","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"allowedRewards","description":"Base rewards which can be combined with this addon.\nUses creator preferences and shipping rules to determine allow-ability.\nInclusion in this list does not necessarily indicate that the reward is available for backing.\n","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amount","description":"Amount for claiming this reward.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"audienceData","description":"Data related to who can view/access this reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResourceAudience","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"available","description":"Whether or not the reward is available for new pledges","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerImages","description":"Profile images for backers of this reward","args":[{"name":"limit","description":"Limit the number of images returned","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Photo","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReportUrl","description":"URL for the Backer Report filtered to only this reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backersCount","description":"count of backers for this reward","args":[{"name":"excludeInactive","description":"Filters out backings in an inactive state","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backersCountWithNewPmBackers","description":"count of backers for this reward after launching pledge manager","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"convertedAmount","description":"Amount for claiming this reward, in the current user's chosen currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"A reward description.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"displayName","description":"A reward's title plus the amount, or a default title (the reward amount) if it doesn't have a title.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"displayableAddons","description":"The same as allowed_addons but with an additional scope that filters out addons with a start date that falls in the future\n","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"endCondition","description":"For post-campaign enabled rewards, the conditions under which to stop offering the reward.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"endsAt","description":"When the reward is scheduled to end in seconds","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedDeliveryOn","description":"Estimated delivery day.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"featured","description":"Whether or not the reward is featured","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasLatePledgeBackers","description":"Whether any one has pledged for this reward during the late pledges period","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"image","description":"The reward image.","args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"inPostCampaignPledgingPhase","description":"Is this reward currently accepting post-campaign pledges?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isMaxPledge","description":"Does reward amount meet or exceed maximum pledge for the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"Items in the reward.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardItemsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgeAmount","description":"Amount for claiming this reward after the campaign.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"limit","description":"A reward limit.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"limitPerBacker","description":"Per backer reward limit.","args":[{"name":"withFallback","description":"Returns system wide limit per backer if not set by creator.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"localReceiptLocation","description":"Where the reward can be locally received if local receipt is selected as the shipping preference","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"maxPledgedInSingleBacking","description":"The maximum amount of this add-on in a single pledge selected by any pledged backer.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"A reward title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderableConfig","description":"Cross-Sells configuration for this Reward","args":[],"type":{"kind":"OBJECT","name":"OrderableConfig","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderableConfigCompletion","description":"What state is orderable configuration in for this reward (complete, incomplete, or not_started)?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PrereqCompletionStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeAmount","description":"Amount for claiming this reward during the campaign.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManagementOnly","description":"Should this reward only be shown in Pledgement Management?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postCampaignPledgingEnabled","description":"Is this reward available for post-campaign pledges?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"Survey questions asked of all backers of this reward.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingQuantity","description":"Remaining reward quantity.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardType","description":"The type of the reward - base or addon.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RewardType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingEnabled","description":"Whether or not the reward has shipping enabled","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingPreference","description":"Shipping preference for this reward","args":[],"type":{"kind":"ENUM","name":"ShippingPreference","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRates","description":"Shipping rates defined by the creator for this reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRate","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRatesCompletion","description":"Whether the shipping rates are filled out and not missing fields","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PrereqCompletionStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRatesExpanded","description":"Shipping rates for all shippable countries, including those that are children of superregions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRate","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRules","description":"Shipping rules defined by the creator for this reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRule","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRulesExpanded","description":"Shipping rules for all shippable countries.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"forLocation","description":"Returns expanded shipping rules given location","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardShippingRulesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingSummary","description":"A shipping summary","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingSummarySentence","description":"Reward shipping summary as a sentence","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"simpleShippingRulesExpanded","description":"Simple shipping rules expanded as a faster alternative to shippingRulesExpanded since connection type is slow","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SimpleShippingRule","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"soldOut","description":"Whether or not the reward is out of inventory","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCondition","description":"For post-campaign enabled rewards, the conditions under which to start offering the reward.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"startsAfterProjectDeadline","description":"Is this reward only available after the project deadline?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startsAt","description":"When the reward is scheduled to start","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"vatInclusivePricing","description":"Whether the creator has included VAT in reward pricing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Photo","description":"A photo","fields":[{"name":"altText","description":"Alt text on the image","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fingerprint","description":"The fingerprint of the photo","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Upload status of the photo","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AssetState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"URL of the photo","args":[{"name":"blur","description":"Whether or not to blur the image.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"width","description":"The width of the image in pixels.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AssetState","description":"All available asset states","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"MISSING","description":"A missing asset","isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":"Incomplete status of an asset","isDeprecated":false,"deprecationReason":null},{"name":"DELETED","description":"The asset file has been deleted","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":"Processing the asset file successfully completed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RewardType","description":"Describes the purpose of the reward","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"base","description":"A reward that cannot be combined with others","isDeprecated":false,"deprecationReason":null},{"name":"addon","description":"A reward that can only be added to a backing for another reward","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RewardItemsConnection","description":"The connection type for RewardItem.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardItemEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardItemEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"RewardItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"The position that an item has been ordered on a reward","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"quantity","description":"The quantity of an item associated with a reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardConnection","description":"The connection type for Reward.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ShippingPreference","description":"A preference for shipping a reward","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"none","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"restricted","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"unrestricted","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"local","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ShippingRule","description":"A project reward's shipping rule.","fields":[{"name":"backersCount","description":"Number of backers for the Shipping Rule","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cost","description":"The shipping cost for this location.","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedMax","description":"The estimated maximum shipping cost","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedMin","description":"The estimated minimum shipping cost","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasBackers","description":"Shipping rule has backers","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The shipping location to which the rule pertains.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SimpleShippingRule","description":"Simple shipping rule for a reward","fields":[{"name":"cost","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"country","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedMax","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedMin","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locationName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardShippingRulesConnection","description":"The connection type for ShippingRule.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRuleEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRule","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShippingRuleEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"ShippingRule","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShippingRate","description":"A shipping rate for a particular shippable and location","fields":[{"name":"cost","description":"The shipping cost for this location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The shipping location for which this shipping rate is defined.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippable","description":"The item or reward for which this shipping rate is defined.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Shippable","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Shippable","description":"Types that can have shipping rates","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Reward","ofType":null},{"kind":"OBJECT","name":"RewardItem","ofType":null}]},{"kind":"ENUM","name":"PrereqCompletionStatus","description":"Completion status of objects necessary for pledge redemption","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"not_started","description":"Prereq has not been started","isDeprecated":false,"deprecationReason":null},{"name":"incomplete","description":"Prereq has been started but is not complete","isDeprecated":false,"deprecationReason":null},{"name":"complete","description":"Prereq is complete","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Question","description":"A question associated with one of the following: Project, RewardItem, Reward","fields":[{"name":"choiceSelectionLimit","description":"The question choice selection limit","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"choices","description":"The question choices","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optional","description":"Whether the question is optional","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"Position of a question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prompt","description":"The question prompt","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"questionable","description":"The object associated with the question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Questionable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The question type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Questionable","description":"An object that can be associated with a question","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"RewardItem","ofType":null},{"kind":"OBJECT","name":"Reward","ofType":null}]},{"kind":"ENUM","name":"QuestionType","description":"Question types","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"text","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"choices","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"OrderableConfig","description":"Configuration for an Orderable for Cross-Sells.","fields":[{"name":"available","description":"Is this reward currently available to add to an Order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabled","description":"Is this orderable available for cross-sells in Pledge Redemption.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"limit","description":"The total number of an orderable available to be purchased","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"limitPerOrder","description":"The number of an orderable a backer is allowed to add to their order","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"price","description":"The price charged for an orderable","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"priceConvertedToCurrencyFormatted","description":"The price formatted for display in the user's chosen currency","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"priceFormatted","description":"The price formatted for display","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingQuantity","description":"How many of this reward are still available to claim during Pledge Redemption","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResourceAudience","description":"Data related to the audience for a particular resource","fields":[{"name":"audience","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AudienceEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"secret","description":"True if the resource has access restricted by an access rule","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shareUrl","description":"Url for sharing reward (absent if accessible to all)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"token","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AudienceEnum","description":"The audience for the resource","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"everyone","description":"everyone","isDeprecated":false,"deprecationReason":null},{"name":"link","description":"link","isDeprecated":false,"deprecationReason":null},{"name":"restricted","description":"restricted","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ItemTaxConfig","description":"Tax configuration data related to an item","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"marketValue","description":"Value of item pre any bundling discounts","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxCategory","description":null,"args":[],"type":{"kind":"OBJECT","name":"TaxCategory","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TaxCategory","description":"A project scoped tax category","fields":[{"name":"associatedWithMultipleItems","description":"Whether or not the category is associated with multiple items","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"codeDescription","description":"Describes what products or services the tax code covers","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ksrManaged","description":"Whether or not this is a default category managed by Kickstarter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nontaxable","description":"Whether or not the category is nontaxable","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxCode","description":"Third party tax code","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userLabel","description":"The user assigned label for the vendor tax code","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ItemWeight","description":"Item's weight configuration data","fields":[{"name":"exclude","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"weight","description":"item weight","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SurchargeRule","description":"A surcharge for a particular item and location combo","fields":[{"name":"cost","description":"The surcharge cost for this location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"costFormatted","description":"The formatted surcharge cost for this location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Answer","description":"An answer associated with one of the following: LineItem, Cart, BackingAddon, OrderOrderable","fields":[{"name":"answerable","description":"The object associated with the answer (e.g. Item, Project, Reward)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Answerable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The associated question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"response","description":"The response to the question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Answerable","description":"An object that can be associated with an answer","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"LineItem","ofType":null},{"kind":"OBJECT","name":"Cart","ofType":null},{"kind":"OBJECT","name":"BackingAddon","ofType":null},{"kind":"OBJECT","name":"OrderOrderable","ofType":null}]},{"kind":"OBJECT","name":"BackingAddon","description":"An add-on reward included in a backing.","fields":[{"name":"amount","description":"Amount the add-on costs.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReward","description":"The addon reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The add-on description.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"Items in the add-on.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItemsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The add-on name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeAmount","description":"Amount for claiming this add-on during the campaign.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"quantity","description":"The quantity of the add-on included in a backing.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrderOrderable","description":"An orderable included in an Order, e.g. a reward.","fields":[{"name":"baseAmount","description":"The price of one unit of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"baseAmountFormatted","description":"The price of one unit of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cost","description":"The cost of the orderable, after voucher is applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"costFormatted","description":"The formatted cost of the orderable, after voucher is applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRemoved","description":"Whether the orderable has been removed after order collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The kind of orderable represented","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OrderOrderableKindEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The orderable name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderItems","description":"The order items associated with the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"orderable","description":"The reward data for this OrderOrderable","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Orderable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedBaseAmount","description":"The amount refunded for the base amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedCost","description":"The amount refunded for the cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingBaseAmountFormatted","description":"The remaining base amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingCost","description":"The remaining cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingCostFormatted","description":"The remaining cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"voucherAmount","description":"The amount of the voucher","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"voucherAmountFormatted","description":"The amount of the voucher","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrderItem","description":"An item included in an Order.","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lineItem","description":"The line item associated with the order item","args":[],"type":{"kind":"OBJECT","name":"LineItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the order item. This is the name of the product or service being purchased.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Orderable","description":"Types that can be added to an Order","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Reward","ofType":null}]},{"kind":"ENUM","name":"OrderOrderableKindEnum","description":"The kind of OrderOrderable, such as a crowdfunding base reward, crowdfunding add-on, or PM add-on","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"crowdfunding_base","description":"crowdfunding_base","isDeprecated":false,"deprecationReason":null},{"name":"crowdfunding_addon","description":"crowdfunding_addon","isDeprecated":false,"deprecationReason":null},{"name":"upgrade_from_crowdfunding_base","description":"upgrade_from_crowdfunding_base","isDeprecated":false,"deprecationReason":null},{"name":"order_edit_upgrade","description":"order_edit_upgrade","isDeprecated":false,"deprecationReason":null},{"name":"new_base","description":"new_base","isDeprecated":false,"deprecationReason":null},{"name":"new_addon","description":"new_addon","isDeprecated":false,"deprecationReason":null},{"name":"order_edit_addon","description":"order_edit_addon","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CartQuestion","description":"A question associated with a cart, composed with an answer if one is present","fields":[{"name":"answer","description":"The answer to the question. Will return an \"empty answer\" if not yet answered.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The cart question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FulfillmentStatusDisplayOptions","description":"All values for backing fulfillment status, including where not provided/available","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"not_started","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"in_progress","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"shipped","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"delayed","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"not_provided","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"not_available","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RewardTotalCountConnection","description":"The connection type for Reward.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DigitalAccessResource","description":"An access code or URL for retrieving a digital reward","fields":[{"name":"description","description":"A description of the resource or instructions for activation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project associated with the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resource","description":"The access code or URL","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetupIntent","description":"Selected fields on a SetupIntent from Stripe for a given backing.","fields":[{"name":"id","description":"Stripe ID of the SetupIntent.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastSetupError","description":"The error encountered in the previous SetupIntent confirmation.","args":[],"type":{"kind":"OBJECT","name":"SetupIntentError","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Status of the SetupIntent.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SetupIntentStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SetupIntentStatus","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUIRES_PAYMENT_METHOD","description":"When the SetupIntent is created, it has this status until a payment method is attached. If a SetupIntent fails, it will revert to this status.","isDeprecated":false,"deprecationReason":null},{"name":"REQUIRES_CONFIRMATION","description":"After the customer provides their payment method information, the SetupIntent is ready to be confirmed.","isDeprecated":false,"deprecationReason":null},{"name":"REQUIRES_ACTION","description":"If the setup requires additional actions, such as authenticating with 3D Secure","isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":"Once required actions are handled, the SetupIntent moves to this status, which can be brief or take a few days depending on the payment method.","isDeprecated":false,"deprecationReason":null},{"name":"CANCELED","description":"SetupIntent can be canceled at any point before it is processing or succeeded.","isDeprecated":false,"deprecationReason":null},{"name":"SUCCEEDED","description":"Setup of payment source was successful.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SetupIntentError","description":null,"fields":[{"name":"code","description":"For some errors that could be handled programmatically, a short string indicating the error code reported. https://stripe.com/docs/error-codes","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"declineCode","description":"A short string indicating the card issuer’s reason for the decline if they provide one.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":"A human-readable message providing more details about the error. For card errors, these messages can be shown to your users.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The type of error returned.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SetupIntentErrorType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SetupIntentErrorType","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"API_CONNECTION_ERROR","description":"Failure to connect to Stripe's API.","isDeprecated":false,"deprecationReason":null},{"name":"API_ERROR","description":"API errors cover any other type of problem (e.g., a temporary problem with Stripe's servers), and are extremely uncommon.","isDeprecated":false,"deprecationReason":null},{"name":"AUTHENTICATION_ERROR","description":"Failure to properly authenticate in the request.","isDeprecated":false,"deprecationReason":null},{"name":"CARD_ERROR","description":"Card errors are very common and they result when the user enters a card that can't be charged for some reason.","isDeprecated":false,"deprecationReason":null},{"name":"IDEMPOTENCY_ERROR","description":"Idempotency errors occur when an Idempotency-Key is re-used on a request that does not match the first request's API endpoint and parameters.","isDeprecated":false,"deprecationReason":null},{"name":"INVALID_REQUEST_ERROR","description":"Invalid request errors arise when your request has invalid parameters eg., 3DS authentication failed.","isDeprecated":false,"deprecationReason":null},{"name":"RATE_LIMIT_ERROR","description":"Too many requests hit the Stripe API too quickly.","isDeprecated":false,"deprecationReason":null},{"name":"VALIDATION_ERROR","description":"Errors triggered by Stripe's client-side libraries when failing to validate fields (e.g., when a card number or expiration date is invalid or incomplete).","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"UNION","name":"PaymentSource","description":"Payment sources","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"BankAccount","ofType":null},{"kind":"OBJECT","name":"CreditCard","ofType":null}]},{"kind":"ENUM","name":"BackingState","description":"Various backing states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"preauth","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledged","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"canceled","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"collected","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"errored","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"authentication_required","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dropped","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dummy","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SurveyResponse","description":"The response to a backer survey.","fields":[{"name":"addressEditable","description":"Is the address still editable","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"answerDeadline","description":"The date past which no further updates are allowed.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"answerable","description":"Is the survey currently unlocked and answerable.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"answeredAt","description":"The date on which the backer answered the survey","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"answers","description":"An array of question and answer data for this survey response","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SurveyAnswer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"editedAt","description":"The date on which the backer edited their survey response","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url used to access the survey","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SurveyAnswer","description":null,"fields":[{"name":"answer","description":"The response to the question.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The ID of the answer.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The question prompt or template name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":"The type of question, e.g. choices, checkbox, address, etc","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SurveyQuestionTemplateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SurveyQuestionTemplateEnum","description":"Enum describing all the possible templates for survey questions","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"address","description":"address","isDeprecated":false,"deprecationReason":null},{"name":"email","description":"email","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"name","isDeprecated":false,"deprecationReason":null},{"name":"other","description":"other","isDeprecated":false,"deprecationReason":null},{"name":"choices","description":"choices","isDeprecated":false,"deprecationReason":null},{"name":"checkboxes","description":"checkboxes","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Conversation","description":"A conversation on Kickstarter.","fields":[{"name":"backing","description":"The backing made by the backer on the project this conversation is about","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When the first message was sent","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isUnread","description":"Are there unread messages for the current user","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastReceivedAt","description":"Timestamp of the most recent message in the thread","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"messageCount","description":"The number of messages between the backer and creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"messages","description":"Messages that are part of this conversation","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ConversationMessagesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"otherParticipant","description":"The other participant to this conversation","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project this conversation is about","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConversationMessagesConnection","description":"The connection type for Message.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"MessageEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Message","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MessageEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Message","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Message","description":"A message on Kickstarter.","fields":[{"name":"body","description":"Body of the message","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isAppeal","description":"The message is an submission appeal","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"readAt","description":"When the message was first read","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"recipient","description":"The user who received this message","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sender","description":"The user who sent this message","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sentAt","description":"When the message was sent","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spam","description":"The message is spam","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Order","description":"An order.","fields":[{"name":"address","description":"The delivery or home address associated with the order.","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allowedCountries","description":"Countries that the order's rewards can be shipped to. If null, the order's rewards can be shipped to any country.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableCrossSells","description":"Add-ons available to be added at Pledge Redemption","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableUpgradeableRewards","description":"Base rewards available to upgrade to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"backerEntryPoint","description":"The customer entry point","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PreviewEntryPointEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReward","description":"The crowdfunding base reward at the time of order creation","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerRewardFinal","description":"The base order orderable if the order is finalized; otherwise, the crowdfunding base reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"The backing associated with the order","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"baseOrderOrderable","description":"The base reward on the order. Could be base reward from original backing or one from reward upgrade.","args":[],"type":{"kind":"OBJECT","name":"OrderOrderable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"baseOrderable","description":"The base reward on the order. Could be base reward from original backing or one from reward upgrade.","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"baseOrderableVoucherAmount","description":"The voucher amount for the base orderable, or 0 if there is no base orderable","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"baseOrderableVoucherAmountFormatted","description":"The voucher amount for the base orderable, or 0 if there is no base orderable, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cart","description":"Contains the backer's item preferences and responses to survey questions","args":[],"type":{"kind":"OBJECT","name":"Cart","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"checkoutRequired","description":"Whether there is required action for the backer to take in their pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"checkoutState","description":"The state of checkout (taking into account order and cart status)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CheckoutStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"checkoutVoucherOrBaseAutoCompletable","description":"Whether or not the order would be auto-exemptable if the order had no cross-sells.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedCurrencyAmounts","description":"Order amounts converted to a backer's chosen currency","args":[],"type":{"kind":"OBJECT","name":"ConvertedOrderAmounts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creatorAddableCrossSells","description":"Add-ons that the creator can add to the order through an order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSells","description":"Add-ons selected for this order during Pledge Redemption","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderOrderable","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsTotal","description":"The cross-sells total amount for the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsTotalFormatted","description":"The cross-sells total amount for the order, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsWithQuantity","description":"Add-ons selected for this order during Pledge Redemption with quantity","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderOrderableWithQuantity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crowdfundingAddonsFromAdjustment","description":"Crowdfunding addon rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crowdfundingAddonsWithQuantity","description":"Add-ons selected for this order during Crowdfunding with quantity","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderOrderableWithQuantity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crowdfundingAndUpgradeTotal","description":"The total amount for crowdfunding and upgrade rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crowdfundingRewardToNewRewardUpgrade","description":"Whether the order was upgraded from a crowdfunding reward to a pledge manager-only reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":"The currency of the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"customer","description":"The associated user","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"finalized","description":"Whether the order is in a finalized state","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"finalizedAndNotExempt","description":"Whether or not the order was finalized but non-exempt.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fullyRefunded","description":"Whether or not the order has been fully refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPledgeManagerNetNewBacker","description":"Whether this order is a net new order for the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPreview","description":"Whether the order is a preview order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The order location.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mustAcknowledgeCrossSells","description":"Whether the backer must acknowledge cross-sells to complete checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mustAcknowledgeUpgrades","description":"Whether the backer must acknowledge upgrades to complete checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"orderEdits","description":"Edits to the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEdit","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"orderOrderables","description":"The rewards included in the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderOrderable","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"orderableVoucherTotalFormatted","description":"The total voucher amount for all orderables, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":"Payment source used on an order.","args":[],"type":{"kind":"UNION","name":"PaymentSource","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project associated with the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedShippingAmount","description":"The amount refunded for the shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundedSurchargeAmount","description":"The amount refunded for the surcharge","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundedTotalTax","description":"The amount refunded for the total tax","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingCost","description":"The remaining cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingCostFormatted","description":"The remaining cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingShippingAmount","description":"The remaining shipping amount","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingShippingAmountFormatted","description":"The remaining shipping amount","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingSurchargeAmount","description":"The remaining surcharge amount","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotalTax","description":"The remaining total tax","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotalTaxFormatted","description":"The remaining total tax","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardUpgrade","description":"The currently-selected reward upgrade on an order","args":[],"type":{"kind":"OBJECT","name":"OrderOrderable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardUpgradeFinal","description":"The reward upgrade on an order after order is completed","args":[],"type":{"kind":"OBJECT","name":"OrderOrderable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shipments","description":"The shipments associated with the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Shipment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingAmount","description":"The amount of shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingAmountFormatted","description":"The cost of shipping, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingBaseAmountFormatted","description":"The amount of shipping before any vouchers","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingVoucherAmount","description":"Discount amount for shipping that was already paid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingVoucherAmountFormatted","description":"Discount amount for shipping that was already paid, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The order's state, e.g. draft, collected, dropped, etc.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OrderStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeAmount","description":"The total surcharge amount for the order","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeAmountFormatted","description":"The total surcharge amount for the order, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxIncluded","description":"Whether the rewards/shipments have tax included in the price","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxLocalization","description":"The localized tax (VAT, Tax, HST, etc) based on order address","args":[{"name":"refund","description":"Whether or not the display is for a refund","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxProviderSalesInvoice","description":"Requests the Avatax data for a given document code. This is only available to KSR admins.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AvataxTransactionResponseData","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"The total cost for the order including taxes and shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalFormatted","description":"The total cost for the order including taxes and shipping, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalTax","description":"The total tax amount for the order","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalTaxFormatted","description":"The total tax amount for the order, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalTaxToRefund","description":"Calculates the total tax amount that will be refunded given the partial refund adjustment data.","args":[{"name":"refundPledgeInput","description":null,"type":{"kind":"INPUT_OBJECT","name":"RefundPledgeInput","ofType":null},"defaultValue":null},{"name":"refundOrderInput","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefundOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usableAddresses","description":"All of the user's saved addresses that match the order country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"vatLocation","description":"Whether or not the location is in the EU or UK (uses VAT)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderStateEnum","description":"The state of the order, e.g. draft, submitted, successful, errored, missed.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"draft","description":"draft","isDeprecated":false,"deprecationReason":null},{"name":"auto_exempt","description":"auto_exempt","isDeprecated":false,"deprecationReason":null},{"name":"calculated_exempt","description":"calculated_exempt","isDeprecated":false,"deprecationReason":null},{"name":"collected","description":"collected","isDeprecated":false,"deprecationReason":null},{"name":"dropped","description":"dropped","isDeprecated":false,"deprecationReason":null},{"name":"refunded","description":"refunded","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PreviewEntryPointEnum","description":"Customer entry points to be used when previewing an order.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"crowdfunding","description":"crowdfunding","isDeprecated":false,"deprecationReason":null},{"name":"late_pledge","description":"late_pledge","isDeprecated":false,"deprecationReason":null},{"name":"pledge_manager","description":"pledge_manager","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ConvertedOrderAmounts","description":"Order amounts converted to a user's chosen currency","fields":[{"name":"baseOrderableVoucherAmount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"orderableVoucherTotal","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingBaseAmount","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingVoucherAmount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeAmount","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalTax","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrderEdit","description":"An edit to an order","fields":[{"name":"additionalAddons","description":"The additional add-ons included in the edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"additions","description":"The additions included in the edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Addition","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"badgeConfig","description":"Display config for order edit badge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UiConfig","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"bannerConfig","description":"Display config for order edit banner","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UiConfig","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"Timestamp at which edit was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsTotal","description":"The cross-sells total amount for the order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsTotalFormatted","description":"The cross-sells total amount for the order edit, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"editedRewards","description":"The rewards that were edited as part of the edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order modified by the order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingTotal","description":"The amount of shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingTotalFormatted","description":"The cost of shipping, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The state of the order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OrderEditStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeTotal","description":"The total surcharge amount for the order edit","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeTotalFormatted","description":"The total surcharge amount for the order edit, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxTotal","description":"The total tax amount for the order edit","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxTotalFormatted","description":"The total tax amount for the order edit, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"The total cost for the order edit including taxes and shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalFormatted","description":"The total cost for the order edit including taxes and shipping, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"upgrade","description":"The reward being upgraded to in the edit","args":[],"type":{"kind":"OBJECT","name":"Upgrade","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A link to detailed order edit information","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Addition","description":"An additional reward that is part of an order edit","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The reward being added","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Upgrade","description":"A creator-initiated upgrade to a different reward","fields":[{"name":"cost","description":"The cost of this upgrade, after voucher is applied.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"costFormatted","description":"The cost of this upgrade, after voucher is applied, formatted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"newReward","description":"The reward being upgraded to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UiConfig","description":"Configuration for displaying UI elements","fields":[{"name":"copy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"variant","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderEditStateEnum","description":"The state of the order edit, e.g. draft, pending, completed, rejected, failed","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"draft","description":"draft","isDeprecated":false,"deprecationReason":null},{"name":"pending","description":"pending","isDeprecated":false,"deprecationReason":null},{"name":"completed","description":"completed","isDeprecated":false,"deprecationReason":null},{"name":"rejected","description":"rejected","isDeprecated":false,"deprecationReason":null},{"name":"failed","description":"failed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"OrderOrderableWithQuantity","description":"All rewards of a particular kind included in an Order, bundled together with their quantity and price information","fields":[{"name":"orderable","description":"The orderable of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Orderable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"quantity","description":"The quantity of the reward in the Order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPrice","description":"The total price of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPriceFormatted","description":"The total price of the reward, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unitPrice","description":"The price of one unit of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unitPriceFormatted","description":"The price of one unit of the reward, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Shipment","description":"A shipment included in an Order.","fields":[{"name":"cost","description":"The cost of this shipment. This is the total amount charged for shipping (base amount), minus the amount charged at pledge (voucher amount).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"trackingNumber","description":"The tracking number for this shipment.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CheckoutStateEnum","description":"The state of checkout, e.g. complete, in progress, incomplete.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"complete","description":"complete","isDeprecated":false,"deprecationReason":null},{"name":"in_progress","description":"in_progress","isDeprecated":false,"deprecationReason":null},{"name":"not_started","description":"not_started","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AvataxTransactionResponseData","description":"Avatax transaction response data type containing details about a transaction.","fields":[{"name":"handledResponse","description":"The processed response from the Avatax API, containing structured data about the transaction.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AvataxTransactionLineItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"rawResponse","description":"The raw response from the Avatax API for the transaction.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"JSON","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AvataxTransactionLineItem","description":"Avatax transaction line item type containing details about a line item in a transaction.","fields":[{"name":"amount","description":"The amount of tax applied to the item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deemedSupplier","description":"The deemed supplier for the tax.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the tax applied to the item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rate","description":"The tax rate applied to the item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxId","description":"The ID of the tax applied to the item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxableId","description":"The ID of the taxable item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxableType","description":"The type of the taxable item (e.g., OrderItem or Shipment).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vatNumber","description":"The VAT number associated with the transaction, if applicable.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefundPledgeInput","description":"Required parameters in order to refund a pledge.","fields":null,"inputFields":[{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"adjustmentParams","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AdjustmentInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AdjustmentInput","description":"Parameters to create adjustment to a backing's order, created when issuing a refund.","fields":null,"inputFields":[{"name":"reason","description":"Reason for adjustment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundReasonType","ofType":null}},"defaultValue":null},{"name":"removals","description":"Objects to be removed from order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RemovalInput","ofType":null}}}},"defaultValue":null},{"name":"refunds","description":"Refunds to be issued","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefundInput","ofType":null}}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RefundReasonType","description":"Reasons for refunds","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CHANGE_REMOVAL","description":"Change of reward or removal of reward item","isDeprecated":false,"deprecationReason":null},{"name":"FULFILLMENT_ISSUES_DELAYS","description":"Issues with or delays in fulfillment","isDeprecated":false,"deprecationReason":null},{"name":"CREDIT","description":"Creator issued credit","isDeprecated":false,"deprecationReason":null},{"name":"OVERPAYMENT","description":"Backer overpaid for reward","isDeprecated":false,"deprecationReason":null},{"name":"BACKER_REQUEST","description":"Backer requested refund","isDeprecated":false,"deprecationReason":null},{"name":"ADMIN_REFUND","description":"Admin issued refund","isDeprecated":false,"deprecationReason":null},{"name":"OTHER","description":"Other reason for refund","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RemovalInput","description":"An object removed as part of an adjustment","fields":null,"inputFields":[{"name":"rewardId","description":"id of the reward associated with the removal","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"refundItemId","description":"id of object to be removed","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"type","description":"type of object to be removed (reward, reward item, or order item)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundAdjustmentType","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RefundAdjustmentType","description":"All types of refund adjustments that can be issued","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REWARD","description":"refund for full reward tier","isDeprecated":false,"deprecationReason":null},{"name":"REWARD_ITEM","description":"refund for individual item in a reward tier","isDeprecated":false,"deprecationReason":null},{"name":"ORDER_ITEM","description":"refund for an add-on or cross-sell in the order","isDeprecated":false,"deprecationReason":null},{"name":"BONUS_AMOUNT","description":"refund for bonus support","isDeprecated":false,"deprecationReason":null},{"name":"SHIPPING_CREDIT","description":"refund for shipping fees","isDeprecated":false,"deprecationReason":null},{"name":"GENERAL_REFUND","description":"general refund","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefundInput","description":"An amount to be refunded as part of an adjustment.","fields":null,"inputFields":[{"name":"refundItemId","description":"id of object to be refunded","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"type","description":"type of refund","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundAdjustmentType","ofType":null}},"defaultValue":null},{"name":"amount","description":"amount to be refunded","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefundOrderInput","description":"Parameters to refund the non-voucher part of an order.","fields":null,"inputFields":[{"name":"shipments","description":"Shipments to be refunded","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShipmentInput","ofType":null}}}},"defaultValue":null},{"name":"crossSells","description":"Cross sells to be refunded / removed","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"OrderOrderableInput","ofType":null}}}},"defaultValue":null},{"name":"upgradedReward","description":"Upgraded reward to be refunded / removed","type":{"kind":"INPUT_OBJECT","name":"OrderOrderableInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ShipmentInput","description":"Parameters to refund a shipment.","fields":null,"inputFields":[{"name":"shipmentId","description":"ID of the shipment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"amount","description":"Amount to refund","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"OrderOrderableInput","description":"Parameters to refund an order orderable.","fields":null,"inputFields":[{"name":"orderOrderableId","description":"ID of the order orderable","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"removed","description":"Whether the order orderable was removed","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"amount","description":"Non-voucher amount to refund","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PaymentIncrement","description":null,"fields":[{"name":"amount","description":"The payment increment amount represented in various formats","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PaymentIncrementAmount","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentIncrementableId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentIncrementableType","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundUpdatedAmountInProjectNativeCurrency","description":"The original amount minus the refunded amount formatted in the project native currency","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundedAmount","description":"The total amount that has been refunded on the payment increment, across potentially multiple adjustments","args":[],"type":{"kind":"OBJECT","name":"PaymentIncrementAmount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"scheduledCollection","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The state of the payment increment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PaymentIncrementState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stateReason","description":null,"args":[],"type":{"kind":"ENUM","name":"PaymentIncrementStateReason","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ISO8601DateTime","description":"An ISO 8601-encoded datetime","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PaymentIncrementStateReason","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REFUND_ADJUSTED","description":"The increment was adjusted due to a refund","isDeprecated":false,"deprecationReason":null},{"name":"REQUIRES_ACTION","description":"The payment source has attempted to be charged, but issuer requires additional authentication to complete the payment","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PaymentIncrementState","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"UNATTEMPTED","description":"The initial state of the payment increment; payment source has not been charged","isDeprecated":false,"deprecationReason":null},{"name":"COLLECTED","description":"Payment source was successfully charged","isDeprecated":false,"deprecationReason":null},{"name":"ERRORED","description":"Payment source could not be charged due to an errored payment source or authentication being required","isDeprecated":false,"deprecationReason":null},{"name":"CANCELLED","description":"Payment increment is cancelled by user action or is an abandoned increment due to failure to complete payment","isDeprecated":false,"deprecationReason":null},{"name":"CHARGEBACK_LOST","description":"Backer issued a dispute and we (kickstarter) lost the dispute","isDeprecated":false,"deprecationReason":null},{"name":"REFUNDED","description":"Payment increment has been refunded","isDeprecated":false,"deprecationReason":null},{"name":"UNATTEMPTED_ADJUSTED","description":"Payment increment amount has been adjusted due to refund and is unattempted","isDeprecated":false,"deprecationReason":null},{"name":"COLLECTED_ADJUSTED","description":"Payment increment amount has been adjusted due to refund and is collected","isDeprecated":false,"deprecationReason":null},{"name":"CANCELLED_ADJUSTED","description":"Payment increment amount has been adjusted due to refund and is cancelled","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"PaymentIncrementAmount","description":"Representations of the payment increment amount with cents, float, and currency variations","fields":[{"name":"amountAsCents","description":"The increment amount in the smallest denomination of the currency, ie 3750 for the USD currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountAsFloat","description":"The increment amount represented as a float, ie 37.50 for the USD currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountFormattedInProjectNativeCurrency","description":"The increment amount represented as a float with the currency symbol, ie $37.50","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountFormattedInProjectNativeCurrencyWithCurrencyCode","description":"The increment amount represented as a float with the currency symbol and three-letter currency code, ie $37.50 USD","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":"A three-letter currency code for the increment (ie the currency of the project)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentSummary","description":"An adjustment summary.","fields":[{"name":"adjustable","description":"The associated backing/order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"adjustedSummary","description":"The current state of the backing or order","args":[],"type":{"kind":"OBJECT","name":"AdjustedSummary","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"adjustments","description":"An array of adjustments associated with the AdjustmentSummary","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Adjustment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedAmount","description":"The sum of all refunded amounts on the adjustable","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Adjustment","description":"Adjustment to an order, created to issue a refund.","fields":[{"name":"createdAt","description":"Timestamp at which adjustment was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Adjustment ID","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"metadata","description":"Metadata for the adjustment, including refunds and removals","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustmentMetadata","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckoutState","description":"State of associated refund checkout","args":[],"type":{"kind":"ENUM","name":"RefundCheckoutState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"Timestamp at which adjustment was last updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RefundCheckoutState","description":"All available states for a refund checkout","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AUTHORIZING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ERRORED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentMetadata","description":"Metadata for adjustment to order","fields":[{"name":"paymentIncrementIds","description":"IDs of Payment increments affected by the refunds","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reason","description":"Reason for adjustment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundReasonType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckoutId","description":"ID of associated RefundCheckout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refunds","description":"Refunds to be issued in adjustment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustmentRefund","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"removals","description":"Objects to be removed from order in adjustment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustmentRemoval","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentRemoval","description":"An object removed as part of an adjustment.","fields":[{"name":"id","description":"id of object to be removed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"type of object to be removed (reward, reward item, or order item)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundAdjustmentType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentRefund","description":"A refund issued as part of an adjustment.","fields":[{"name":"amount","description":"amount to be refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"id of object to be refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"type of refund","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundAdjustmentType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustedSummary","description":"Current state of a backing after all adjustments are applied.","fields":[{"name":"allRewards","description":"list of rewards, original total costs, and totals after adjustments","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustmentReward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"amount","description":"current total amount for backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"bonusAmount","description":"current bonus amount for backing","args":[],"type":{"kind":"OBJECT","name":"AdjustmentAmount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingAmount","description":"current shipping amount for backing","args":[],"type":{"kind":"OBJECT","name":"AdjustmentAmount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"current backing status","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BackingState","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentAmount","description":"A hash containing the original, refunded, and remaining amounts.","fields":[{"name":"originalTotal","description":"original total amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedTotal","description":"amount that has been refunded after all adjustments are applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotal","description":"amount remaining after all adjustments are applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"removed","description":"whether the reward has been removed from the backing","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentReward","description":"A reward that is modified by an adjustment.","fields":[{"name":"originalTotal","description":"original total amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundItemId","description":"uuid for the refund item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedTotal","description":"amount that has been refunded after all adjustments are applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotal","description":"amount remaining after all adjustments are applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"removed","description":"whether the reward has been removed from the backing","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardId","description":" graphql id of reward to be refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Refund","description":"A refund.","fields":[{"name":"backing","description":"The associated backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backingAdjustmentData","description":"The adjustment for the backings reward, addons, and/or bonus amount","args":[],"type":{"kind":"OBJECT","name":"RefundAdjustmentData","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingAdjustmentRefundCheckout","description":"The refund checkout associated with the backing adjustment","args":[],"type":{"kind":"OBJECT","name":"RefundCheckout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"Timestamp at which refund was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":"message from the creator associated with this refund","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderAdjustmentData","description":"The adjustment for the order's addons, shipping taxes, sales taxes, and pledge upgrade","args":[],"type":{"kind":"OBJECT","name":"RefundAdjustmentData","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reason","description":"reason for the refund","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundReasonType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundDetailsPath","description":"The refund details path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalFormatted","description":"The total refunded from this refund attempt, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefundAdjustmentData","description":"The refund adjustment data for a backing or an order.","fields":[{"name":"actualTotalRefundAmount","description":"The actual refund amount (only successful refunds), if present","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addons","description":"The adjustment details for the addons","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustedReward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"bonusSupport","description":"The adjustment details for the bonus support","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"The client secret for the adjustment","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"A list of errors from underlying refunds","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"failedRefundAmount","description":"The failed refund amount, if present","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasFailures","description":"If the refund has any underlying failures","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"requestedTotalRefundAmount","description":"The requested refund amount, if present","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"requiresAction","description":"Whether the adjustment requires action","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The adjustment details for the reward","args":[],"type":{"kind":"OBJECT","name":"AdjustedReward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardUpgrade","description":"The adjustment details for the upgraded reward","args":[],"type":{"kind":"OBJECT","name":"AdjustedReward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardUpgraded","description":"Whether the reward was upgraded","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shipping","description":"The adjustment details for the shipping and shipping tax","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stateReason","description":"The reason for the adjustment state","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Whether the adjustment was successfully refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surcharge","description":"The adjustment details for the surcharge","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tax","description":"The adjustment details for the sales tax","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"The adjustment total","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"uncollectedAmountCancelled","description":"The amount cancelled in upcoming increments","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustedReward","description":"The adjusted reward.","fields":[{"name":"amount","description":"The total amount refunded for the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefundCheckout","description":"Intermediary set of changes that have yet to be applied to a backing","fields":[{"name":"amount","description":"The total amount of the refund","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"The backing associated with the refund","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"If `requires_action` is true, `client_secret` should be used to initiate additional client-side authentication steps","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"requiresAction","description":"Whether this refund checkout requires additional client-side authentication steps (e.g. 3DS2)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The state of the redund checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundCheckoutState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stateReason","description":"Reason given when state is in a failed state","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stripePaymentSetupRedirectUrl","description":"The full URL to redirect to after payment setup via Stripe in refunds","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"HTML","description":"An HTML string.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextComponent","description":"Itemized rich text","fields":[{"name":"items","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"RichTextItem","description":"Rich text items: Paragraph, Headers, List, Quote, Photo, Audio, Video or Oembed","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"RichText","ofType":null},{"kind":"OBJECT","name":"RichTextHeader1","ofType":null},{"kind":"OBJECT","name":"RichTextHeader2","ofType":null},{"kind":"OBJECT","name":"RichTextHeader3","ofType":null},{"kind":"OBJECT","name":"RichTextHeader4","ofType":null},{"kind":"OBJECT","name":"RichTextListItem","ofType":null},{"kind":"OBJECT","name":"RichTextListOpen","ofType":null},{"kind":"OBJECT","name":"RichTextListClose","ofType":null},{"kind":"OBJECT","name":"RichTextPhoto","ofType":null},{"kind":"OBJECT","name":"RichTextAudio","ofType":null},{"kind":"OBJECT","name":"RichTextVideo","ofType":null},{"kind":"OBJECT","name":"RichTextOembed","ofType":null}]},{"kind":"OBJECT","name":"RichText","description":"A Paragraph.

","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextHeader1","description":"A Header 1.

","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextHeader2","description":"A Header 2.

","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextHeader3","description":"A Header 3.

","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextHeader4","description":"A Header 4.

","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextListItem","description":"A list item.
  • ","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextListOpen","description":"Open List (ul|ol)","fields":[{"name":"_present","description":"Placeholder to avoid empty type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextListClose","description":"Close List (ul|ol)","fields":[{"name":"_present","description":"Placeholder to avoid empty type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextPhoto","description":"A Photo asset","fields":[{"name":"altText","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"asset","description":null,"args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"caption","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"width","description":"The width of the image in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextAudio","description":"An Audio asset","fields":[{"name":"altText","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"asset","description":null,"args":[],"type":{"kind":"OBJECT","name":"AttachedAudio","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"caption","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AttachedAudio","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Upload status of the audio","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AssetEncodingState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AssetEncodingState","description":"All available asset upload states","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ENCODING","description":"Initial, incomplete status of an asset upload","isDeprecated":false,"deprecationReason":null},{"name":"ENCODED","description":"Processing the asset successfully completed","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Processing the asset failed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RichTextVideo","description":"A Video asset","fields":[{"name":"altText","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"asset","description":null,"args":[],"type":{"kind":"OBJECT","name":"AttachedVideo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"caption","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AttachedVideo","description":null,"fields":[{"name":"formats","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AttachedVideoFormat","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"poster","description":"Image preview url","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"renderedHtml","description":"The rendered HTML player for a video asset","args":[{"name":"assetWidth","description":"The width of the video asset in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Upload status of the video","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AssetEncodingState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"Original video url","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AttachedVideoFormat","description":null,"fields":[{"name":"encoding","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"height","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"profile","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"width","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextOembed","description":"An Oembed item","fields":[{"name":"authorName","description":"ex: Bryson Lovett","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorUrl","description":"ex: https://www.youtube.com/user/brysonlovett","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"height","description":"ex: 270","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"html","description":"ex: ","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"iframeUrl","description":"ex: https://www.youtube.com/embed/ijeaVn8znJ8?feature=oembed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"originalUrl","description":"ex: https://youtu.be/ijeaVn8znJ8","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"photoUrl","description":"only for photo","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"providerName","description":"Ex: Embedly, Flickr, Kickstarter, Kickstarter Live, Scribd, SoundCloud, Spotify, Sketchfab, Twitter, Vimeo, YouTube","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"providerUrl","description":"ex: https://www.youtube.com/","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"thumbnailHeight","description":"ex: 360","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"thumbnailUrl","description":"ex: https://i.ytimg.com/vi/ijeaVn8znJ8/hqdefault.jpg","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"thumbnailWidth","description":"ex: 480","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"ex: Bird Photo Booth bird feeder kickstarter preview 2","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"one of: photo, video, link, rich","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"version","description":"always \"1.0\"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"width","description":"ex: 480","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AccountInfo","description":"A project's account information.","fields":[{"name":"availablePaymentSources","description":"Payment sources available to the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CreditCard","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"depositAccount","description":"The account for funds.","args":[],"type":{"kind":"OBJECT","name":"DepositAccount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"A project's email contact.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isEmailVerified","description":"Whether or not a project's email contact has been verified.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":"Payment source for dispute resolution.","args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentsOnboarding","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PaymentsOnboarding","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usesAccountHolderName","description":"True if the project accepts an account holder name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usesRoutingNumber","description":"True if the project accepts a routing number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PaymentsOnboarding","description":"A representation of the creator's progress through the payments & identity parts of Project Build onboarding. Currently just their overall 'status'","fields":[{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PaymentsOnboardingStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PaymentsOnboardingStatus","description":"The overall status of the payments & identity onboarding flow of project build.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"complete","description":"The creator successfully completed payments & identity onboarding","isDeprecated":false,"deprecationReason":null},{"name":"in_progress","description":"The creator has started onboarding but has not yet finished","isDeprecated":false,"deprecationReason":null},{"name":"requires_hosted_onboarding","description":"The creator must proceed to Stripe Hosted Onboarding to finish onboarding","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"DepositAccount","description":"A deposit account.","fields":[{"name":"accountBusinessType","description":"The deposit account business type.","args":[],"type":{"kind":"ENUM","name":"DepositAccountBusiness","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"accountLastFour","description":"The last four digits of the account number.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"additionalOwners","description":"Identity verifications for anyone owning > 25% of the company (if the identity is a legal entity)","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AdditionalOwner","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"company","description":"The company associated with this deposit account.","args":[],"type":{"kind":"OBJECT","name":"Company","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"contactName","description":"The name associated with either the associated company or identity","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The Rosie ID for this DepositAccount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"identity","description":"The identity associated with this deposit account.","args":[],"type":{"kind":"OBJECT","name":"Identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isInEuropeanUnion","description":"Whether the deposit account is in the EU.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isInUnitedKingdom","description":"Whether the deposit account is in the UK.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isStripeAccountCreated","description":"Has the Stripe Account been created for this deposit account.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"routingNumber","description":"The routing number.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The deposit account's state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"DepositAccountState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"streetAddress","description":"Either the company or identity street address","args":[],"type":{"kind":"OBJECT","name":"StreetAddress","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"StreetAddress","description":"The street address of an individual or company","fields":[{"name":"country","description":"2-letter country code","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locality","description":"City/District/Suburb/Town/Village","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postalCode","description":"ZIP or postal code","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"region","description":"State/County/Province/Region.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"street1","description":"Address line 1 (Street address/PO Box/Company name)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"street2","description":"Address line 2 (Apartment/Suite/Unit/Building)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Company","description":"A deposit account's company.","fields":[{"name":"name","description":"The company name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"phoneNumber","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"streetAddress","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StreetAddress","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vatNumber","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"verification","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AsynchronousVerification","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AsynchronousVerification","description":null,"fields":[{"name":"fieldsNeeded","description":"If it didn't pass verification, this array will contain the names of the attributes that failed (e.g., for a Company: ['address.line1'])","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AsynchronousVerificationState","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AsynchronousVerificationState","description":"Something that is expected to eventually become either 'verified' or 'unverified', but may remain 'pending' for an indefinite amount of time","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"pending","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"unverified","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"verified","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Identity","description":"A deposit account's identity.","fields":[{"name":"id","description":"ID of the identity","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"identityDocument","description":"The most recent identity document","args":[],"type":{"kind":"OBJECT","name":"IdentityDocument","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The account-holder name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"verification","description":null,"args":[],"type":{"kind":"OBJECT","name":"AsynchronousVerification","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IdentityDocument","description":"The relevant identity document supplied for identity verification.","fields":[{"name":"identityState","description":"The associated identity's verification state","args":[],"type":{"kind":"ENUM","name":"IdentityVerificationState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"verificationState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IdentityDocumentVerificationStates","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"IdentityDocumentVerificationStates","description":"Identity document verification states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SUCCESSFUL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"STARTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ABANDONED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"IdentityVerificationState","description":"Identity verification states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ERROR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PASSED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"STARTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VERIFYING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"DepositAccountState","description":"Deposit account states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UNAUTHORIZED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VERIFYING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AdditionalOwner","description":"Needed for the verification of legal entities that have multiple owners","fields":[{"name":"address","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdditionalOwnerAddress","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"birthdate","description":null,"args":[],"type":{"kind":"OBJECT","name":"AdditionalOwnerBirthdate","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"firstName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personalIdNumberProvided","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"verification","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdditionalOwnerVerification","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdditionalOwnerAddress","description":null,"fields":[{"name":"country","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdditionalOwnerBirthdate","description":null,"fields":[{"name":"day","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"month","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"year","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdditionalOwnerVerification","description":null,"fields":[{"name":"details","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"detailsCode","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"document","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"documentBack","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AsynchronousVerificationState","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DepositAccountBusiness","description":"Deposit account business types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"individual","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"company","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"non_profit","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AiDisclosure","description":"An AI disclosure.","fields":[{"name":"fundingForAiAttribution","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fundingForAiConsent","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fundingForAiOption","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"generatedByAiConsent","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"generatedByAiDetails","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"involvesAi","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"involvesFunding","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"involvesGeneration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"involvesOther","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"otherAiDetails","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Category","description":"A project category.","fields":[{"name":"analyticsName","description":"Category name in English for analytics use.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"goalHelperLimit","description":"Advised maximum goal limit in USD","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Category name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parentCategory","description":"Category parent","args":[],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parentId","description":"Parent id of the category.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectPhrase","description":"The translatable phrase (e.g. \"An art project\"))","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"Projects in a category.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Filter projects by publically accessible state.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PublicProjectState","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CategoryProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"Category slug.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subcategories","description":"Subcategories.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CategorySubcategoriesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalProjectCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A URL to the category page.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CategoryProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PublicProjectState","description":"Publically visible project states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"LIVE","description":"Active and accepting pledges.","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":"Successfully funded by deadline.","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Failed to fund by deadline.","isDeprecated":false,"deprecationReason":null},{"name":"SUBMITTED","description":"Project is submitted and in prelaunch state.","isDeprecated":false,"deprecationReason":null},{"name":"UPCOMING","description":"Project that is in prelaunch.","isDeprecated":false,"deprecationReason":null},{"name":"LATE_PLEDGE","description":"Project that is successful and accepting late pledges.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CategorySubcategoriesConnection","description":"The connection type for Category.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CategoryEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Category","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CategoryEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CollaboratorPermission","description":"A permission for a collaborator on a project","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"edit_project","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"edit_faq","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"view_pledges","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"fulfillment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"configure_pledge_manager","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"launch_pledge_manager","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"launch_prelaunch","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Country","description":"A supported country.","fields":[{"name":"code","description":"ISO ALPHA-2 code.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Country name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regions","description":"Regions part of this country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Region","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"stripeAccountSupportedRegions","description":"Regions that Stripe supports for Stripe Accounts","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Region","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Region","description":"A region inside a country.","fields":[{"name":"code","description":"Region code.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Region name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectSharedDraft","description":"A Project that has a generated share token.","fields":[{"name":"id","description":"The project id of a shared draft","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The project name of a shared draft","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CuratedCollection","description":"Curated collections of projects, represented by badges.","fields":[{"name":"badge","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentalCommitment","description":null,"fields":[{"name":"commitmentCategory","description":"The type of environmental commitment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentalCommitmentCategory","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"An environmental commitment description","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentalCommitmentCategory","description":"The type of environmental commitment for a project.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"long_lasting_design","description":"long lasting design","isDeprecated":false,"deprecationReason":null},{"name":"sustainable_materials","description":"sustainable materials","isDeprecated":false,"deprecationReason":null},{"name":"environmentally_friendly_factories","description":"environmentally friendly factories","isDeprecated":false,"deprecationReason":null},{"name":"sustainable_distribution","description":"sustainable distribution","isDeprecated":false,"deprecationReason":null},{"name":"reusability_and_recyclability","description":"reusability and recyclability","isDeprecated":false,"deprecationReason":null},{"name":"something_else","description":"something else","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Ratio","description":"A number between 0.0 and 1.0.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectSentimentStats","description":null,"fields":[{"name":"negative","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"neutral","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"positive","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectProfile","description":"A profile for after a project has ended.","fields":[{"name":"blurb","description":"The description of the projects from the project's profile.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"featureImageUrl","description":"Featured image for this project profile.","args":[{"name":"width","description":"The width of the image in pixels.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name from the project's profile.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The project profile's current state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ProjectProfileState","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ProjectProfileState","description":"Various project profile states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"INACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ACTIVE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BitlyHashes","description":"The different bitly hashes for a project","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SHARE","description":"A project's share link","isDeprecated":false,"deprecationReason":null},{"name":"TWEET","description":"A project's twitter share link","isDeprecated":false,"deprecationReason":null},{"name":"FACEBOOK","description":"A project's facebook share link","isDeprecated":false,"deprecationReason":null},{"name":"EMAIL","description":"A project's email share link","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Recommendations","description":"Score and model from recommendations engine if a project was fetched via recommendations.","fields":[{"name":"modelName","description":"Model used for these recommendations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rawScore","description":"Raw score from recommendations.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"score","description":"Recommendations score.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RiskQuestion","description":"A category of risk. Each category corresponds to a question in the project Plan.","fields":[{"name":"inputType","description":"The input type of the risk category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RiskCategoryInput","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The question associated with the risk category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"required","description":"Whether or not this is a required category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The category identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RiskCategoryType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RiskCategoryType","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"delays","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"unexpected_pledge_volume","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"previous_experience","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"fulfillment_plan","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_budget_contingency","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"alternative_fulfillment_path","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RiskCategoryInput","description":"Describes the expected input type for a risk category.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"text","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"radio","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RiskStrategy","description":null,"fields":[{"name":"description","description":"Creator's answer for mitigating this particular risk category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"riskCategory","description":"The type of risk","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RiskCategoryType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"riskQuestion","description":"The question the creator is answering.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RiskQuestion","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ProjectState","description":"Various project states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STARTED","description":"Created and preparing for launch.","isDeprecated":false,"deprecationReason":null},{"name":"SUBMITTED","description":"Ready for launch with a draft submitted for auto-approval.","isDeprecated":false,"deprecationReason":null},{"name":"LIVE","description":"Active and accepting pledges.","isDeprecated":false,"deprecationReason":null},{"name":"CANCELED","description":"Canceled by creator.","isDeprecated":false,"deprecationReason":null},{"name":"SUSPENDED","description":"Suspended for investigation, visible.","isDeprecated":false,"deprecationReason":null},{"name":"PURGED","description":"Suspended and hidden.","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":"Successfully funded by deadline.","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Failed to fund by deadline.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Spreadsheet","description":"A project spreadsheet, including a url and row data","fields":[{"name":"data","description":"The data of the Google Sheet associated to this project","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SpreadsheetDatum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dataLastUpdatedAt","description":"When the data for the sheet was last fetched successfully","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"displayMode","description":"Can be `amount` or `percent` based on the creator's choice","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDisplayableData","description":"Whether a spreadsheet contains the minimum information to render a graphic budget","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"public","description":"Whether the sheet is shareable with the public","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The URL of the Google Sheet associated to this project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SpreadsheetDatum","description":"A row of datum for a funding spreadsheet","fields":[{"name":"description","description":"Expanded description of the purpose of that row","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the row","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"phase","description":"The funding category of the row","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rowNum","description":"The spreadsheet row number","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The dollar value of the row","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectStatus","description":"Project status set by user","fields":[{"name":"enabled","description":"Whether the project status is currently enabled or not (opted-in / opted-out)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Id of a project status","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nextDueDate","description":"The estimated due date for the next_status of the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nextStatus","description":"The next_status of the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nowStatus","description":"The now_status of the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When project status is updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectFeedback","description":"Structured feedback left by a user on a project","fields":[{"name":"createdAt","description":"When the answer was provided","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"questionAnswer","description":"The answer the user provided","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"questionName","description":"The name of the question the user answered","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectMilestone","description":"Milestones for projects","fields":[{"name":"completedAt","description":"When the Milestone was marked as completed","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"milestoneCategory","description":"The category for the Milestone","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MilestoneCategory","description":null,"fields":[{"name":"name","description":"Name of category","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"Order to display category in for Project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Tag","description":"A project tag.","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Tag name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"Projects associated with a tag.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Filter projects by publically accessible state.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PublicProjectState","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TagProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"Tag slug.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A URL for the tag page.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"TagScope","description":"Various scopes for tags.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DISCOVER","description":"Tags currently visible in discovery interfaces.","isDeprecated":false,"deprecationReason":null},{"name":"CREATIVE_PROMPT","description":"Tags currently available as creative prompts.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Submission","description":"A submission for a project on Kickstarter.","fields":[{"name":"appeal","description":"The message from the creator appealing a rejection.","args":[],"type":{"kind":"OBJECT","name":"Message","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasMessages","description":"If the submission has messages between the creator and KSR staff.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isProcessed","description":"If the system has processed a submission for review.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"messages","description":"A submission's messages between the creator and KSR staff.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Message","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The submission's current state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SubmissionState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"submittedAt","description":"When was the project first submitted?","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SubmissionState","description":"Various submission states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DRAFT","description":"Not yet submitted.","isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":"Submitted for review, waiting for acception or rejection.","isDeprecated":false,"deprecationReason":null},{"name":"ACCEPTED","description":"Accepted by a reviewer, can launch.","isDeprecated":false,"deprecationReason":null},{"name":"APPEALED","description":"Rejection appealed, asking for re-review.","isDeprecated":false,"deprecationReason":null},{"name":"REJECTED","description":"Rejected by a reviewer, cannot launch.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Video","description":"A project video","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"previewImageUrl","description":"Preview image url for the video","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Upload status of the video","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"VideoState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"tracks","description":"A video's tracks","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"VideoTracksConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"videoSources","description":"A video's sources (hls, high, base)","args":[],"type":{"kind":"OBJECT","name":"VideoSources","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"VideoState","description":"All available video states","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROCESSING","description":"Initial, incomplete status of a video","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Processing the video file failed","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":"Processing the video file successfully completed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"VideoSources","description":"A video's sources","fields":[{"name":"base","description":null,"args":[],"type":{"kind":"OBJECT","name":"VideoSourceInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"high","description":null,"args":[],"type":{"kind":"OBJECT","name":"VideoSourceInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hls","description":null,"args":[],"type":{"kind":"OBJECT","name":"VideoSourceInfo","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoSourceInfo","description":"The details of a video's source","fields":[{"name":"src","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTracksConnection","description":"The connection type for VideoTrack.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"VideoTrackEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"VideoTrack","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrackEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"VideoTrack","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrack","description":"A video caption","fields":[{"name":"cues","description":"A video track's cues (individaul caption with timestamp)","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"VideoTrackCuesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"importStatus","description":"Import status of a video track","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"VideoTrackState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The type of a video track (caption, subtitle)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"language","description":"The language of the video track","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CaptionLanguage","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"tid","description":"A video track public ID","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"trackSourceUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CaptionLanguage","description":"A language eligible for captions in video tracks.","fields":[{"name":"code","description":"The code used as a key for the language.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CaptionLanguageCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the language.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CaptionLanguageCode","description":"Two letter language code for eligible caption languages","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"EN","description":"English","isDeprecated":false,"deprecationReason":null},{"name":"AR","description":"العربية","isDeprecated":false,"deprecationReason":null},{"name":"CA","description":"Català","isDeprecated":false,"deprecationReason":null},{"name":"CS","description":"Čeština","isDeprecated":false,"deprecationReason":null},{"name":"DA","description":"Dansk","isDeprecated":false,"deprecationReason":null},{"name":"DE","description":"Deutsch","isDeprecated":false,"deprecationReason":null},{"name":"EL","description":"ελληνικά","isDeprecated":false,"deprecationReason":null},{"name":"ES_ES","description":"Español (España)","isDeprecated":false,"deprecationReason":null},{"name":"ES_MX","description":"Español (México)","isDeprecated":false,"deprecationReason":null},{"name":"FI","description":"Suomi","isDeprecated":false,"deprecationReason":null},{"name":"FR","description":"Français","isDeprecated":false,"deprecationReason":null},{"name":"GA","description":"Gaeilge","isDeprecated":false,"deprecationReason":null},{"name":"HE","description":"עברית","isDeprecated":false,"deprecationReason":null},{"name":"HI","description":"हिन्दी","isDeprecated":false,"deprecationReason":null},{"name":"HR","description":"Hrvatski","isDeprecated":false,"deprecationReason":null},{"name":"HU","description":"Magyar","isDeprecated":false,"deprecationReason":null},{"name":"ID","description":"Bahasa Indonesia","isDeprecated":false,"deprecationReason":null},{"name":"IT","description":"Italiano","isDeprecated":false,"deprecationReason":null},{"name":"JA","description":"日本語","isDeprecated":false,"deprecationReason":null},{"name":"KO","description":"한국어","isDeprecated":false,"deprecationReason":null},{"name":"MS","description":"Bahasa Melayu","isDeprecated":false,"deprecationReason":null},{"name":"NB","description":"Norsk bokmål","isDeprecated":false,"deprecationReason":null},{"name":"NPI","description":"नेपाली","isDeprecated":false,"deprecationReason":null},{"name":"NL","description":"Nederlands","isDeprecated":false,"deprecationReason":null},{"name":"NV","description":"Diné bizaad","isDeprecated":false,"deprecationReason":null},{"name":"PL","description":"Polski","isDeprecated":false,"deprecationReason":null},{"name":"PES","description":"فارسی","isDeprecated":false,"deprecationReason":null},{"name":"PRS","description":"دری","isDeprecated":false,"deprecationReason":null},{"name":"PT_BR","description":"Português (Brasil)","isDeprecated":false,"deprecationReason":null},{"name":"PT_PT","description":"Português (Portugal)","isDeprecated":false,"deprecationReason":null},{"name":"RO","description":"Română","isDeprecated":false,"deprecationReason":null},{"name":"RU","description":"Русский","isDeprecated":false,"deprecationReason":null},{"name":"SK","description":"Slovenčina","isDeprecated":false,"deprecationReason":null},{"name":"SV","description":"Svenska","isDeprecated":false,"deprecationReason":null},{"name":"TH","description":"ภาษาไทย","isDeprecated":false,"deprecationReason":null},{"name":"TR","description":"Türkçe","isDeprecated":false,"deprecationReason":null},{"name":"UK","description":"українська","isDeprecated":false,"deprecationReason":null},{"name":"VI","description":"tiếng Việt","isDeprecated":false,"deprecationReason":null},{"name":"YI","description":"יידיש","isDeprecated":false,"deprecationReason":null},{"name":"ZH_CN","description":"简体中文","isDeprecated":false,"deprecationReason":null},{"name":"ZH_TW","description":"繁體中文","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"VideoTrackState","description":"All possible import states for a video track","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"NONE","description":"Not import exists","isDeprecated":false,"deprecationReason":null},{"name":"IMPORTING","description":"An import is in progress","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESS","description":"An import was successful","isDeprecated":false,"deprecationReason":null},{"name":"FAILURE","description":"An import attempt was unsuccessful","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrackCuesConnection","description":"The connection type for VideoTrackCue.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"VideoTrackCueEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"VideoTrackCue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrackCueEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"VideoTrackCue","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrackCue","description":"A single video track caption with timestamp","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Flagging","description":"A report by a user.","fields":[{"name":"details","description":"The detailed reason for the flagging.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"flaggedContent","description":"The content that has been flagged by the user.","args":[],"type":{"kind":"UNION","name":"FlaggableContent","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The general reason for the flagging.","args":[],"type":{"kind":"ENUM","name":"FlaggingKind","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"The user who created the flagging.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"FlaggableContent","description":"Types that can be reported by users","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Message","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null}]},{"kind":"ENUM","name":"FlaggingKind","description":"The bucket for a flagging (general reason).","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROHIBITED_ITEMS","description":"prohibited-items","isDeprecated":false,"deprecationReason":null},{"name":"CHARITY","description":"charity","isDeprecated":false,"deprecationReason":null},{"name":"RESALE","description":"resale","isDeprecated":false,"deprecationReason":null},{"name":"FALSE_CLAIMS","description":"false-claims","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT","description":"misrep-support","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT","description":"not-project","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_VIOLATION","description":"guidelines-violation","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_ISSUES","description":"post-funding-issues","isDeprecated":false,"deprecationReason":null},{"name":"SPAM","description":"spam","isDeprecated":false,"deprecationReason":null},{"name":"ABUSE","description":"abuse","isDeprecated":false,"deprecationReason":null},{"name":"VICES_DRUGS","description":"vices-drugs","isDeprecated":false,"deprecationReason":null},{"name":"VICES_ALCOHOL","description":"vices-alcohol","isDeprecated":false,"deprecationReason":null},{"name":"VICES_WEAPONS","description":"vices-weapons","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_CLAIMS","description":"health-claims","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_REGULATIONS","description":"health-regulations","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_GMOS","description":"health-gmos","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_LIVE_ANIMALS","description":"health-live-animals","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_ENERGY_FOOD_AND_DRINK","description":"health-energy-food-and-drink","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_CONTESTS_COUPONS","description":"financial-contests-coupons","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_SERVICES","description":"financial-services","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_POLITICAL_DONATIONS","description":"financial-political-donations","isDeprecated":false,"deprecationReason":null},{"name":"OFFENSIVE_CONTENT_HATE","description":"offensive-content-hate","isDeprecated":false,"deprecationReason":null},{"name":"OFFENSIVE_CONTENT_PORN","description":"offensive-content-porn","isDeprecated":false,"deprecationReason":null},{"name":"RESELLING","description":"reselling","isDeprecated":false,"deprecationReason":null},{"name":"PLAGIARISM","description":"plagiarism","isDeprecated":false,"deprecationReason":null},{"name":"PROTOTYPE_MISREPRESENTATION","description":"prototype-misrepresentation","isDeprecated":false,"deprecationReason":null},{"name":"UNDISCLOSED_AI_USE","description":"undisclosed-ai-use","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_IMPERSONATION","description":"misrep-support-impersonation","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_OUTSTANDING_FULFILLMENT","description":"misrep-support-outstanding-fulfillment","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_SUSPICIOUS_PLEDGING","description":"misrep-support-suspicious-pledging","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_OTHER","description":"misrep-support-other","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_CHARITY","description":"not-project-charity","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_STUNT_OR_HOAX","description":"not-project-stunt-or-hoax","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_PERSONAL_EXPENSES","description":"not-project-personal-expenses","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_BAREBONES","description":"not-project-barebones","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_OTHER","description":"not-project-other","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_SPAM","description":"guidelines-spam","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_ABUSE","description":"guidelines-abuse","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_REWARD_NOT_AS_DESCRIBED","description":"post-funding-reward-not-as-described","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_REWARD_DELAYED","description":"post-funding-reward-delayed","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_SHIPPED_NEVER_RECEIVED","description":"post-funding-shipped-never-received","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_SELLING_ELSEWHERE","description":"post-funding-creator-selling-elsewhere","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_UNCOMMUNICATIVE","description":"post-funding-creator-uncommunicative","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_INAPPROPRIATE","description":"post-funding-creator-inappropriate","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_SUSPICIOUS_THIRD_PARTY","description":"post-funding-suspicious-third-party","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_ABUSE","description":"comment-abuse","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_DOXXING","description":"comment-doxxing","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_OFFTOPIC","description":"comment-offtopic","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_SPAM","description":"comment-spam","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_ABUSE","description":"backing-abuse","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_DOXXING","description":"backing-doxxing","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_FRAUD","description":"backing-fraud","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_SPAM","description":"backing-spam","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectBackerFriendsConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectFaqConnection","description":"The connection type for ProjectFaq.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectFaqEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectFaq","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectFaqEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"ProjectFaq","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectFaq","description":"Faqs for a project","fields":[{"name":"answer","description":"Faq answer","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When faq was posted","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"position","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"Faq question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When faq was updated","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectCollaboratorConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectCollaboratorEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectCollaboratorEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"The email of a collaborator on a project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"membershipState","description":"The state of a collaborator's membership on a project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorMembershipState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"permissions","description":"The permissions of the collaborator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorPermission","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of a collaborator on a project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CollaboratorMembershipState","description":"State of membership for a collaborator on a project","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"invited","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"active","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"declined","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"inactive","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectRewardConnection","description":"The connection type for Reward.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostConnection","description":"The connection type for Postable.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PostableEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Postable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostableEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Postable","description":"Something that can be posted","fields":[{"name":"actions","description":"Actions you can currently perform","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PostActions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":"The author of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorRole","description":"The author role of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PostAuthorRole","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The date the project update was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"excludedRewards","description":"All rewards belonging to a post that were specifically marked by a creator to be excluded from receiving a post notification. This does not, however, include the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fans","description":"Users that have liked this project update.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasExcludedNoRewardTier","description":"True if creator has excluded the no reward tier from receiving a post notification.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"includedRewards","description":"All rewards that were marked to recieve a post notification, excluding the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isLiked","description":"Whether or not the current user has liked this project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPublic","description":"True if marked as a public public post, false if the post is backers only.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isVisible","description":"True if the post's content is visible to the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Query the read field in post abilities instead."},{"name":"likesCount","description":"The number of likes a post has.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nextPost","description":"The next post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"The project update number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinnedAt","description":"The date the project update was pinned.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previousPost","description":"The previous post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project that belongs to post.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedAt","description":"The date the project update was published.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timeLeftToEdit","description":"How much time a creator or collaborator has left to edit the post.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project update's title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The post type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Post","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"The date the project update was last edited.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The project update's URL.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"CreatorInterview","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null}]},{"kind":"ENUM","name":"Post","description":"Post types","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"FreeformPost","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CreatorInterview","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PostAuthorRole","description":"The project roles a project update author can have.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"creator","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"collaborator","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"PostActions","description":"List actions current user can perform on a post","fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edit","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pin","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publish","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"read","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PostState","description":"Possible states for project posts.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"processing","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"published","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"draft","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PostFormat","description":"The possible post types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"freeform_post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_interview","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectTimelineConnection","description":"The connection type for ProjectTimelineEvent.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectTimelineEventEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectTimelineEvent","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectTimelineEventEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"ProjectTimelineEvent","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectTimelineEvent","description":"An event in a project's timeline","fields":[{"name":"data","description":"Entity attached to the event, e.g. project or post","args":[],"type":{"kind":"UNION","name":"TimelineEventData","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timestamp","description":"The time the event occurred","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The event type. Corresponds to a subset of activity types","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"TimelineEventData","description":"Types that can be reported by users","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"CreatorInterview","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null}]},{"kind":"OBJECT","name":"CreatorInterview","description":"A creator interview.","fields":[{"name":"actions","description":"Actions you can currently perform","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PostActions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"answers","description":"The interview answers associated with the creator interview.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"withSkipped","description":"Includes skipped answers","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withBlank","description":"Includes blank answers","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InterviewAnswerConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":"The author of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorRole","description":"The author role of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PostAuthorRole","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canComment","description":"True if the current user can comment (considers restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canCommentSansRestrictions","description":"True if the current user can comment (does not consider restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserRequestUpdate","description":"Whether a user can request an update about this project from the Creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":"List of comments on the commentable","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentsCount","description":"Comment count - defaults to root level comments only","args":[{"name":"withReplies","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The date the project update was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorPrompt","description":"The prompt for the creator interview.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatorPrompt","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"excludedRewards","description":"All rewards belonging to a post that were specifically marked by a creator to be excluded from receiving a post notification. This does not, however, include the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fans","description":"Users that have liked this project update.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasExcludedNoRewardTier","description":"True if creator has excluded the no reward tier from receiving a post notification.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"includedRewards","description":"All rewards that were marked to recieve a post notification, excluding the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isLiked","description":"Whether or not the current user has liked this project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPublic","description":"True if marked as a public public post, false if the post is backers only.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isVisible","description":"True if the post's content is visible to the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Query the read field in post abilities instead."},{"name":"likesCount","description":"The number of likes a post has.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nextPost","description":"The next post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"The project update number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinnedAt","description":"The date the project update was pinned.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previousPost","description":"The previous post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project that belongs to post.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectRelayId","description":"The root project id under which the comment is nested","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedAt","description":"The date the project update was published.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timeLeftToEdit","description":"How much time a creator or collaborator has left to edit the post.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project update's title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The post type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Post","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"The date the project update was last edited.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The project update's URL.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Postable","ofType":null},{"kind":"INTERFACE","name":"Commentable","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatorPrompt","description":"A set of interview questions to be answered.","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"All the questions in a creator prompt.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InterviewQuestionConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The creator prompt title.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewQuestionConnection","description":"The connection type for InterviewQuestion.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"InterviewQuestionEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"InterviewQuestion","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewQuestionEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"InterviewQuestion","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewQuestion","description":"A creator interview question.","fields":[{"name":"answers","description":"All the answers to the question.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InterviewAnswerConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The interview question text.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"category","description":"The interview question category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InterviewQuestionCategory","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InterviewQuestionCategory","description":"The interview question category.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"learnings","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"blockers","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"inspiration","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"retrospective","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"process","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"InterviewAnswerConnection","description":"The connection type for InterviewAnswer.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"InterviewAnswerEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"InterviewAnswer","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewAnswerEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"InterviewAnswer","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewAnswer","description":"A creator interview answer.","fields":[{"name":"body","description":"The interview answer text.","args":[],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSkipped","description":"True if the creator skipped the associated question.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InterviewQuestion","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FreeformPost","description":"A project update.","fields":[{"name":"actions","description":"Actions you can currently perform","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PostActions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":"The author of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorRole","description":"The author role of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PostAuthorRole","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The body of the post.","args":[],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canComment","description":"True if the current user can comment (considers restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canCommentSansRestrictions","description":"True if the current user can comment (does not consider restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserRequestUpdate","description":"Whether a user can request an update about this project from the Creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":"List of comments on the commentable","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentsCount","description":"Comment count - defaults to root level comments only","args":[{"name":"withReplies","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The date the project update was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"excludedRewards","description":"All rewards belonging to a post that were specifically marked by a creator to be excluded from receiving a post notification. This does not, however, include the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fans","description":"Users that have liked this project update.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasExcludedNoRewardTier","description":"True if creator has excluded the no reward tier from receiving a post notification.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"includedRewards","description":"All rewards that were marked to recieve a post notification, excluding the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isLiked","description":"Whether or not the current user has liked this project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPublic","description":"True if marked as a public public post, false if the post is backers only.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isVisible","description":"True if the post's content is visible to the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Query the read field in post abilities instead."},{"name":"likesCount","description":"The number of likes a post has.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nativeImages","description":"The images associated with the post via native ui.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Image","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"nextPost","description":"The next post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"The project update number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinnedAt","description":"The date the project update was pinned.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previousPost","description":"The previous post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project that belongs to post.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectRelayId","description":"The root project id under which the comment is nested","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedAt","description":"The date the project update was published.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timeLeftToEdit","description":"How much time a creator or collaborator has left to edit the post.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project update's title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The post type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Post","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"The date the project update was last edited.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The project update's URL.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Postable","ofType":null},{"kind":"INTERFACE","name":"Commentable","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Image","description":"A post image","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"URL of the image","args":[{"name":"width","description":"The width of the image in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectActions","description":"List actions current user can perform on a project","fields":[{"name":"displayConvertAmount","description":"Whether or not the user is in a state to see currency conversions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shareDraft","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"showExternalSurvey","description":"Whether or not the external survey should be displayed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BackerSurvey","description":"A backer survey that a creator sends","fields":[{"name":"backerQuestions","description":"Project- and reward- level survey questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"backersRemaining","description":"The number of backers who have not answered the survey","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasBackerQuestionsOrItemOptions","description":"Whether the survey has at least one question or option","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasItemQuestionsOrOptions","description":"Whether the survey has at least one item-level question or option","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"intro","description":"An optional introduction to the backer survey.","args":[{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"forEditor","description":"Whether to return the intro for the editor.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sentAt","description":"When the survey was sent","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"surveyCompletePercentage","description":"The percentage of surveys that have been completed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FulfillmentStatus","description":"All available fulfillment statuses","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"NO_REWARDS_MADE","description":"No rewards made; default value","isDeprecated":false,"deprecationReason":null},{"name":"SOME_REWARDS_MADE","description":"Some rewards made","isDeprecated":false,"deprecationReason":null},{"name":"ALL_REWARDS_MADE","description":"All rewards made","isDeprecated":false,"deprecationReason":null},{"name":"FULFILLING_SOME_REWARDS","description":"Fulfilling some rewards","isDeprecated":false,"deprecationReason":null},{"name":"FULFILLING_ALL_REWARDS","description":"Fulfilling all rewards","isDeprecated":false,"deprecationReason":null},{"name":"FULFILLMENT_COMPLETE","description":"Fulfillment complete","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreatorToolsPaths","description":null,"fields":[{"name":"advancedAnalyticsPath","description":"The advanced analytics path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReportPath","description":"The backer report path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerSurveyPath","description":"The backer survey path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"collaboratorsPath","description":"The project collaborators path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"contactPath","description":"The contact path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorFaqPath","description":"The creator faq path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorHandbookPath","description":"The creator handbook path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboardPath","description":"The project dashboard path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"disbursementsPath","description":"The path to the disbursements page","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"editRewardsProjectPath","description":"The edit rewards project path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentDashboardPath","description":"The fulfillment dashboard path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"helpResourcesPath","description":"The help resources path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"messageThreadsPath","description":"The messages thread path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManagerRedeemUrl","description":"The path for backers to access the project's pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeRedemptionPath","description":"The path to access creator pledge redemption tools","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postsDashboardDraftsPath","description":"The draft posts path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postsDashboardPublishedPath","description":"The published posts path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectBuildPath","description":"The project build path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectPath","description":"The project path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shopifySyncPath","description":"The Shopify sync path path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PaymentPlan","description":"A payment plan for a pledge over time project","fields":[{"name":"amountIsPledgeOverTimeEligible","description":"Amount is enough to qualify for pledge over time, if project allows","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentIncrements","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PaymentIncrement","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"projectIsPledgeOverTimeAllowed","description":"Whether the project permits pledge over time pledges","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserGroup","description":"A named group of users used for reporting, batch actions, or limiting resource access","fields":[{"name":"accessRules","description":"The rules that give the group access to certain resources","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AccessRule","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The user group name","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userCount","description":"Total number of users in the group","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"users","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AccessRule","description":"A rule that specifies a resource that a user group can access and how they access it","fields":[{"name":"convertedUserPercentage","description":"What percent backed the secret resource?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resource","description":"The resource this rule gives access to, e.g. a secret reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"SecretResource","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"How the resource is accessed. Either via link or access is restricted to a predefined group","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AccessRuleTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AccessRuleTypeEnum","description":"The type for an access rule","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"link","description":"link","isDeprecated":false,"deprecationReason":null},{"name":"restricted","description":"restricted","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"UNION","name":"SecretResource","description":"Types that can have access rules to make them secret","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Reward","ofType":null}]},{"kind":"ENUM","name":"SqlFilterOperator","description":"Operators for SQL filters","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"OR","description":"Logical OR","isDeprecated":false,"deprecationReason":null},{"name":"AND","description":"Logical AND","isDeprecated":false,"deprecationReason":null},{"name":"NOT","description":"Logical NOT","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SkuCount","description":"SKU data with count of orders with this SKU","fields":[{"name":"count","description":"The number of orders that include this SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The unique identifier for the SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemName","description":"The name of the item associated with the SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optionValues","description":"The option values associated with this SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"sentAt","description":"The date and time when the survey was sent","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sku","description":"The SKU value","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeManager","description":"Represents a project's pledge manager","fields":[{"name":"acceptsNewBackers","description":"Whether the pledge manager accepts new backers or not","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"notes","description":"Notes associated with the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"optedOut","description":"Whether the creator opted out of the pledge manager.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The associated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reviewAt","description":"The date by which the PM will be reviewed (Date of review submission + 5 business days)","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reviewer","description":"The user assigned to review this pledge manager","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The pledge manager's state, e.g. draft, submitted, approved, denied, etc.","args":[],"type":{"kind":"ENUM","name":"PledgeManagerStateEnum","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tariffSurchargesEnabled","description":"Whether the pledge manager can be used to charge for tariffs.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PledgeManagerStateEnum","description":"The state of the pledge manager, e.g. draft, submitted, approved, denied.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"draft","description":"draft","isDeprecated":false,"deprecationReason":null},{"name":"submitted","description":"submitted","isDeprecated":false,"deprecationReason":null},{"name":"approved","description":"approved","isDeprecated":false,"deprecationReason":null},{"name":"denied","description":"denied","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"StockLocation","description":"Location from which a project fulfills","fields":[{"name":"address","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stockLocationMappings","description":"Places this stock location ships to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StockLocationMapping","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"StockLocationMapping","description":"A place that a project stock location ships to","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stockLocation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StockLocation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CheckoutWave","description":"Represents the window during which backers can redeem their backing","fields":[{"name":"active","description":"Whether the wave is currently active","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"endable","description":"Whether the wave can be closed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"endableAt","description":"When the wave can be closed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ended","description":"Whether the wave has ended","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"endsAt","description":"The end date of the wave","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The associated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reviewCollectedFundsAt","description":"The date when the creator can review the collected funds from PM","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startsAt","description":"The start date of the wave","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShippingConfig","description":"A project's shipping configuration","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemWeightCompletionStats","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemWeightCompletionStats","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingType","description":"How are shipping rates configured? Either flat rate or weight based","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ShippingTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unit","description":"If shipping is weight based, a unit must be provided, e.g. oz or kg","args":[],"type":{"kind":"ENUM","name":"ShippingUnitEnum","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ShippingTypeEnum","description":"The type of shipping set up, either flat rate or weight based","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"weight_based","description":"weight_based","isDeprecated":false,"deprecationReason":null},{"name":"flat_rate","description":"flat_rate","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ShippingUnitEnum","description":"The units that weights will be in, for weight based shipping type","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"oz","description":"oz","isDeprecated":false,"deprecationReason":null},{"name":"kg","description":"kg","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ItemWeightCompletionStats","description":"Stats related to configuring weights for items","fields":[{"name":"allItemsConfigured","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"excludedCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemsMissingWeightsCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemsWithWeightCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShippingZone","description":"A shipping zone configured for a project","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRoot","description":"Whether it has rest of the world location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":"The locations included in the zone.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Optional name for the shipping zone","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project the shipping zone belongs","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"weightRanges","description":"Weight ranges with cost, relevant to the zone.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"WeightRange","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"WeightRange","description":"A min and max weight range with associated cost","fields":[{"name":"cost","description":"The cost for this weight range.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"costFormatted","description":"The cost for this weight range, formatted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":"The max of the weight range (optional)","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":"The min of the weight range","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LocationVatNumber","description":null,"fields":[{"name":"lastUsed","description":"The creator's last used vat number for this location","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locationId","description":"The id of the location associated with a given VAT number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"locationName","description":"The name of the location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"VatConfigLocationEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optOut","description":"Whether the creator has opted out of VAT collection for this location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vatNumber","description":"The unique tax identifier for a given location.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"VatConfigLocationEnum","description":"The possible locations for a VatConfig.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"UK","description":"United Kingdom","isDeprecated":false,"deprecationReason":null},{"name":"EU","description":"European Union","isDeprecated":false,"deprecationReason":null},{"name":"AT","description":"Austria","isDeprecated":false,"deprecationReason":null},{"name":"BE","description":"Belgium","isDeprecated":false,"deprecationReason":null},{"name":"BG","description":"Bulgaria","isDeprecated":false,"deprecationReason":null},{"name":"HR","description":"Croatia","isDeprecated":false,"deprecationReason":null},{"name":"CY","description":"Cyprus","isDeprecated":false,"deprecationReason":null},{"name":"CZ","description":"Czech Republic","isDeprecated":false,"deprecationReason":null},{"name":"DK","description":"Denmark","isDeprecated":false,"deprecationReason":null},{"name":"EE","description":"Estonia","isDeprecated":false,"deprecationReason":null},{"name":"FI","description":"Finland","isDeprecated":false,"deprecationReason":null},{"name":"FR","description":"France","isDeprecated":false,"deprecationReason":null},{"name":"DE","description":"Germany","isDeprecated":false,"deprecationReason":null},{"name":"GR","description":"Greece","isDeprecated":false,"deprecationReason":null},{"name":"HU","description":"Hungary","isDeprecated":false,"deprecationReason":null},{"name":"IE","description":"Ireland","isDeprecated":false,"deprecationReason":null},{"name":"IT","description":"Italy","isDeprecated":false,"deprecationReason":null},{"name":"LV","description":"Latvia","isDeprecated":false,"deprecationReason":null},{"name":"LT","description":"Lithuania","isDeprecated":false,"deprecationReason":null},{"name":"LU","description":"Luxembourg","isDeprecated":false,"deprecationReason":null},{"name":"MT","description":"Malta","isDeprecated":false,"deprecationReason":null},{"name":"NL","description":"Netherlands","isDeprecated":false,"deprecationReason":null},{"name":"PL","description":"Poland","isDeprecated":false,"deprecationReason":null},{"name":"PT","description":"Portugal","isDeprecated":false,"deprecationReason":null},{"name":"RO","description":"Romania","isDeprecated":false,"deprecationReason":null},{"name":"SK","description":"Slovakia","isDeprecated":false,"deprecationReason":null},{"name":"SI","description":"Slovenia","isDeprecated":false,"deprecationReason":null},{"name":"ES","description":"Spain","isDeprecated":false,"deprecationReason":null},{"name":"SE","description":"Sweden","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ShopifyVariant","description":"Collection of information relating to Shopify item variants","fields":[{"name":"price","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"productHandle","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"productId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"productTitle","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sku","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"variantId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"variantTitle","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserBackingsConnection","description":"The connection type for Backing.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"BackingEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":true,"deprecationReason":"Please use backingsCount instead."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BackingEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserCreatedProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderDirection","description":"Ordering direction values","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectsConnectionWithTotalCount","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"recommendationsEnabled","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refTag","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserActiveProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserInvitedProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserOrganizationsConnection","description":"The connection type for Organization.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":"An organization","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"An organization's name","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"An organization's slug","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrganizationMembershipState","description":"Possible states for an organization membership","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DENIED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INACTIVE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UserCuratedPagesConnection","description":"The connection type for CuratedPage.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CuratedPageEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CuratedPage","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CuratedPageEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"CuratedPage","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CuratedPage","description":"A curated page","fields":[{"name":"description","description":"A curated page's description.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"A curated page's unique URL identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"A curated page's title.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserFollowersConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserFollowingConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserSavedProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserConversationsConnection","description":"The connection type for Conversation.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ConversationEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Conversation","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConversationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Conversation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MailboxType","description":"A mailbox","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ALL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INBOX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SENT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UNREAD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ARCHIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SPAM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SurveyResponsesConnection","description":"The connection type for SurveyResponse.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SurveyResponseEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SurveyResponse","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SurveyResponseEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"SurveyResponse","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AddressConnection","description":"The connection type for Address.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AddressEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AddressEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Notification","description":"An object containing a user's notifications.","fields":[{"name":"email","description":"Are email notifications enabled for this topic","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"frequency","description":"The frequency of the notification","args":[],"type":{"kind":"ENUM","name":"UserNotificationFrequency","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The ID of the Notification","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mobile","description":"Are mobile notifications enabled for this topic","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectId","description":"The ID of the associated Project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectName","description":"The name of the associated Project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"topic","description":"The topic of the notification","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationTopic","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserNotificationTopic","description":"User notification topics","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"messages","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"backings","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_digest","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"updates","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"follower","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"friend_activity","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"friend_signup","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"comment_replies","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_edu","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"marketing_update","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_launch","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"UserNotificationFrequency","description":"User notification frequencies","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"once_a_day","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"twice_a_day","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"NewsletterSubscriptions","description":"A subscription a user has to a particular newsletter.","fields":[{"name":"adultNewsletter","description":"The subscription to the AdultNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"alumniNewsletter","description":"The subscription to the AlumniNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"artsCultureNewsletter","description":"The subscription to the ArtsCultureNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"comicsNewsletter","description":"The subscription to the ComicsNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorNewsletter","description":"The subscription to the CreatorNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"filmNewsletter","description":"The subscription to the FilmNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"gamesNewsletter","description":"The subscription to the GamesNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"happeningNewsletter","description":"The subscription to the HappeningNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inventNewsletter","description":"The subscription to the InventNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"learningLabNewsletter","description":"The subscription to the LearningLabNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"musicNewsletter","description":"The subscription to the MusicNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectsYoullLoveNewsletter","description":"The subscription to the ProjectsYoullLoveNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"promoNewsletter","description":"The subscription to the PromoNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishingNewsletter","description":"The subscription to the PublishingNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"weeklyNewsletter","description":"The subscription to the WeeklyNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserRestriction","description":"A user's restrictions","fields":[{"name":"releaseAt","description":"Date when the restriction will be lifted. If null, the restriction is indefinite.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"restriction","description":"Type of restriction a user has","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserRestrictionKind","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserRestrictionKind","description":"Various restriction states, e.g. messaging, commenting","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"messaging","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"commenting","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledging","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"submitting","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"edit_spotlight_pages","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"phone","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prelaunch_early","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RecentSearch","description":"Recent search.","fields":[{"name":"body","description":"Body of the recent search","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"ID of the recent search","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastSearchedAt","description":"Timestamp of the recent search","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Name of the recent search","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UsdType","description":"Informs how USD currencies should be rendered, based on user's location","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"domestic","description":"The user has chosen USD as their currency and they are in the US","isDeprecated":false,"deprecationReason":null},{"name":"international","description":"The user has chosen USD as their currency but they are not in the US","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"LocationsConnection","description":"The connection type for Location.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"LocationEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LocationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Checkout","description":"Intermediary set of changes that have yet to be applied to a backing","fields":[{"name":"action","description":"The action that the backer is attempting to complete with this checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CheckoutAction","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"addOns","description":"The addons that the backer has chosen","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardTotalCountConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"The backing that the checkout is modifying.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedTotal","description":"Desired amount backer wishes to pledge to the project, including the shipping amount, converted to the backer’s chosen currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedShippingTotalMax","description":"Estimated shipping maximum for the reward/addons chosen by the backer for their location","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedShippingTotalMin","description":"Estimated shipping minimum for the reward/addons chosen by the backer for their location","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"failedStateReason","description":"The translated reason that a checkout might have failed","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"guest","description":"Is true when the checkout was created by a guest account","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPledgeOverTimeEligible","description":"Whether this checkout should be given the option to pledge over time","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRacing","description":"Is true when more than one backer is checking out a limited/scarce reward at once","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSepaEligible","description":"Whether the project can accept a pledge with SEPA account as the payment source","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isValidForOnSessionCheckout","description":"Checks whether the checkout is valid prior to charging the user's card.","args":[{"name":"stripePaymentMethodId","description":"the stripe payment method id, starting with either `card_` or `pm_` (the same id passed to stripe)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentIntentClientSecret","description":"the client_secret returned by createPaymentIntent, starts with `pi_` (the same secret passed to stripe)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Validation","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"limitedRewardClaimedUntil","description":"If the checkout contains a limited reward, returns an ISO8601 date for when the claim on the reward is expired","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeTotal","description":"Desired amount backer wishes to pledge to the project, excluding the shipping amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"redirectUrl","description":"The URL to redirect to on a successful checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The reward the backer is expecting","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingLocation","description":"Where the user is based.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingTotal","description":"Shipping amount for the reward chosen by the backer for their location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The current state of the checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CheckoutState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stripeOnSessionPaymentRedirectUrl","description":"The full URL to redirect to after an on_session payment via Stripe","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stripePaymentSetupRedirectUrl","description":"The full URL to redirect to after payment setup via Stripe","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"Desired amount backer wishes to pledge to the project, including the shipping amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CheckoutState","description":"All available states for a checkout","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AUTHORIZING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VERIFYING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CheckoutAction","description":"All actions a user may attempt to complete with a checkout","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PLEDGE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LATE_PLEDGE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ADJUSTMENT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SOURCE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"REAUTH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AUTHENTICATE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Claims","description":"Detect claims in text.","fields":[{"name":"matches","description":"The matched claims found in the text.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ClaimMatches","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ClaimMatches","description":"Token, match_type, start, and end position of claims language.","fields":[{"name":"end","description":"The end position of the token in the source text","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"matchType","description":"The matching strategy used to find the token (either 'POS' or 'regex').","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"start","description":"The start position of the token in the source text","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"token","description":"Token/phrase of matched claims language.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"GoalBuckets","description":"Buckets of project goals","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"BUCKET_0","description":"Range from 0 to 1000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_1","description":"Range from 1000 to 10000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_2","description":"Range from 10000 to 100000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_3","description":"Range from 100000 to 1000000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_4","description":"Range from 1000000 to Infinity USD","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PledgedBuckets","description":"Buckets of amount pledged","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"BUCKET_0","description":"Range from 0 to 1000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_1","description":"Range from 1000 to 10000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_2","description":"Range from 10000 to 100000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_3","description":"Range from 100000 to 1000000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_4","description":"Range from 1000000 to Infinity USD","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RaisedBuckets","description":"Buckets of percentage raised","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"BUCKET_0","description":"Range from 0 to 75 percent","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_1","description":"Range from 75 to 100 percent","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_2","description":"Range from 100 to Infinity percent","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RecommendationsModel","description":"What model to use for project recommendations","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LSI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LDA","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RecommendationsSource","description":"What source to use for project recommendations","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROJECT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BACKINGS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"WATCHES","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TASTE_PROFILE_LIKES","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TASTE_PROFILE_DISLIKES","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ProjectSort","description":"What order to sort projects in","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"MAGIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"POPULARITY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NEWEST","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"END_DATE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MOST_FUNDED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MOST_BACKED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DISTANCE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UploadLimit","description":"A maximum valid filesize for an upload.","fields":[{"name":"contentTypes","description":"An array of the valid content types for an upload of this type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fileSize","description":"Maximum file size in the provided units.","args":[{"name":"unit","description":"The unit to return the file size in.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UploadLimitFileSizeUnit","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UploadLimitFileSizeUnit","description":"The unit of file size the return the upload limit in.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"BYTES","description":"Bytes.","isDeprecated":false,"deprecationReason":null},{"name":"KILOBYTES","description":"Kilobytes.","isDeprecated":false,"deprecationReason":null},{"name":"MEGABYTES","description":"Megabytes.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"UploadLimitFiletype","description":"The type of file we are checking the upload limit of.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASSET_VIDEO","description":"An asset video file.","isDeprecated":false,"deprecationReason":null},{"name":"AUDIO","description":"An audio file.","isDeprecated":false,"deprecationReason":null},{"name":"PHOTO","description":"A photo file.","isDeprecated":false,"deprecationReason":null},{"name":"SMALLER_VIDEO","description":"A smaller video file.","isDeprecated":false,"deprecationReason":null},{"name":"SOUND","description":"A sound file","isDeprecated":false,"deprecationReason":null},{"name":"VIDEO","description":"A video file.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPageForAdminConnection","description":"The connection type for EditorialPageForAdmin.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPageForAdminEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPageForAdmin","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPageForAdminEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"EditorialPageForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPageForAdmin","description":"An Editorial Page fully loaded with admin only fields","fields":[{"name":"attachableAssoc","description":"Rich Text Editor property for attachableAssoc.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"attachableId","description":"Rich Text Editor property for attachableId.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When this page was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"editor","description":"This page's editor.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"flatSlug","description":"(Deprecated) Slug where `/` is replaced by `-`. Used for ref tag and admin routing.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"identifier","description":"An identifier for the page. Used for ref tags.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastRevision","description":"Last revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lookerDashboardUrl","description":"A link to the Looker Dashboard for this page, if any","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The page name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageType","description":"The page type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialPageType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedRevision","description":"Published revision","args":[],"type":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revisions","description":"The revisions in reverse chronological order.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionForAdminConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The slug of this page. Can include `/'.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stats","description":"Stats for the past 30 days","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPageStats","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When this page was last updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialPageType","description":"Editorial page types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"article","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"resource","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prompt","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"international","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"category","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevisionForAdmin","description":"An Editorial Page Revision fully loaded with admin attributes","fields":[{"name":"author","description":"The person who created this revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When this editorial layout was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"metadata","description":"The page metadata","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionMetadata","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"modules","description":"The modules for the editorial revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Editorial","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"page","description":"The page that this revision belongs to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPage","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"published","description":"Is the editorial revision published?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedAt","description":"When the editorial revision was published.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"publisher","description":"The person who published this revision","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sequence","description":"The sequence number for this revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"translationStatus","description":"Counts of translated / total strings for each locale","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialTranslationStatus","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When this editorial layout was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"uuid","description":"The revision uuid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPage","description":"An Editorial Page","fields":[{"name":"createdAt","description":"When this page was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The page name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageType","description":"The page type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialPageType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedRevision","description":"The currently published revision. Can be null.","args":[],"type":{"kind":"OBJECT","name":"EditorialRevision","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The slug of this page. Can include `/'.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When this page was last updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevision","description":"An Editorial Page Revision","fields":[{"name":"metadata","description":"The page metadata","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionMetadata","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"modules","description":"The modules for the editorial revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Editorial","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"page","description":"The page that this revision belongs to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPage","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"uuid","description":"The revision uuid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevisionMetadata","description":null,"fields":[{"name":"description","description":"The revision description","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ogImage","description":"The revision og_image","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The revision title","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Editorial","description":"Editorial tool to create and modify content modules on discovery pages","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"ProjectCollection","ofType":null},{"kind":"OBJECT","name":"NewsletterSignUp","ofType":null},{"kind":"OBJECT","name":"PromoCollection","ofType":null},{"kind":"OBJECT","name":"NewsCollection","ofType":null},{"kind":"OBJECT","name":"FeaturedProjectCollection","ofType":null},{"kind":"OBJECT","name":"SingleProjectContainer","ofType":null},{"kind":"OBJECT","name":"BespokeComponent","ofType":null},{"kind":"OBJECT","name":"Header","ofType":null},{"kind":"OBJECT","name":"MastheadImage","ofType":null},{"kind":"OBJECT","name":"ExploreSubcategories","ofType":null},{"kind":"OBJECT","name":"Article","ofType":null},{"kind":"OBJECT","name":"ShortText","ofType":null},{"kind":"OBJECT","name":"EditorialRichText","ofType":null},{"kind":"OBJECT","name":"SurveyEmbed","ofType":null}]},{"kind":"OBJECT","name":"ProjectCollection","description":"A curated set of projects based off a search query","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"The projects to display in this collection","args":[{"name":"count","description":"The number of projects needed for this collection","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"4"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"The raw search query to populate the project collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this project collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"trackingLabel","description":"The label to track this project collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url that is linked to the project collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"NewsletterSignUp","description":"Sign up for a newsletter.","fields":[{"name":"description","description":"Description of the newsletter","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"newsletterSource","description":"The source that should be recorded for the newsletter signup","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"newsletterType","description":"ID of the newsletter","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"signupHeadline","description":"Headline in the newsletter signup","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"Name of the newsletter","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PromoCollection","description":"A curated set of promos","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":"Layout for this promo collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialPromoCollectionLayout","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"maxFeaturedItems","description":"Maximum number of items to display","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"promos","description":"The promos in this collection","args":[{"name":"all","description":"Request all the items","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Promo","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"soloItemFullWidth","description":"True if single item should be displayed full width","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"theme","description":"Visual theme for this promo collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialPromoCollectionTheme","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"Title for this collection. Can be blank.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialPromoCollectionTheme","description":"Visual themes for Editorial Promo Collections","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROMO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FLEX","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"EditorialPromoCollectionLayout","description":"Layouts for Editorial Promo Collections","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"TWO_COLUMNS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"THREE_COLUMNS","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Promo","description":"A promotional image used in a layout.","fields":[{"name":"audioUrl","description":"The url for the audio player.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backgroundColor","description":"The background color within the promo","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"cta","description":"Promo call to action","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The details of the promo module","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"featuredAt","description":"When this promo should be featured","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"The url for the background image of the promo module.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"language","description":"The primary language of the promo module.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this promo module.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"trackingLabel","description":"The label to track this promo module","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url that is linked to the promo module.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"NewsCollection","description":"A curated set of news articles","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"newsItems","description":"The news items in this collection","args":[{"name":"limit","description":"The number of news items to display in this collection","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"3"},{"name":"all","description":"Request all the items","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"NewsItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this news collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"NewsItem","description":"A curated news article used in an editorial layout.","fields":[{"name":"attribution","description":"The byline of this news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The localized description of this news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"featuredAt","description":"When this news item should be featured","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"The url for the background image of the news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"language","description":"The primary language of the news item. `null` if available in all languages.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mediaType","description":"The type of content of this news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"source","description":"The source or author of the news article.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url that links to the news article.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FeaturedProjectCollection","description":"A set of projects that can be scheduled to be featured","fields":[{"name":"collectionQueryOverride","description":"The project collection query used to generate the featured project's project list","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentlyFeaturedProject","description":"The currently featured project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FeaturedProjectItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"featuredProjectItems","description":"The featured project items in this collection","args":[{"name":"limit","description":"The number of featured project items to display in this collection","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"all","description":"Request all the items","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"FeaturedProjectItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectList","description":"A recommended collection of projects, optionally controlled by collectionQueryOverride","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectCollection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of the featured project section. (eg: 'Featured project')","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FeaturedProjectItem","description":"A curated project to be featured in an editorial layout.","fields":[{"name":"description","description":"The project description or, if specified, the project description override","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"featuredAt","description":"When this featured project item should be featured","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageOverride","description":"If specified, will override the image of the associated project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project that is featured","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectId","description":"The project id (pid) of the featured project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sectionUrl","description":"The see more url for this featured section","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project title or, if specified, the project title override","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SingleProjectContainer","description":"Projects that can be shown in article","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"selectedProject","description":"The currently selected project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SingleProjectItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"singleProjectItems","description":"The selected project items in this collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SingleProjectItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SingleProjectItem","description":"A selected project to be shown in an editorial layout.","fields":[{"name":"description","description":"The project description or, if specified, the project description override","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageOverride","description":"If specified, will override the image of the associated project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project that is featured","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectId","description":"The project id (pid) of the featured project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sectionUrl","description":"The see more url for this featured section","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project title or, if specified, the project title override","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BespokeComponent","description":"Maps directly to a specialty built React component","fields":[{"name":"component","description":"Exact name of the React component (used to lookup the component)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"language","description":"Language for which to display the React component","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"props","description":"Data properties to be passed down to the React component","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Header","description":"A header for an editorial layout.","fields":[{"name":"blurb","description":"The localized blurb of this header","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"categories","description":"The categories linked to this header","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Category","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"links","description":"The links of this header","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"HeaderLink","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this header","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"HeaderLink","description":"A link of a header for an editorial layout.","fields":[{"name":"content","description":"The localized text content of this link","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"openInNewTab","description":"True if the link should open a new tab when clicked on","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url this link points to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MastheadImage","description":"A masthead image with text for an editorial layout.","fields":[{"name":"header","description":"The header text overlaying the masthead image.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"The url for the backgrorund image of the masthead.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subheader","description":"The smaller subheader text overlaying the masthead image.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ExploreSubcategories","description":"Top subcategories","fields":[{"name":"category","description":"The root category","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Category","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"categoryId","description":"The root category database id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subcategories","description":"Top subcategories ordered by number of live projects descending","args":[{"name":"count","description":"The maximum number of subcategories to return","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"10"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ExploreSubcategory","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ExploreSubcategory","description":"A subcategory for ExploreSubcategories","fields":[{"name":"categoryId","description":"The category database id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The subcategory name for the current language","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"The projects to display in this collection","args":[{"name":"count","description":"The number of projects needed for this collection","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"10"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Article","description":"An article block for Editorial pages","fields":[{"name":"attachableAssoc","description":"AdminUI: Rich Text Editor property for attachableAssoc.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"attachableId","description":"AdminUI: Rich Text Editor property for attachableId.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The html body of the article.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"byline","description":"The author of the article. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"displayTopByline","description":"Determines if the byline should be displayed at the top of the article","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publicationDate","description":"The date this article is published on. This date is only informative and won't affect module visibility.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subtitle","description":"The subtitle of the article. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of the article. Can be an empty string.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShortText","description":"An Short Text block for Editorial pages","fields":[{"name":"backgroundColor","description":"Hex value of the background color.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The plain text body of the Short Text. May contain line breaks.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ctaText","description":"The text of the CTA. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ctaUrl","description":"The url the CTA points to. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ruleColor","description":"Hex value of the rule color.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subtitle","description":"The subtitle of the Short Text. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of the Short Text. Can be an empty string.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRichText","description":"A Rich Text block for Editorial pages","fields":[{"name":"attachableAssoc","description":"AdminUI: Rich Text Editor property for attachableAssoc.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"attachableId","description":"AdminUI: Rich Text Editor property for attachableId.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The html body of the rich text module.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SurveyEmbed","description":"An embedded iframe containing a Survey","fields":[{"name":"embedUrl","description":"The url of the survey being embedded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"height","description":"Height of the embedded iframe","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialTranslationStatus","description":null,"fields":[{"name":"locale","description":"The language","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialTranslationStatusLocale","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"Total number of strings","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"translated","description":"Number of strings translated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialTranslationStatusLocale","description":"Editorial locale","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"de","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"es","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"fr","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"it","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ja","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"zh","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevisionForAdminConnection","description":"The connection type for EditorialRevisionForAdmin.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionForAdminEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevisionForAdminEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPageStats","description":null,"fields":[{"name":"backingsCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backingsUsd","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageViews","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectClicks","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialPageSortField","description":"Field you can sort Editorial Pages by","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"NAME","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CREATED_AT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UPDATED_AT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SLUG","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"EditorialPageSortDirection","description":"Direction to sort Editorial Pages","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"EditorialConnection","description":"The connection type for Editorial.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"UNION","name":"Editorial","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"UNION","name":"Editorial","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FundingCurrency","description":"Information about a currency a creator can fund a project in","fields":[{"name":"currency","description":"Currency code","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"decimal","description":"Does the currency use decimals (not zero-decimal)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"maxGoal","description":"Maximum amount a creator can specify for a project goal","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"maxPledge","description":"Maximum amount a backer can specify for a pledge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"minPledge","description":"Minimum amount a backer can specify for a pledge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagsConnection","description":"The connection type for Tag.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"TagEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Tag","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"QuizProjectsConnection","description":"The connection type for QuizProject.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"QuizProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"QuizProject","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"QuizProjectEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"QuizProject","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"QuizProject","description":"An editorialized quiz project for the taste profile quiz.","fields":[{"name":"editorializedBlurb","description":"The editorialized version of the project blurb","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"likeableAttributes","description":"All the likeable attributes for a quiz project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"LikeableAttribute","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LikeableAttribute","description":"An attribute about a quiz project that a user can select in the taste profile quiz.","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"The text of the attribute.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"KsrFact","description":"A Kickstarter fact","fields":[{"name":"contributor","description":"Fact contributor","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"date","description":"Fact date","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fact","description":"Kickstarter fact","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectsOverview","description":"Provides an overview of pledge projects","fields":[{"name":"filterOption","description":"List of sort options","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSet","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"pledges","description":"List of pledged projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PledgedProjectsOverviewPledgesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sortOptions","description":"List of sort options","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSet","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgedProjectsOverviewPledgesConnection","description":"The connection type for PledgeProjectOverviewItem.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectOverviewItemEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectOverviewItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectOverviewItemEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PledgeProjectOverviewItem","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectOverviewItem","description":"Pledged projects in pledge projects overview","fields":[{"name":"backing","description":"backing details","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"flags","description":"tags","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgedProjectsOverviewPledgeFlags","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"tierType","description":"tier type","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"webviewUrl","description":"webview url for survey responses or pledge management","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgedProjectsOverviewPledgeFlags","description":"Flags for pledge in projects overview dashboard","fields":[{"name":"icon","description":"Flag icon type, e.g. time, alert, etc.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":"Translated flag message","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"Flag type, e.g. warning, alert, etc.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSet","description":"sort option group","fields":[{"name":"items","description":"List of sort option groups","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSetItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"Title of the sort option group","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSetItem","description":"sort option group","fields":[{"name":"label","description":"Label for sort option","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"Value for sort option","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PledgeProjectsOverviewSort","description":"Sort types for PledgedProjectsOverview dashboard.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"TIER1_ADDRESS_LOCKING_SOON","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TIER1_PAYMENT_FAILED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TIER1_PAYMENT_AUTHENTICATION_REQUIRED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TIER1_OPEN_SURVEY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PLEDGE_MANAGEMENT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SURVEY_SUBMITTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PLEDGE_COLLECTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ADDRESS_CONFIRMED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AWAITING_REWARD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"REWARD_RECEIVED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BackingsDashboardSortOptions","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"RELEVANCY","description":"Sort by relevancy","isDeprecated":false,"deprecationReason":null},{"name":"OLDEST_FIRST","description":"Sort by oldest first","isDeprecated":false,"deprecationReason":null},{"name":"NEWEST_FIRST","description":"Sort by newest first","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PledgeProjectsOverviewFilterInput","description":null,"fields":null,"inputFields":[{"name":"rewardStatuses","description":"Filter by one or more reward statuses.","type":{"kind":"ENUM","name":"PledgeProjectsOverviewRewardStatusFilter","ofType":null},"defaultValue":null},{"name":"pledgeDate","description":"Filter by one or more years.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PledgeProjectsOverviewRewardStatusFilter","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"All","description":"All reward types","isDeprecated":false,"deprecationReason":null},{"name":"AWAITING_REWARD","description":"Pledges awaiting rewards for","isDeprecated":false,"deprecationReason":null},{"name":"RECEIVED","description":"pledges reward received","isDeprecated":false,"deprecationReason":null},{"name":"NO_REWARD","description":"Pledges with no rewards","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SavedSearchSegment","description":"Saved search segment.","fields":[{"name":"id","description":"ID of the saved search segment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"segmentBody","description":"Body of the saved search segment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"segmentName","description":"Name of the saved search segment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"segmentOrigin","description":"Origin of the saved search segment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ValidateDigitalResource","description":"Validates a digital resource CSV file","fields":[{"name":"duplicateResources","description":"List of duplicate resources","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"usedResources","description":"List of used resources","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"valid","description":"Are there enough provide resources for the selected amount of backings","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"validResources","description":"Count of resources that can be imported","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BackgroundJobProgress","description":"Progress of tracking number processing","fields":[{"name":"completed","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BackgroundJobProgressStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BackgroundJobProgressStatusEnum","description":"Status of background job progress","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROCESSING","description":"Job is processing","isDeprecated":false,"deprecationReason":null},{"name":"COMPLETED","description":"Job is completed","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Job has failed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"OptOutReason","description":"Information about why creators would opt out of using our pledge manager","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"followUpQuestion","description":"A follow-up question for the selected reason","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"key","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OptOutReasonEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"options","description":"The options associated with the follow-up question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"placeholder","description":"Placeholder text for the follow-up question","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"prompt","description":"Whether or not the reason has a follow-up question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"secondaryFollowUp","description":"An additional follow-up question for the selected reason","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"secondaryPlaceholder","description":"Placeholder text for the secondary follow-up question","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OptOutReasonEnum","description":"Reasons for opting out of using our pledge manager","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"missing_features","description":"missing_features","isDeprecated":false,"deprecationReason":null},{"name":"lack_of_confidence","description":"lack_of_confidence","isDeprecated":false,"deprecationReason":null},{"name":"ineligible","description":"ineligible","isDeprecated":false,"deprecationReason":null},{"name":"committed_to_another_pm","description":"committed_to_another_pm","isDeprecated":false,"deprecationReason":null},{"name":"other","description":"other","isDeprecated":false,"deprecationReason":null},{"name":"legacy","description":"legacy","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectInvestigationConnection","description":"The connection type for ProjectInvestigation.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectInvestigationEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectInvestigation","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectInvestigationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"ProjectInvestigation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectInvestigation","description":null,"fields":[{"name":"creatorHrcTier","description":"The project's creator HRC tier.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"flaggingsCount","description":"The number of flaggings in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"openZendeskTicketsCount","description":"The number of open Zendesk tickets in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectDeadline","description":"The project's deadline.","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectId","description":"The project's pid.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectName","description":"The project's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectState","description":"The project's state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reportCategories","description":"The categories of reports in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reportStatuses","description":"The statuses of reports in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reportsCount","description":"The number of reports in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"zendeskTicketsCount","description":"The number of Zendesk tickets in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"TaskState","description":"Task states","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"open","description":"Open task","isDeprecated":false,"deprecationReason":null},{"name":"issue","description":"Completed task, marked as issue","isDeprecated":false,"deprecationReason":null},{"name":"nonissue","description":"Completed task, marked as nonissue","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"TaskProjectReportCategory","description":"Project report task categories.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"vices_drugs","description":"Category: vices-drugs","isDeprecated":false,"deprecationReason":null},{"name":"vices_alcohol","description":"Category: vices-alcohol","isDeprecated":false,"deprecationReason":null},{"name":"vices_weapons","description":"Category: vices-weapons","isDeprecated":false,"deprecationReason":null},{"name":"health_claims","description":"Category: health-claims","isDeprecated":false,"deprecationReason":null},{"name":"health_regulations","description":"Category: health-regulations","isDeprecated":false,"deprecationReason":null},{"name":"health_gmos","description":"Category: health-gmos","isDeprecated":false,"deprecationReason":null},{"name":"health_live_animals","description":"Category: health-live-animals","isDeprecated":false,"deprecationReason":null},{"name":"health_energy_food_and_drink","description":"Category: health-energy-food-and-drink","isDeprecated":false,"deprecationReason":null},{"name":"financial_contests_coupons","description":"Category: financial-contests-coupons","isDeprecated":false,"deprecationReason":null},{"name":"financial_services","description":"Category: financial-services","isDeprecated":false,"deprecationReason":null},{"name":"financial_political_donations","description":"Category: financial-political-donations","isDeprecated":false,"deprecationReason":null},{"name":"offensive_content_hate","description":"Category: offensive-content-hate","isDeprecated":false,"deprecationReason":null},{"name":"offensive_content_porn","description":"Category: offensive-content-porn","isDeprecated":false,"deprecationReason":null},{"name":"prohibited_items","description":"Category: prohibited-items","isDeprecated":false,"deprecationReason":null},{"name":"reselling","description":"Category: reselling","isDeprecated":false,"deprecationReason":null},{"name":"plagiarism","description":"Category: plagiarism","isDeprecated":false,"deprecationReason":null},{"name":"resale","description":"Category: resale","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support_impersonation","description":"Category: misrep-support-impersonation","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support_outstanding_fulfillment","description":"Category: misrep-support-outstanding-fulfillment","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support_suspicious_pledging","description":"Category: misrep-support-suspicious-pledging","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support_other","description":"Category: misrep-support-other","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support","description":"Category: misrep-support","isDeprecated":false,"deprecationReason":null},{"name":"not_project_charity","description":"Category: not-project-charity","isDeprecated":false,"deprecationReason":null},{"name":"not_project_stunt_or_hoax","description":"Category: not-project-stunt-or-hoax","isDeprecated":false,"deprecationReason":null},{"name":"not_project_personal_expenses","description":"Category: not-project-personal-expenses","isDeprecated":false,"deprecationReason":null},{"name":"not_project_barebones","description":"Category: not-project-barebones","isDeprecated":false,"deprecationReason":null},{"name":"not_project_other","description":"Category: not-project-other","isDeprecated":false,"deprecationReason":null},{"name":"not_project","description":"Category: not-project","isDeprecated":false,"deprecationReason":null},{"name":"prototype_misrepresentation","description":"Category: prototype-misrepresentation","isDeprecated":false,"deprecationReason":null},{"name":"false_claims","description":"Category: false-claims","isDeprecated":false,"deprecationReason":null},{"name":"guidelines_spam","description":"Category: guidelines-spam","isDeprecated":false,"deprecationReason":null},{"name":"guidelines_abuse","description":"Category: guidelines-abuse","isDeprecated":false,"deprecationReason":null},{"name":"guidelines_violation","description":"Category: guidelines-violation","isDeprecated":false,"deprecationReason":null},{"name":"undisclosed_ai_use","description":"Category: undisclosed-ai-use","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_reward_not_as_described","description":"Category: post-funding-reward-not-as-described","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_reward_delayed","description":"Category: post-funding-reward-delayed","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_shipped_never_received","description":"Category: post-funding-shipped-never-received","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_creator_selling_elsewhere","description":"Category: post-funding-creator-selling-elsewhere","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_creator_uncommunicative","description":"Category: post-funding-creator-uncommunicative","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_creator_inappropriate","description":"Category: post-funding-creator-inappropriate","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_suspicious_third_party","description":"Category: post-funding-suspicious-third-party","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_issues","description":"Category: post-funding-issues","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CreatorHrcStatusTier","description":"Creator HRC status tiers.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"hrc1","description":"HRC status tier: HRC 1","isDeprecated":false,"deprecationReason":null},{"name":"hrc2","description":"HRC status tier: HRC 2","isDeprecated":false,"deprecationReason":null},{"name":"hrc3","description":"HRC status tier: HRC 3","isDeprecated":false,"deprecationReason":null},{"name":"hrc4","description":"HRC status tier: HRC 4","isDeprecated":false,"deprecationReason":null},{"name":"hrc5","description":"HRC status tier: HRC 5","isDeprecated":false,"deprecationReason":null},{"name":"non_hrc","description":"HRC status tier: Non-HRC","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"OpenSearchSort","description":"Sort order for OpenSearch queries","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"asc","description":"Ascending order","isDeprecated":false,"deprecationReason":null},{"name":"desc","description":"Descending order","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":"The mutation root of the Kickstarter GraphQL interface","fields":[{"name":"acceptOrRejectAddressSuggestion","description":"Updates an address if the user rejects or accepts a suggestion","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AcceptOrRejectAddressSuggestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AcceptOrRejectAddressSuggestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"acceptOrderEdit","description":"Confirm payment and complete the order edit process","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AcceptOrderEditInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AcceptOrderEditPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"acknowledgeUpgrades","description":"Indicates that a backer has acknowledged the available upgrades step in checkout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AcknowledgeUpgradesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AcknowledgeUpgradesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"activatePrelaunch","description":"Activates the prelaunch page for a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ActivateProjectPrelaunchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ActivateProjectPrelaunchPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addUserToSecretRewardGroup","description":"Adds a user to a secret reward user group","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AddUserToSecretRewardGroupInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AddUserToSecretRewardGroupPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"answerProjectFeedbackQuestion","description":"Updates the toggle-able options of the spreadsheet graph","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AnswerProjectFeedbackQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AnswerProjectFeedbackQuestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"applyPaymentSourceToCheckout","description":"Given a checkout that already exists, this mutation just applies a specific payment source to its backing. That's it! If you need to create a checkout and backing from scratch, use CreateBackingType.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ApplyPaymentSourceToCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ApplyPaymentSourceToCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"assignPledgeManager","description":"Assigns a user to review a pledge manager. If not given any optional parameters, will assign the pledge manager to the current logged-in user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AssignPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AssignPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"batchUpdateSurveyResponseAddresses","description":"Batch updates addresses for users's active survey responses","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"BatchUpdateSurveyResponseAddressesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BatchUpdateSurveyResponseAddressesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"blockUser","description":"Block a user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"BlockUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BlockUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"bulkEditQuestions","description":"Bulk edits the entire set of backer questions for a backer survey","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"BulkEditQuestionsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BulkEditQuestionsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"bulkEditStockLocationMappings","description":"Takes a stock location and bulk edits the location mapping","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"BulkEditStockLocationMappingsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BulkEditStockLocationMappingsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"calculateOrderEditTotals","description":"Given an order edit, calculates the tax, shipping, surcharge, and other totals","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CalculateOrderEditTotalsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CalculateOrderEditTotalsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"cancelBacking","description":"Cancel a pledged backing","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CancelBackingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CancelBackingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"cancelProject","description":"Cancel a live Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CancelProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CancelProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clearUserUnseenActivity","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ClearUserUnseenActivityInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ClearUserUnseenActivityPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"closeWave","description":"Ends a given checkout wave.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CloseWaveInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CloseWavePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completeOnSessionCheckout","description":"Complete a checkout originating from an session payment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CompleteOnSessionCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CompleteOnSessionCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completeOrder","description":"Confirm payment and complete the order","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CompleteOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CompleteOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completeZeroDollarOrder","description":"Complete a $0 order","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CompleteZeroDollarOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CompleteZeroDollarOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"confirmAppleIdDisconnect","description":"Finalizes the Apple ID disconnect. Destroys apple_account and sets a new email and password","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ConfirmAppleIdDisconnectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ConfirmAppleIdDisconnectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"confirmOrderAddress","description":"Confirm order address","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ConfirmOrderAddressInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ConfirmOrderAddressPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"copyRewardItems","description":"Copy Reward Items from one Project to another.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CopyRewardItemsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CopyRewardItemsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createAddress","description":"Save a new address.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAddressInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateAddressPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createApplePayBacking","description":"[DEPRECATED in favor of CreateBackingType] Create a checkout with Apple Pay.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateApplePayBackingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateApplePayBackingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createAsset","description":"Create an asset.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAssetInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateAssetPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createAttributionEvent","description":"Creates an attribution event. Specifying a project will pass the project properties for attribution events. Sending this request as a logged-in user passes that user's properties as well. Any passed-in property with the same name overwrites the generated properties.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAttributionEventInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateAttributionEventPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createBackerReportSegment","description":"Save or update a search segment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateBackerReportSegmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateBackerReportSegmentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createBackerSurvey","description":"Creates a backer survey and generates master variants for each project item if needed","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateBackerSurveyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateBackerSurveyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createBacking","description":"Create a backing and checkout and process payment.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateBackingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateBackingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createCheckout","description":"Create a backing and checkout without syncing to Rosie","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createComment","description":"Post a comment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostCommentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostCommentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createCountrySignup","description":"Create a country signup.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateCountrySignupInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateCountrySignupPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createCreatorInterview","description":"Create a new creator interview","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateCreatorInterviewInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateCreatorInterviewPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createEditorialLayout","description":"Create an Editorial Layout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEditorialLayoutTypeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateEditorialLayoutTypePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createEligibilityQuestionnaire","description":"create a filled out eligibility questionnaire recording access to PM.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEligibilityQuestionnaireInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateEligibilityQuestionnairePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createFlagging","description":"Create a flagging (report) of a piece flaggable content.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateFlaggingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateFlaggingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createFreeformPost","description":"Create a new project post/update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateFreeformPostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateFreeformPostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOption","description":"Creates an option type and values for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOptionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOptionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateBackingAddress","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateBackingAddressInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateBackingAddressPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateDraftOrderEdit","description":"Creates or updates an order edit in a draft state","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateDraftOrderEditInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateDraftOrderEditPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateItemTaxConfig","description":"Creates/updates item tax config and creates/updates tax category for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateItemTaxConfigInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateItemTaxConfigPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdatePreviewOrder","description":"Creates or updates a preview order with given starting attributes","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdatePreviewOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdatePreviewOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateRecentSearch","description":"Save or update a recent search","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateRecentSearchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateRecentSearchPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateShippingZone","description":"Creates (or updates) a shipping zone with weight ranges and locations","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateShippingZoneInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateShippingZonePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateShop","description":"Creates or updates a Shopify shop","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateShopInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateShopPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateTrackingNumber","description":"Create or update a shipment's tracking number","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateTrackingNumberInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateTrackingNumberPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateVatConfig","description":"Creates/updates a VAT config","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateVatConfigInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateVatConfigPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createPaymentIntent","description":"Create a Stripe PaymentIntent in order to collect an on-session payment via the Stripe PaymentElement","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePaymentIntentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreatePaymentIntentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createPaymentSource","description":"Create a payment source","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePaymentSourceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreatePaymentSourcePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createPledgeManagementReward","description":"create a reward to be made available in Pledge Management.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePledgeManagementRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreatePledgeManagementRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":"Start a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectComment","description":"Post a project comment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostProjectCommentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostProjectCommentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectDepositAccount","description":"Creates a Deposit Account on Rosie, and a Stripe Connect Account.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectDepositAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectDepositAccountPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectImage","description":"Create a project image.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectImageInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectImagePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectPaymentSource","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectPaymentSourceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectPaymentSourcePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectUpdateRequest","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectUpdateRequestInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectUpdateRequestPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectVideo","description":"Create a project video.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectVideoInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectVideoPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createQuestion","description":"Creates a question for an object","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateQuestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createRefundCharge","description":"Create a refund charge to fund a refund","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateRefundChargeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateRefundChargePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createReward","description":"create a reward on a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createRewardItem","description":"Create an item which is available through the project's backer rewards.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateRewardItemInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateRewardItemPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createSetupIntent","description":"Create a Stripe SetupIntent in order to render new Stripe Elements","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateSetupIntentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateSetupIntentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createSheetForProject","description":"Creates a copy of the master Sheet and shares it with the project owner","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateSheetForProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateSheetForProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createTrackEvent","description":"Creates a track event","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTrackEventInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateTrackEventPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createUser","description":"Creates a new registered user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createUserSlug","description":"Add a user's slug.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateUserSlugInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateUserSlugPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createUserUrl","description":"Add a user's website.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateUserUrlsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateUserUrlsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createVariantMappings","description":"Creates a batch of variant mappings between Kickstarter & Shopify item variant (skus)","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateVariantMappingsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateVariantMappingsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createVideoTrack","description":"Create a video track (caption) for a Project Video","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateVideoTrackInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateVideoTrackPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createWave","description":"Creates a checkout wave for a given project, assuming all pre-requisites are complete.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateWaveInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateWavePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deactivatePrelaunch","description":"Deactivates the prelaunch page for a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeactivateProjectPrelaunchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeactivateProjectPrelaunchPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deactivateProjectCollaborator","description":"Deactivate a collaborator on a project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeactivateProjectCollaboratorInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeactivateProjectCollaboratorPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAddress","description":"Deletes an address","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAddressInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteAddressPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAsset","description":"Delete a asset.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAssetInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteAssetPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteBackerReportSegment","description":"Delete a search segment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteBackerReportSegmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteBackerReportSegmentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteBackerSurvey","description":"Deletes a backer survey","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteBackerSurveyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteBackerSurveyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteComment","description":"Delete a comment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteCommentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteCommentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteOption","description":"Deletes an option type and values for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteOptionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteOptionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletePost","description":"Delete a project post","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeletePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":"Delete an unlaunched Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProjectComment","description":"Delete a comment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectCommentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteProjectCommentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProjectImage","description":"Delete a project image.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectImageInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteProjectImagePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProjectVideo","description":"Delete a project video.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectVideoInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteProjectVideoPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteQuestion","description":"Deletes a question","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteQuestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteRecentSearch","description":"Delete a recent search","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteRecentSearchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteRecentSearchPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteReward","description":"Delete a reward from a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteRewardItem","description":"Delete a reward item from a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteRewardItemInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteRewardItemPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteShippingZone","description":"Delete a shipping zone.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteShippingZoneInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteShippingZonePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteStockLocation","description":"Deletes a stock location and associated address","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteStockLocationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteStockLocationPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteUserUrl","description":"Delete a user's url","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteUserUrlsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteUserUrlsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteVariantMappings","description":"Deletes all variant mappings for a shopify shop, refreshing its state","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteVariantMappingsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteVariantMappingsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteVideoTrack","description":"Delete a video track (caption) from a video","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteVideoTrackInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteVideoTrackPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dislikeProject","description":"Adds disliked projects to a users taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DislikeProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DislikeProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"distributeDigitalAccessResources","description":"Distribute digital access resources like access keys or URLs to backers with digital rewards","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DistributeDigitalAccessResourcesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DistributeDigitalAccessResourcesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"endLatePledges","description":"End late pledges for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EndLatePledgesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EndLatePledgesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"featureReward","description":"Feature a reward for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FeatureRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FeatureRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"followUser","description":"Causes the current user to follow a specified user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FollowUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FollowUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"generateProjectPreview","description":"Enable the preview url for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"GenerateProjectPreviewInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"GenerateProjectPreviewPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"inviteProjectCollaborator","description":"Invite a new collaborator on a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"InviteProjectCollaboratorInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"InviteProjectCollaboratorPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"issueRefund","description":"Issue a refund for a backer. Can include the refunding of both the pledge and the PM transactions.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"IssueRefundInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"IssueRefundPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"launchProject","description":"Launch a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LaunchProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LaunchProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"likePost","description":"Like a specified project update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LikePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LikePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"likeProject","description":"Adds a like for the passed in project to the user's taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LikeProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LikeProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"likeQuizProject","description":"Adds a quiz project and any attributes the user has liked to their taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LikeQuizProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LikeQuizProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"lockAddresses","description":"Locks backer address changes for a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LockAddressesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LockAddressesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"migrateToFulfillmentStatus","description":"Migrate's a project's eligible backings to new fulfillment status tool.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"MigrateToFulfillmentStatusInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"MigrateToFulfillmentStatusPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optInToPledgeManager","description":"Opt in to a pledge manager","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"OptInToPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"OptInToPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optOutOfPledgeManager","description":"Opt out of a pledge manager","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"OptOutOfPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"OptOutOfPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSourceDelete","description":"Delete a user's payment source","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PaymentSourceDeleteInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PaymentSourceDeletePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pinPost","description":"Pin a project update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PinPostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PinPostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postExcludeReward","description":"Exclude a reward's backers from getting notifications about a post.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostExcludeRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostExcludeRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postIncludeReward","description":"Include a reward's backers in notifications about a post.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostIncludeRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostIncludeRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"processDigitalResourcesCsv","description":"Distribute digital access resources from csv upload","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ProcessDigitalResourcesCsvInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProcessDigitalResourcesCsvPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"processTrackingNumbers","description":"Processes tracking numbers for a given project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ProcessTrackingNumbersInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProcessTrackingNumbersPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"publishEditorialLayout","description":"Publish an Editorial Layout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PublishEditorialLayoutTypeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PublishEditorialLayoutTypePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"publishPost","description":"Publish a project post","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PublishPostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PublishPostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refreshSpreadsheetData","description":"Refreshes the spreadsheet data from the sheet","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshSpreadsheetDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RefreshSpreadsheetDataPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rejectOrderEdit","description":"Reject the order edit","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RejectOrderEditInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RejectOrderEditPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"removeSheetFromProject","description":"Removes the spreadsheet associated to a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RemoveSheetFromProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RemoveSheetFromProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reportSpam","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ReportSpamInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ReportSpamPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"requestAppleIdDisconnectEmail","description":"Requests an Apple ID disconnect email","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RequestAppleIdDisconnectEmailInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RequestAppleIdDisconnectEmailPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"requestPasswordReset","description":"Requests a password reset email.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RequestPasswordResetInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RequestPasswordResetPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"resetBackerSurvey","description":"Reset a backer survey","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetBackerSurveyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ResetBackerSurveyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revertPledgeManagerToDraft","description":"Reverts a pledge manager to draft state","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RevertPledgeManagerToDraftInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RevertPledgeManagerToDraftPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reviewPledgeManager","description":"Sets pledge manager state to approved or denied based on outcome of review","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ReviewPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ReviewPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sendMessage","description":"Send a message","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SendMessageInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SendMessagePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sendSubmissionMessage","description":"Send a message for a project submission","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SendSubmissionMessageInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SendSubmissionMessagePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sendSurvey","description":"Sends a backer survey and creates backer carts","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SendSurveyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SendSurveyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setAddressAsPrimary","description":"Sets an address as the primary/default address for the user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetAddressAsPrimaryInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetAddressAsPrimaryPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setAddressCollectionEnabled","description":"Sets address_collection_enabled","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetAddressCollectionEnabledInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetAddressCollectionEnabledPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setBackingFulfillmentStatuses","description":"Sets the fulfillment status of multiple backings based on various filters.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetBackingFulfillmentStatusesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetBackingFulfillmentStatusesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setBackingNote","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetBackingNoteInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetBackingNotePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setProjectSlug","description":"Set a project slug.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetProjectSlugInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetProjectSlugPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setProjectStatus","description":"Updates the project status","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetProjectStatusInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetProjectStatusPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setShippingConfig","description":"Sets a project's shipping configuration, e.g. weight based or flat rate","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetShippingConfigInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetShippingConfigPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setTaxCategory","description":"Sets tax category for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetTaxCategoryInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetTaxCategoryPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setUserBadges","description":"Sets the badges for a given user, removes those not present in the list","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetUserBadgesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetUserBadgesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"signInWithApple","description":"Signs in or sign up a user via the Sign in With Apple service","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SignInWithAppleInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SignInWithApplePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitOrderEdit","description":"Submits an OrderEdit when it is done being edited","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitOrderEditInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitOrderEditPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitPledgeManager","description":"Submits a draft pledge manager","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitProject","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitRefundCheckout","description":"Refund a backing.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitRefundCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitRefundCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitResponses","description":"Associates backing with an address, updates cart with item preference selections, and creates answers to survey questions.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitResponsesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitResponsesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitVatNumber","description":"Submits the VAT number to rosie","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitVatNumberInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitVatNumberPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"succeedOrder","description":"Confirm payment and complete the order","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SucceedOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SucceedOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleCommentPin","description":"Toggle whether a comment is pinned.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleCommentPinInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleCommentPinPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleProjectMilestone","description":"Toggles a milestone for a given project and category to completed or not completed","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleProjectMilestoneInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleProjectMilestonePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleProjectPreview","description":"Enable & disable the preview url for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleProjectPreviewInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleProjectPreviewPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleSyncingForShop","description":"Toggles the syncing state for a Shopify shop","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleSyncingForShopInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleSyncingForShopPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleTariffSurchargesEnabled","description":"Toggle whether a project can set up and collect tariff surcharges","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleTariffSurchargesEnabledInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleTariffSurchargesEnabledPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"translateEditorialLayout","description":"Translate an Editorial Layout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"TranslateEditorialLayoutTypeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TranslateEditorialLayoutTypePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"triggerThirdPartyEvent","description":"Triggers third party event","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"TriggerThirdPartyEventInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TriggerThirdPartyEventPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unblockUser","description":"Unblock a user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnblockUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnblockUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"undislikeProject","description":"Removes a like for the passed in project from the user's taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UndislikeProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UndislikeProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unfollowUser","description":"Causes the current user to unfollow a specified user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnfollowUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnfollowUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unlikePost","description":"Unlike a specified project update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnlikePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnlikePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unlikeProject","description":"Removes a like for the passed in project from the user's taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnlikeProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnlikeProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unpinPost","description":"Unpin a project update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnpinPostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnpinPostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unpublishEditorialLayout","description":"Unpublish an Editorial Layout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnpublishEditorialLayoutTypeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnpublishEditorialLayoutTypePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"untagProject","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UntagProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UntagProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unwatchProject","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnwatchProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnwatchProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateAcceptsNewBackers","description":"Updates the pledge manager to enable or disable accepts_new_backers","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAcceptsNewBackersInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateAcceptsNewBackersPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateBackerCompleted","description":"Update the backing completed at field with a backing_completed toggle","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateBackerCompletedInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateBackerCompletedPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateBackerSurveyIntro","description":"Updates backer survey with a rich text intro","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateBackerSurveyIntroInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateBackerSurveyIntroPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateBacking","description":"Update an existing backing for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateBackingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateBackingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateBackingPaymentSource","description":"Update a backing's payment source","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateBackingPaymentSourceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateBackingPaymentSourcePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateConsent","description":"Handle a user's updated consent for data collection purposes.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateConsentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateConsentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateCreatorInterview","description":"Update a creator interview","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateCreatorInterviewInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateCreatorInterviewPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateCrossSellsOnOrder","description":"Creates, updates, or destroys associations between an Order and a backer's selected Cross Sells","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateCrossSellsOnOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateCrossSellsOnOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateFulfillmentModalDismissedAt","description":"Update a project's fulfillment_modal_dismissed_at timestamp.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateFulfillmentModalDismissedAtInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateFulfillmentModalDismissedAtPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateFulfillmentStatus","description":"Update a project's fulfillment_status.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateFulfillmentStatusInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateFulfillmentStatusPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateItemVariants","description":"Updates an array of ItemVariant","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateItemVariantsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateItemVariantsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateItemWeights","description":"Updates item weights given a set of item ids and weights","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateItemWeightsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateItemWeightsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateOption","description":"Updates an option type and values for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOptionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateOptionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrderAdjustment","description":"Update an order adjustment success state and error message","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrderAdjustmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateOrderAdjustmentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrderableConfig","description":"Update OrderableConfig for an Orderable","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrderableConfigInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateOrderableConfigPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePledgeManagementReward","description":"update a reward to be made available in Pledge Management.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePledgeManagementRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePledgeManagementRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePledgeManagerState","description":"Update state for a Pledge Manager","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePledgeManagerStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePledgeManagerStatePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePost","description":"Update a project post","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":"Update an existing Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProjectCollaborator","description":"Update a collaborator on a project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectCollaboratorInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectCollaboratorPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProjectPaymentSource","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectPaymentSourceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectPaymentSourcePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProjectRiskStrategies","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectRiskStrategiesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectRiskStrategiesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProjectVerifiedCreatorName","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectVerifiedCreatorNameInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectVerifiedCreatorNamePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateQuestion","description":"Updates a question","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateQuestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateRefundCheckout","description":"Update a refund checkout state and error message","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateRefundCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateRefundCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateResourceAudience","description":"Updates audience for a specified resource","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateResourceAudienceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateResourceAudiencePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateReward","description":"Update a reward on a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateRewardItem","description":"Update an item which is available through the project's backer rewards.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateRewardItemInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateRewardItemPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateRewardShippingRates","description":"Update ShippingRates for a BackerReward","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateRewardShippingRatesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateRewardShippingRatesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateSpreadsheetToggles","description":"Updates the toggle-able options of the spreadsheet graph","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateSpreadsheetTogglesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateSpreadsheetTogglesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserAccount","description":"Update user account","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserAccountPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserNotification","description":"Update user notification for a topic","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserNotificationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserNotificationPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserNotificationFrequency","description":"Update user notification frequency for a topic","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserNotificationFrequencyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserNotificationFrequencyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserProfile","description":"Update user's profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserProfileInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserProfilePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserSetting","description":"Creates a valid user setting","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserSettingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserSettingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"upgradeRewardOnOrder","description":"Updates the backer's order with the new reward they're upgrading to, or resets the order","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpgradeRewardOnOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpgradeRewardOnOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"userSendEmailVerification","description":"send email verification","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UserSendEmailVerificationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserSendEmailVerificationPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"watchProject","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"WatchProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"WatchProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RequestPasswordResetPayload","description":"Autogenerated return type of RequestPasswordReset","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"Email","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Email","description":"An email address.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RequestPasswordResetInput","description":"Autogenerated input type of RequestPasswordReset","fields":null,"inputFields":[{"name":"email","description":null,"type":{"kind":"SCALAR","name":"Email","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FollowUserPayload","description":"Autogenerated return type of FollowUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FollowUserInput","description":"Autogenerated input type of FollowUser","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnfollowUserPayload","description":"Autogenerated return type of UnfollowUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnfollowUserInput","description":"Autogenerated input type of UnfollowUser","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BlockUserPayload","description":"Autogenerated return type of BlockUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentUser","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"BlockUserInput","description":"Autogenerated input type of BlockUser","fields":null,"inputFields":[{"name":"blockUserId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnblockUserPayload","description":"Autogenerated return type of UnblockUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentUser","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnblockUserInput","description":"Autogenerated input type of UnblockUser","fields":null,"inputFields":[{"name":"blockUserId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RequestAppleIdDisconnectEmailPayload","description":"Autogenerated return type of RequestAppleIdDisconnectEmail","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RequestAppleIdDisconnectEmailInput","description":"Autogenerated input type of RequestAppleIdDisconnectEmail","fields":null,"inputFields":[{"name":"email","description":null,"type":{"kind":"SCALAR","name":"Email","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConfirmAppleIdDisconnectPayload","description":"Autogenerated return type of ConfirmAppleIdDisconnect","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ConfirmAppleIdDisconnectInput","description":"Autogenerated input type of ConfirmAppleIdDisconnect","fields":null,"inputFields":[{"name":"email","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Email","ofType":null}},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"passwordConfirmation","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateFreeformPostPayload","description":"Autogenerated return type of CreateFreeformPost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"OBJECT","name":"FreeformPost","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateFreeformPostInput","description":"Autogenerated input type of CreateFreeformPost","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateCreatorInterviewPayload","description":"Autogenerated return type of CreateCreatorInterview","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creatorInterview","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreatorInterview","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateCreatorInterviewInput","description":"Autogenerated input type of CreateCreatorInterview","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePostPayload","description":"Autogenerated return type of UpdatePost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"OBJECT","name":"FreeformPost","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePostInput","description":"Autogenerated input type of UpdatePost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"title","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"HTML","ofType":null},"defaultValue":null},{"name":"public","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateCreatorInterviewPayload","description":"Autogenerated return type of UpdateCreatorInterview","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creatorInterview","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreatorInterview","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateCreatorInterviewInput","description":"Autogenerated input type of UpdateCreatorInterview","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"title","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"public","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"answers","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"InterviewAnswerInput","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"InterviewAnswerInput","description":"Interview answer input for updating creator interviews","fields":null,"inputFields":[{"name":"interviewQuestionId","description":"The associated interview question id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":"The body of the interview answer","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"skip","description":"True if the creator chose to skip the question","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PublishPostPayload","description":"Autogenerated return type of PublishPost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PublishPostInput","description":"Autogenerated input type of PublishPost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePostPayload","description":"Autogenerated return type of DeletePost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeletePostInput","description":"Autogenerated input type of DeletePost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LikePostPayload","description":"Autogenerated return type of LikePost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LikePostInput","description":"Autogenerated input type of LikePost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnlikePostPayload","description":"Autogenerated return type of UnlikePost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnlikePostInput","description":"Autogenerated input type of UnlikePost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PinPostPayload","description":"Autogenerated return type of PinPost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PinPostInput","description":"Autogenerated input type of PinPost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnpinPostPayload","description":"Autogenerated return type of UnpinPost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnpinPostInput","description":"Autogenerated input type of UnpinPost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostExcludeRewardPayload","description":"Autogenerated return type of PostExcludeReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostExcludeRewardInput","description":"Autogenerated input type of PostExcludeReward","fields":null,"inputFields":[{"name":"rewardId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"postId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostIncludeRewardPayload","description":"Autogenerated return type of PostIncludeReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostIncludeRewardInput","description":"Autogenerated input type of PostIncludeReward","fields":null,"inputFields":[{"name":"rewardId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"postId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated return type of CreateProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated input type of CreateProject","fields":null,"inputFields":[{"name":"categoryId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"additionalSubcategoryId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"countryCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"tag","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitProjectPayload","description":"Autogenerated return type of SubmitProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitProjectInput","description":"Autogenerated input type of SubmitProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CancelProjectPayload","description":"Autogenerated return type of CancelProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CancelProjectInput","description":"Autogenerated input type of CancelProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CancelBackingPayload","description":"Autogenerated return type of CancelBacking","fields":[{"name":"backing","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CancelBackingInput","description":"Autogenerated input type of CancelBacking","fields":null,"inputFields":[{"name":"id","description":"ID of the backing being canceled","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"note","description":"Optional cancellation note","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"aiDisclosure","description":null,"type":{"kind":"INPUT_OBJECT","name":"AiDisclosureInput","ofType":null},"defaultValue":null},{"name":"deadline","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"duration","description":"Duration of campaign, in days.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"environmentalCommitments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EnvironmentalCommitmentInput","ofType":null}},"defaultValue":null},{"name":"story","description":null,"type":{"kind":"SCALAR","name":"HTML","ofType":null},"defaultValue":null},{"name":"risks","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"storyRteVersion","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"goal","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"googleAnalyticsTrackingId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"googleAnalyticsApiSecret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"metaPixelId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"metaCapiAccessToken","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"categoryId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"additionalSubcategoryId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"targetLaunchDate","description":null,"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"defaultValue":null},{"name":"currency","description":null,"type":{"kind":"ENUM","name":"CurrencyCode","ofType":null},"defaultValue":null},{"name":"faqs","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FaqInput","ofType":null}}},"defaultValue":null},{"name":"postCampaignPledgesEnabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"pledgeOverTimeEnabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"chargeShippingInPledgeManager","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"prelaunchStory","description":null,"type":{"kind":"SCALAR","name":"HTML","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AiDisclosureInput","description":null,"fields":null,"inputFields":[{"name":"fundingForAiAttribution","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"fundingForAiConsent","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"fundingForAiOption","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"generatedByAiConsent","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"generatedByAiDetails","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"otherAiDetails","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EnvironmentalCommitmentInput","description":"An environmental commitment for a project.","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"commitmentCategory","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentalCommitmentCategory","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FaqInput","description":"A FAQ question and answer for a project.","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"position","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"question","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"answer","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LaunchProjectPayload","description":"Autogenerated return type of LaunchProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LaunchProjectInput","description":"Autogenerated input type of LaunchProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UntagProjectPayload","description":"Autogenerated return type of UntagProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UntagProjectInput","description":"Autogenerated input type of UntagProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"tag","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetProjectSlugPayload","description":"Autogenerated return type of SetProjectSlug","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetProjectSlugInput","description":"Autogenerated input type of SetProjectSlug","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectVerifiedCreatorNamePayload","description":"Autogenerated return type of UpdateProjectVerifiedCreatorName","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectVerifiedCreatorNameInput","description":"Autogenerated input type of UpdateProjectVerifiedCreatorName","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetProjectStatusPayload","description":"Autogenerated return type of SetProjectStatus","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectStatus","description":null,"args":[],"type":{"kind":"OBJECT","name":"ProjectStatus","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetProjectStatusInput","description":"Autogenerated input type of SetProjectStatus","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"nowStatus","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nextStatus","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nextDueDate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"defaultValue":null},{"name":"enabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"true"},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ActivateProjectPrelaunchPayload","description":"Autogenerated return type of ActivateProjectPrelaunch","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ActivateProjectPrelaunchInput","description":"Autogenerated input type of ActivateProjectPrelaunch","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeactivateProjectPrelaunchPayload","description":"Autogenerated return type of DeactivateProjectPrelaunch","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeactivateProjectPrelaunchInput","description":"Autogenerated input type of DeactivateProjectPrelaunch","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectRiskStrategiesPayload","description":"Autogenerated return type of UpdateProjectRiskStrategies","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedRiskStrategies","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RiskStrategy","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectRiskStrategiesInput","description":"Autogenerated input type of UpdateProjectRiskStrategies","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"riskStrategies","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RiskStrategyInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RiskStrategyInput","description":"Inputs required to create a risk strategy for a project.","fields":null,"inputFields":[{"name":"riskCategory","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RiskCategoryType","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateSheetForProjectPayload","description":"Autogenerated return type of CreateSheetForProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sheetsUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spreadsheetData","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SpreadsheetDatum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateSheetForProjectInput","description":"Autogenerated input type of CreateSheetForProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RemoveSheetFromProjectPayload","description":"Autogenerated return type of RemoveSheetFromProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sheetsUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RemoveSheetFromProjectInput","description":"Autogenerated input type of RemoveSheetFromProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshSpreadsheetDataPayload","description":"Autogenerated return type of RefreshSpreadsheetData","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spreadsheet","description":null,"args":[],"type":{"kind":"OBJECT","name":"Spreadsheet","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshSpreadsheetDataInput","description":"Autogenerated input type of RefreshSpreadsheetData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateSpreadsheetTogglesPayload","description":"Autogenerated return type of UpdateSpreadsheetToggles","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spreadsheet","description":null,"args":[],"type":{"kind":"OBJECT","name":"Spreadsheet","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateSpreadsheetTogglesInput","description":"Autogenerated input type of UpdateSpreadsheetToggles","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"public","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"displayMode","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AnswerProjectFeedbackQuestionPayload","description":"Autogenerated return type of AnswerProjectFeedbackQuestion","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"feedback","description":null,"args":[],"type":{"kind":"OBJECT","name":"ProjectFeedback","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AnswerProjectFeedbackQuestionInput","description":"Autogenerated input type of AnswerProjectFeedbackQuestion","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"questionName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"questionAnswer","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleProjectMilestonePayload","description":"Autogenerated return type of ToggleProjectMilestone","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"milestone","description":null,"args":[],"type":{"kind":"OBJECT","name":"ProjectMilestone","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleProjectMilestoneInput","description":"Autogenerated input type of ToggleProjectMilestone","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"milestoneCategory","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeactivateProjectCollaboratorPayload","description":"Autogenerated return type of DeactivateProjectCollaborator","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeactivateProjectCollaboratorInput","description":"Autogenerated input type of DeactivateProjectCollaborator","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"userId","description":"The collaborator's user id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InviteProjectCollaboratorPayload","description":"Autogenerated return type of InviteProjectCollaborator","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"InviteProjectCollaboratorInput","description":"Autogenerated input type of InviteProjectCollaborator","fields":null,"inputFields":[{"name":"projectId","description":"ID of project getting the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"userEmail","description":"Email of the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"Title of the collaborator","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"permissions","description":"Permissions granted to the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorPermission","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectCollaboratorPayload","description":"Autogenerated return type of UpdateProjectCollaborator","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectCollaboratorInput","description":"Autogenerated input type of UpdateProjectCollaborator","fields":null,"inputFields":[{"name":"projectId","description":"ID of project updating the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"userId","description":"ID of the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"title","description":"Title of the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"permissions","description":"Updated permissions granted to the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorPermission","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GenerateProjectPreviewPayload","description":"Autogenerated return type of GenerateProjectPreview","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"GenerateProjectPreviewInput","description":"Autogenerated input type of GenerateProjectPreview","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleProjectPreviewPayload","description":"Autogenerated return type of ToggleProjectPreview","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleProjectPreviewInput","description":"Autogenerated input type of ToggleProjectPreview","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateVideoTrackPayload","description":"Autogenerated return type of CreateVideoTrack","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"videoTrack","description":null,"args":[],"type":{"kind":"OBJECT","name":"VideoTrack","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateVideoTrackInput","description":"Autogenerated input type of CreateVideoTrack","fields":null,"inputFields":[{"name":"videoId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"languageCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CaptionLanguageCode","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteVideoTrackPayload","description":"Autogenerated return type of DeleteVideoTrack","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"video","description":null,"args":[],"type":{"kind":"OBJECT","name":"Video","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteVideoTrackInput","description":"Autogenerated input type of DeleteVideoTrack","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SendMessagePayload","description":"Autogenerated return type of SendMessage","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"conversation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Conversation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"OBJECT","name":"Message","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SendMessageInput","description":"Autogenerated input type of SendMessage","fields":null,"inputFields":[{"name":"recipientId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"gRecaptchaResponse","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SendSubmissionMessagePayload","description":"Autogenerated return type of SendSubmissionMessage","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"OBJECT","name":"Message","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SendSubmissionMessageInput","description":"Autogenerated input type of SendSubmissionMessage","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ReportSpamPayload","description":"Autogenerated return type of ReportSpam","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Message","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"spam","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ReportSpamInput","description":"Autogenerated input type of ReportSpam","fields":null,"inputFields":[{"name":"messageId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateCountrySignupPayload","description":"Autogenerated return type of CreateCountrySignup","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isSuccessful","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateCountrySignupInput","description":"Autogenerated input type of CreateCountrySignup","fields":null,"inputFields":[{"name":"email","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Email","ofType":null}},"defaultValue":null},{"name":"country","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"WatchProjectPayload","description":"Autogenerated return type of WatchProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"WatchProjectInput","description":"Autogenerated input type of WatchProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnwatchProjectPayload","description":"Autogenerated return type of UnwatchProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnwatchProjectInput","description":"Autogenerated input type of UnwatchProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectImagePayload","description":"Autogenerated return type of CreateProjectImage","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"image","description":null,"args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectImageInput","description":"Autogenerated input type of CreateProjectImage","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"contentType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"fileSize","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectImagePayload","description":"Autogenerated return type of DeleteProjectImage","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectImageInput","description":"Autogenerated input type of DeleteProjectImage","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectVideoPayload","description":"Autogenerated return type of CreateProjectVideo","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"video","description":null,"args":[],"type":{"kind":"OBJECT","name":"Video","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectVideoInput","description":"Autogenerated input type of CreateProjectVideo","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"contentType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"fileSize","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectVideoPayload","description":"Autogenerated return type of DeleteProjectVideo","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectVideoInput","description":"Autogenerated input type of DeleteProjectVideo","fields":null,"inputFields":[{"name":"id","description":"The project ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostCommentPayload","description":"Autogenerated return type of PostComment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Comment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostCommentInput","description":"Autogenerated input type of PostComment","fields":null,"inputFields":[{"name":"commentableId","description":"The ID of the object you are commenting on","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":"The body of the comment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"parentId","description":"The ID of the comment you are replying to","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteCommentPayload","description":"Autogenerated return type of DeleteComment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentable","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteCommentInput","description":"Autogenerated input type of DeleteComment","fields":null,"inputFields":[{"name":"id","description":"The comment ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleCommentPinPayload","description":"Autogenerated return type of ToggleCommentPin","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Comment","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleCommentPinInput","description":"Autogenerated input type of ToggleCommentPin","fields":null,"inputFields":[{"name":"commentId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"pinned","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostProjectCommentPayload","description":"Autogenerated return type of PostProjectComment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Comment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostProjectCommentInput","description":"Autogenerated input type of PostProjectComment","fields":null,"inputFields":[{"name":"projectId","description":"The ID of the project you are commenting on","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":"The body of the comment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"parentId","description":"The ID of the comment you are replying to","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectCommentPayload","description":"Autogenerated return type of DeleteProjectComment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectCommentInput","description":"Autogenerated input type of DeleteProjectComment","fields":null,"inputFields":[{"name":"id","description":"The comment ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAssetPayload","description":"Autogenerated return type of CreateAsset","fields":[{"name":"asset","description":null,"args":[],"type":{"kind":"UNION","name":"AttachedMedia","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"AttachedMedia","description":"Attached Media","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AttachedAudio","ofType":null},{"kind":"OBJECT","name":"AttachedVideo","ofType":null},{"kind":"OBJECT","name":"Photo","ofType":null}]},{"kind":"INPUT_OBJECT","name":"CreateAssetInput","description":"Autogenerated input type of CreateAsset","fields":null,"inputFields":[{"name":"id","description":"ID of the object to attach the asset to","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"contentType","description":"mime type. ex: 'image/png'","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"attachableAssoc","description":"attachable attribute. ex: 'hero_media', 'avatar', ...","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileSize","description":"File size of asset in bytes.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAssetPayload","description":"Autogenerated return type of DeleteAsset","fields":[{"name":"attachable","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Attachable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Attachable","description":"An object that can be associated with uploaded assets","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null},{"kind":"OBJECT","name":"InterviewAnswer","ofType":null},{"kind":"OBJECT","name":"Survey","ofType":null}]},{"kind":"OBJECT","name":"Survey","description":"A survey","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAssetInput","description":"Autogenerated input type of DeleteAsset","fields":null,"inputFields":[{"name":"attachable_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"asset_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAddressPayload","description":"Autogenerated return type of CreateAddress","fields":[{"name":"address","description":"Address that was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"associatedObject","description":"Object associated with the address","args":[],"type":{"kind":"UNION","name":"AddressAssociatedObject","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"suggestedAddress","description":"Address suggestion","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validationStatus","description":"Validation status for created address","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ValidationStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ValidationStatus","description":"Status returned from an address validation","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"exact","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"suggestion","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"not_found","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"error","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"UNION","name":"AddressAssociatedObject","description":"Objects that can be associated with an address","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Order","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"StockLocation","ofType":null},{"kind":"OBJECT","name":"Backing","ofType":null}]},{"kind":"INPUT_OBJECT","name":"CreateAddressInput","description":"Autogenerated input type of CreateAddress","fields":null,"inputFields":[{"name":"recipientName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"referenceName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"addressLine1","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"addressLine2","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"city","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"region","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"postalCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"countryCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"defaultValue":null},{"name":"phoneNumber","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"primary","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"associatedObjectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"source","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AddressCreationSource","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AddressCreationSource","description":"Source of address creation","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"stock_location_create","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"stock_location_edit","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"user_settings","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"survey","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_redemption","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_redemption_edit","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"BatchUpdateSurveyResponseAddressesPayload","description":"Autogenerated return type of BatchUpdateSurveyResponseAddresses","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedSurveyResponsesCount","description":"The count of SurveyResponses that were successfully updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"BatchUpdateSurveyResponseAddressesInput","description":"Autogenerated input type of BatchUpdateSurveyResponseAddresses","fields":null,"inputFields":[{"name":"fulfillmentAddressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AcceptOrRejectAddressSuggestionPayload","description":"Autogenerated return type of AcceptOrRejectAddressSuggestion","fields":[{"name":"associatedObject","description":"Object associated with the address","args":[],"type":{"kind":"UNION","name":"AddressAssociatedObject","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AcceptOrRejectAddressSuggestionInput","description":"Autogenerated input type of AcceptOrRejectAddressSuggestion","fields":null,"inputFields":[{"name":"fulfillmentAddressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"suggestionAccepted","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"associatedObjectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"source","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AddressCreationSource","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAddressPayload","description":"Autogenerated return type of DeleteAddress","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Success if address was deleted successfully","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAddressInput","description":"Autogenerated input type of DeleteAddress","fields":null,"inputFields":[{"name":"fulfillmentAddressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetAddressAsPrimaryPayload","description":"Autogenerated return type of SetAddressAsPrimary","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Success if address was updated successfully","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetAddressAsPrimaryInput","description":"Autogenerated input type of SetAddressAsPrimary","fields":null,"inputFields":[{"name":"fulfillmentAddressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateBackingAddressPayload","description":"Autogenerated return type of CreateOrUpdateBackingAddress","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateBackingAddressInput","description":"Autogenerated input type of CreateOrUpdateBackingAddress","fields":null,"inputFields":[{"name":"backingId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"addressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetBackingFulfillmentStatusesPayload","description":"Autogenerated return type of SetBackingFulfillmentStatuses","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedBackingCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetBackingFulfillmentStatusesInput","description":"Autogenerated input type of SetBackingFulfillmentStatuses","fields":null,"inputFields":[{"name":"backingIds","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"selectAll","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"newFulfillmentStatus","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FulfillmentStatusSelectOptions","ofType":null}},"defaultValue":null},{"name":"rewards","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"addons","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterAddons","description":null,"type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterItems","description":null,"type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"skus","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterSkus","description":null,"type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"locations","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"amountMin","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"amountMax","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pledgedAtMin","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pledgedAtMax","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"fulfillmentStatus","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"surveyAnswered","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"isLatePledge","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"term","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"status","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pledgeRedemptionState","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"actionsTaken","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pledgeOverTime","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"backerEntryPoint","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pmCompletedAtMin","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pmCompletedAtMax","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FulfillmentStatusSelectOptions","description":"Values for backing fulfillment status","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"not_started","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"in_progress","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"shipped","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"delayed","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"MigrateToFulfillmentStatusPayload","description":"Autogenerated return type of MigrateToFulfillmentStatus","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if backings are being updated in backend.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"MigrateToFulfillmentStatusInput","description":"Autogenerated input type of MigrateToFulfillmentStatus","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateFulfillmentModalDismissedAtPayload","description":"Autogenerated return type of UpdateFulfillmentModalDismissedAt","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateFulfillmentModalDismissedAtInput","description":"Autogenerated input type of UpdateFulfillmentModalDismissedAt","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateFulfillmentStatusPayload","description":"Autogenerated return type of UpdateFulfillmentStatus","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateFulfillmentStatusInput","description":"Autogenerated input type of UpdateFulfillmentStatus","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"fulfillmentStatus","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FulfillmentStatus","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserSettingPayload","description":"Autogenerated return type of UpdateUserSetting","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserSettingInput","description":"Autogenerated input type of UpdateUserSetting","fields":null,"inputFields":[{"name":"setting","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserSetting","ofType":null}},"defaultValue":null},{"name":"enable","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserSetting","description":"Possible user settings","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"manual_play_videos","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"superbacker_not_visible","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_apple_id_disconnect_token","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"expired_apple_id_disconnect_token","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_watch_notice","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_signal_notice","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"opted_out_of_recommendations","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"viz_notification","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"opt_in_ksr_research","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"show_public_profile","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dismissed_taste_profile_toast","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dismissed_pyl_toast","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dismissed_reward_images_toast","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"admin_message_badge","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserAccountPayload","description":"Autogenerated return type of UpdateUserAccount","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserAccountInput","description":"Autogenerated input type of UpdateUserAccount","fields":null,"inputFields":[{"name":"currentPassword","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"passwordConfirmation","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"SCALAR","name":"Email","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserProfilePayload","description":"Autogenerated return type of UpdateUserProfile","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserProfileInput","description":"Autogenerated input type of UpdateUserProfile","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"biography","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"chosenCurrency","description":null,"type":{"kind":"ENUM","name":"CurrencyCode","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserNotificationPayload","description":"Autogenerated return type of UpdateUserNotification","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"userNotification","description":null,"args":[],"type":{"kind":"OBJECT","name":"Notification","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserNotificationInput","description":"Autogenerated input type of UpdateUserNotification","fields":null,"inputFields":[{"name":"topic","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationTopic","ofType":null}},"defaultValue":null},{"name":"kind","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationKind","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserNotificationKind","description":"User notification kind","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"email","description":"Email","isDeprecated":false,"deprecationReason":null},{"name":"mobile","description":"Mobile","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserNotificationFrequencyPayload","description":"Autogenerated return type of UpdateUserNotificationFrequency","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"userNotification","description":null,"args":[],"type":{"kind":"OBJECT","name":"Notification","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserNotificationFrequencyInput","description":"Autogenerated input type of UpdateUserNotificationFrequency","fields":null,"inputFields":[{"name":"topic","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationTopic","ofType":null}},"defaultValue":null},{"name":"frequency","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationFrequency","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateUserUrlsPayload","description":"Autogenerated return type of CreateUserUrls","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateUserUrlsInput","description":"Autogenerated input type of CreateUserUrls","fields":null,"inputFields":[{"name":"url","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteUserUrlsPayload","description":"Autogenerated return type of DeleteUserUrls","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteUserUrlsInput","description":"Autogenerated input type of DeleteUserUrls","fields":null,"inputFields":[{"name":"urlId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateUserSlugPayload","description":"Autogenerated return type of CreateUserSlug","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateUserSlugInput","description":"Autogenerated input type of CreateUserSlug","fields":null,"inputFields":[{"name":"slug","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ClearUserUnseenActivityPayload","description":"Autogenerated return type of ClearUserUnseenActivity","fields":[{"name":"activityIndicatorCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ClearUserUnseenActivityInput","description":"Autogenerated input type of ClearUserUnseenActivity","fields":null,"inputFields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateUserPayload","description":"Autogenerated return type of CreateUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateUserInput","description":"Autogenerated input type of CreateUser","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"emailConfirmation","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"optIntoNewsletters","description":"If the user agrees to opt into weekly newsletters","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"},{"name":"optIntoUserResearch","description":"If the user agrees to opt into receiving surveys for user research","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"projectPid","description":"Supply if creating an account via backing flow -- used for tracking purposes","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"recaptchaV2Token","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"recaptchaV3Token","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"checkoutId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"n","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SignInWithApplePayload","description":"Autogenerated return type of SignInWithApple","fields":[{"name":"apiAccessToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SignInWithAppleInput","description":"Autogenerated input type of SignInWithApple","fields":null,"inputFields":[{"name":"firstName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"lastName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"authCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"iosAppId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectDepositAccountPayload","description":"Autogenerated return type of CreateProjectDepositAccount","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectDepositAccountInput","description":"Autogenerated input type of CreateProjectDepositAccount","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"accountBusinessType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitVatNumberPayload","description":"Autogenerated return type of SubmitVatNumber","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitVatNumberInput","description":"Autogenerated input type of SubmitVatNumber","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"vatNumber","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateSetupIntentPayload","description":"Autogenerated return type of CreateSetupIntent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateSetupIntentInput","description":"Autogenerated input type of CreateSetupIntent","fields":null,"inputFields":[{"name":"setupIntentContext","description":"Context in which this stripe intent is created","type":{"kind":"ENUM","name":"StripeIntentContextTypes","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"sepaEligible","description":"If sepa should be added to the payment method types","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"StripeIntentContextTypes","description":"Different contexts for which stripe intents can be created","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CROWDFUNDING_CHECKOUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"POST_CAMPAIGN_CHECKOUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROJECT_BUILD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROFILE_SETTINGS","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreatePaymentIntentPayload","description":"Autogenerated return type of CreatePaymentIntent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"the stripe payment intent client secret used to complete a payment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePaymentIntentInput","description":"Autogenerated input type of CreatePaymentIntent","fields":null,"inputFields":[{"name":"projectId","description":"kickstarter project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":"total amount to be paid (eg. 10.55)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentIntentContext","description":"Context in which this stripe intent is created","type":{"kind":"ENUM","name":"StripeIntentContextTypes","ofType":null},"defaultValue":null},{"name":"digitalMarketingAttributed","description":"if the payment is attributed to digital marketing (default: false)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"backingId","description":"Current backing id for tracking purposes","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"checkoutId","description":"Current checkout id for tracking purposes","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePaymentSourcePayload","description":"Autogenerated return type of CreatePaymentSource","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errorMessage","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":true,"deprecationReason":"inconsistent use of GraphQL errors"},{"name":"isSuccessful","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePaymentSourceInput","description":"Autogenerated input type of CreatePaymentSource","fields":null,"inputFields":[{"name":"paymentType","description":null,"type":{"kind":"ENUM","name":"PaymentTypes","ofType":null},"defaultValue":null},{"name":"stripeToken","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"stripeCardId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"reusable","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"intentClientSecret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PaymentTypes","description":"Payment types","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CREDIT_CARD","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPaymentSourcePayload","description":"Autogenerated return type of CreateProjectPaymentSource","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectPaymentSourceInput","description":"Autogenerated input type of CreateProjectPaymentSource","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"paymentType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardPaymentType","ofType":null}},"defaultValue":null},{"name":"token","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"reusable","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPaymentSourcePayload","description":"Autogenerated return type of UpdateProjectPaymentSource","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectPaymentSourceInput","description":"Autogenerated input type of UpdateProjectPaymentSource","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"paymentSourceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PaymentSourceDeletePayload","description":"Autogenerated return type of PaymentSourceDelete","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PaymentSourceDeleteInput","description":"Autogenerated input type of PaymentSourceDelete","fields":null,"inputFields":[{"name":"paymentSourceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitRefundCheckoutPayload","description":"Autogenerated return type of SubmitRefundCheckout","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"redirectUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckout","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefundCheckout","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitRefundCheckoutInput","description":"Autogenerated input type of SubmitRefundCheckout","fields":null,"inputFields":[{"name":"paymentSourceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"refundCheckoutId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateRewardPayload","description":"Autogenerated return type of CreateReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateRewardInput","description":"Autogenerated input type of CreateReward","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"estimatedDeliveryOn","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"latePledgeAmount","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limitPerBacker","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"rewardType","description":null,"type":{"kind":"ENUM","name":"RewardType","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RewardItemInput","ofType":null}},"defaultValue":null},{"name":"shippingPreference","description":null,"type":{"kind":"ENUM","name":"ShippingPreference","ofType":null},"defaultValue":null},{"name":"shippingRates","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRateInput","ofType":null}},"defaultValue":null},{"name":"shippingRules","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","ofType":null}},"defaultValue":null},{"name":"startsAt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"endsAt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"localReceiptLocationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"startCondition","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"endCondition","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"audienceData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AudienceInput","ofType":null},"defaultValue":null},{"name":"vatInclusivePricing","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"S3AssetInput","description":"S3 information for an asset.","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"contentType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"fileSize","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RewardItemInput","description":"Item for a reward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"position","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"quantity","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ShippingRateInput","description":"Shipping rule for a reward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"cost","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","description":"Shipping rule for a reward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"cost","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"estimatedMin","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"estimatedMax","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AudienceInput","description":"Input related to setting the resource audience","fields":null,"inputFields":[{"name":"audience","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AudienceEnum","ofType":null}},"defaultValue":null},{"name":"token","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteRewardPayload","description":"Autogenerated return type of DeleteReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteRewardInput","description":"Autogenerated input type of DeleteReward","fields":null,"inputFields":[{"name":"id","description":"The reward ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FeatureRewardPayload","description":"Autogenerated return type of FeatureReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FeatureRewardInput","description":"Autogenerated input type of FeatureReward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"featured","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateRewardPayload","description":"Autogenerated return type of UpdateReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateRewardInput","description":"Autogenerated input type of UpdateReward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"estimatedDeliveryOn","description":null,"type":{"kind":"SCALAR","name":"Date","ofType":null},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"latePledgeAmount","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"deleteAsset","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limitPerBacker","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"rewardType","description":null,"type":{"kind":"ENUM","name":"RewardType","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RewardItemInput","ofType":null}},"defaultValue":null},{"name":"shippingPreference","description":null,"type":{"kind":"ENUM","name":"ShippingPreference","ofType":null},"defaultValue":null},{"name":"shippingRules","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","ofType":null}},"defaultValue":null},{"name":"startsAt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"endsAt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"localReceiptLocationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"startCondition","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"endCondition","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"audienceData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AudienceInput","ofType":null},"defaultValue":null},{"name":"vatInclusivePricing","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CopyRewardItemsPayload","description":"Autogenerated return type of CopyRewardItems","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CopyRewardItemsInput","description":"Autogenerated input type of CopyRewardItems","fields":null,"inputFields":[{"name":"rewardId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EndLatePledgesPayload","description":"Autogenerated return type of EndLatePledges","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EndLatePledgesInput","description":"Autogenerated input type of EndLatePledges","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateFlaggingPayload","description":"Autogenerated return type of CreateFlagging","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"flagging","description":null,"args":[],"type":{"kind":"OBJECT","name":"Flagging","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateFlaggingInput","description":"Autogenerated input type of CreateFlagging","fields":null,"inputFields":[{"name":"contentId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"kind","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"NonDeprecatedFlaggingKind","ofType":null}},"defaultValue":null},{"name":"details","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"NonDeprecatedFlaggingKind","description":"The bucket for a flagging (general reason). Does not included deprecated kinds.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROHIBITED_ITEMS","description":"prohibited-items","isDeprecated":false,"deprecationReason":null},{"name":"CHARITY","description":"charity","isDeprecated":false,"deprecationReason":null},{"name":"RESALE","description":"resale","isDeprecated":false,"deprecationReason":null},{"name":"FALSE_CLAIMS","description":"false-claims","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT","description":"misrep-support","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT","description":"not-project","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_VIOLATION","description":"guidelines-violation","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_ISSUES","description":"post-funding-issues","isDeprecated":false,"deprecationReason":null},{"name":"SPAM","description":"spam","isDeprecated":false,"deprecationReason":null},{"name":"VICES_DRUGS","description":"vices-drugs","isDeprecated":false,"deprecationReason":null},{"name":"VICES_ALCOHOL","description":"vices-alcohol","isDeprecated":false,"deprecationReason":null},{"name":"VICES_WEAPONS","description":"vices-weapons","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_CLAIMS","description":"health-claims","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_REGULATIONS","description":"health-regulations","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_GMOS","description":"health-gmos","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_LIVE_ANIMALS","description":"health-live-animals","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_ENERGY_FOOD_AND_DRINK","description":"health-energy-food-and-drink","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_CONTESTS_COUPONS","description":"financial-contests-coupons","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_SERVICES","description":"financial-services","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_POLITICAL_DONATIONS","description":"financial-political-donations","isDeprecated":false,"deprecationReason":null},{"name":"OFFENSIVE_CONTENT_HATE","description":"offensive-content-hate","isDeprecated":false,"deprecationReason":null},{"name":"OFFENSIVE_CONTENT_PORN","description":"offensive-content-porn","isDeprecated":false,"deprecationReason":null},{"name":"RESELLING","description":"reselling","isDeprecated":false,"deprecationReason":null},{"name":"PLAGIARISM","description":"plagiarism","isDeprecated":false,"deprecationReason":null},{"name":"PROTOTYPE_MISREPRESENTATION","description":"prototype-misrepresentation","isDeprecated":false,"deprecationReason":null},{"name":"UNDISCLOSED_AI_USE","description":"undisclosed-ai-use","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_IMPERSONATION","description":"misrep-support-impersonation","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_OUTSTANDING_FULFILLMENT","description":"misrep-support-outstanding-fulfillment","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_SUSPICIOUS_PLEDGING","description":"misrep-support-suspicious-pledging","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_OTHER","description":"misrep-support-other","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_CHARITY","description":"not-project-charity","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_STUNT_OR_HOAX","description":"not-project-stunt-or-hoax","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_PERSONAL_EXPENSES","description":"not-project-personal-expenses","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_BAREBONES","description":"not-project-barebones","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_OTHER","description":"not-project-other","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_SPAM","description":"guidelines-spam","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_ABUSE","description":"guidelines-abuse","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_REWARD_NOT_AS_DESCRIBED","description":"post-funding-reward-not-as-described","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_REWARD_DELAYED","description":"post-funding-reward-delayed","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_SHIPPED_NEVER_RECEIVED","description":"post-funding-shipped-never-received","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_SELLING_ELSEWHERE","description":"post-funding-creator-selling-elsewhere","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_UNCOMMUNICATIVE","description":"post-funding-creator-uncommunicative","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_INAPPROPRIATE","description":"post-funding-creator-inappropriate","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_SUSPICIOUS_THIRD_PARTY","description":"post-funding-suspicious-third-party","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_ABUSE","description":"comment-abuse","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_DOXXING","description":"comment-doxxing","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_OFFTOPIC","description":"comment-offtopic","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_SPAM","description":"comment-spam","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_ABUSE","description":"backing-abuse","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_DOXXING","description":"backing-doxxing","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_FRAUD","description":"backing-fraud","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_SPAM","description":"backing-spam","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreateRewardItemPayload","description":"Autogenerated return type of CreateRewardItem","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"OBJECT","name":"RewardItem","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateRewardItemInput","description":"Autogenerated input type of CreateRewardItem","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"deliveryType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteRewardItemPayload","description":"Autogenerated return type of DeleteRewardItem","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteRewardItemInput","description":"Autogenerated input type of DeleteRewardItem","fields":null,"inputFields":[{"name":"id","description":"The reward item ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateRewardItemPayload","description":"Autogenerated return type of UpdateRewardItem","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"OBJECT","name":"RewardItem","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateRewardItemInput","description":"Autogenerated input type of UpdateRewardItem","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"deliveryType","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"deleteAsset","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateEditorialLayoutTypePayload","description":"Autogenerated return type of CreateEditorialLayoutType","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Layout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Layout","description":"An Editorial Layout","fields":[{"name":"createdAt","description":"When this editorial layout was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The description of the editorial layout","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"modules","description":"All the modules for an editorial layout","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"published","description":"Is the editorial layout published?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"revision","description":"The revision of the editorial layout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sequence","description":"The sequence number of the currently published revision of the editorial","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The slug for the url of the editorial layout oage","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of the editorial layout","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateEditorialLayoutTypeInput","description":"Autogenerated input type of CreateEditorialLayoutType","fields":null,"inputFields":[{"name":"slug","description":"Slug for the Editorial Layout url","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"Title for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":"Short description for the Editorial Layout","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"modules","description":"All the Editorial Modules for this layout","type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EditorialModuleInput","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EditorialModuleInput","description":"Editorial Module.","fields":null,"inputFields":[{"name":"type","description":"Module type","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialModuleType","ofType":null}},"defaultValue":null},{"name":"id","description":"Module GraphQL id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"sequence","description":"Order of the Module","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"data","description":"Module data","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialModuleType","description":"Different types of Editorial modules.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ProjectCollection","description":"ProjectCollection","isDeprecated":false,"deprecationReason":null},{"name":"NewsletterSignUp","description":"NewsletterSignUp","isDeprecated":false,"deprecationReason":null},{"name":"PromoCollection","description":"PromoCollection","isDeprecated":false,"deprecationReason":null},{"name":"NewsCollection","description":"NewsCollection","isDeprecated":false,"deprecationReason":null},{"name":"FeaturedProjectCollection","description":"FeaturedProjectCollection","isDeprecated":false,"deprecationReason":null},{"name":"SingleProjectContainer","description":"SingleProjectContainer","isDeprecated":false,"deprecationReason":null},{"name":"BespokeComponent","description":"BespokeComponent","isDeprecated":false,"deprecationReason":null},{"name":"Header","description":"Header","isDeprecated":false,"deprecationReason":null},{"name":"MastheadImage","description":"MastheadImage","isDeprecated":false,"deprecationReason":null},{"name":"ExploreSubcategories","description":"ExploreSubcategories","isDeprecated":false,"deprecationReason":null},{"name":"Article","description":"Article","isDeprecated":false,"deprecationReason":null},{"name":"ShortText","description":"ShortText","isDeprecated":false,"deprecationReason":null},{"name":"EditorialRichText","description":"EditorialRichText","isDeprecated":false,"deprecationReason":null},{"name":"SurveyEmbed","description":"SurveyEmbed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"PublishEditorialLayoutTypePayload","description":"Autogenerated return type of PublishEditorialLayoutType","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Layout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PublishEditorialLayoutTypeInput","description":"Autogenerated input type of PublishEditorialLayoutType","fields":null,"inputFields":[{"name":"slug","description":"Slug for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"revision","description":"Revision for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnpublishEditorialLayoutTypePayload","description":"Autogenerated return type of UnpublishEditorialLayoutType","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Layout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnpublishEditorialLayoutTypeInput","description":"Autogenerated input type of UnpublishEditorialLayoutType","fields":null,"inputFields":[{"name":"slug","description":"Slug for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"revision","description":"Revision for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TranslateEditorialLayoutTypePayload","description":"Autogenerated return type of TranslateEditorialLayoutType","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Layout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TranslateEditorialLayoutTypeInput","description":"Autogenerated input type of TranslateEditorialLayoutType","fields":null,"inputFields":[{"name":"slug","description":"Slug for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"revision","description":"Revision for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserSendEmailVerificationPayload","description":"Autogenerated return type of UserSendEmailVerification","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UserSendEmailVerificationInput","description":"Autogenerated input type of UserSendEmailVerification","fields":null,"inputFields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ApplyPaymentSourceToCheckoutPayload","description":"Autogenerated return type of ApplyPaymentSourceToCheckout","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Checkout","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ApplyPaymentSourceToCheckoutInput","description":"Autogenerated input type of ApplyPaymentSourceToCheckout","fields":null,"inputFields":[{"name":"checkoutId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentSourceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"incremental","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"intentClientSecret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateCheckoutPayload","description":"Autogenerated return type of CreateCheckout","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateCheckoutInput","description":"Autogenerated input type of CreateCheckout","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardIds","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"refParam","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CompleteOnSessionCheckoutPayload","description":"Autogenerated return type of CompleteOnSessionCheckout","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CompleteOnSessionCheckoutInput","description":"Autogenerated input type of CompleteOnSessionCheckout","fields":null,"inputFields":[{"name":"checkoutId","description":"The graphql relay id of the checkout (base64 encoded)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"paymentIntentClientSecret","description":"the client_secret returned by createPaymentIntent, starts with `pi_` (the same secret passed to stripe)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentSourceId","description":"Kickstarter internal payment source id. Expects a number (not the stripe id starting with `pm_`). Pass in when using a saved card (optional)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceReusable","description":"If the payment source can be reused for future payments (optional)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"applePay","description":"Apple pay attributes for creating a payment source (optional)","type":{"kind":"INPUT_OBJECT","name":"ApplePayInput","ofType":null},"defaultValue":null},{"name":"refParam","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ApplePayInput","description":"Necessary fields for Apple Pay","fields":null,"inputFields":[{"name":"token","description":"Stripe token","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentInstrumentName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentNetwork","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"transactionIdentifier","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateBackingPayload","description":"Autogenerated return type of CreateBacking","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateBackingInput","description":"Autogenerated input type of CreateBacking","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":"Optional, will default to combined reward minimums + shipping","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardId","description":"Relay encoded Reward ID - legacy - mutually exclusive with reward_ids","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"rewardIds","description":"List of Relay encoded Reward/Add-on IDs - mutually exclusive with reward_id","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"paymentType","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"refParam","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"setupIntentClientSecret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"applePay","description":null,"type":{"kind":"INPUT_OBJECT","name":"ApplePayInput","ofType":null},"defaultValue":null},{"name":"incremental","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateBackingPayload","description":"Autogenerated return type of UpdateBacking","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateBackingInput","description":"Autogenerated input type of UpdateBacking","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardId","description":"Relay encoded Reward ID - legacy","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"rewardIds","description":"List of Relay encoded Reward/Add-on IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":"new payment source id","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"intentClientSecret","description":"Stripe SetupIntent client secret","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"applePay","description":null,"type":{"kind":"INPUT_OBJECT","name":"ApplePayInput","ofType":null},"defaultValue":null},{"name":"incremental","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateBackingPaymentSourcePayload","description":"Autogenerated return type of UpdateBackingPaymentSource","fields":[{"name":"backing","description":null,"args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateBackingPaymentSourceInput","description":"Autogenerated input type of UpdateBackingPaymentSource","fields":null,"inputFields":[{"name":"id","description":"ID of the backing being updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"paymentSourceId","description":"new payment source id","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"applePay","description":null,"type":{"kind":"INPUT_OBJECT","name":"ApplePayInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateBackerCompletedPayload","description":"Autogenerated return type of UpdateBackerCompleted","fields":[{"name":"backing","description":null,"args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateBackerCompletedInput","description":"Autogenerated input type of UpdateBackerCompleted","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"backerCompleted","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetBackingNotePayload","description":"Autogenerated return type of SetBackingNote","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"noteBody","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetBackingNoteInput","description":"Autogenerated input type of SetBackingNote","fields":null,"inputFields":[{"name":"backingId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"noteBody","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"noteType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BackingNoteType","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BackingNoteType","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CreatorBackingNote","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BackerBackingNote","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreateApplePayBackingPayload","description":"Autogenerated return type of CreateApplePayBacking","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateApplePayBackingInput","description":"Autogenerated input type of CreateApplePayBacking","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"token","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentInstrumentName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentNetwork","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"transactionIdentifier","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"refParam","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LikeQuizProjectPayload","description":"Autogenerated return type of LikeQuizProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LikeQuizProjectInput","description":"Autogenerated input type of LikeQuizProject","fields":null,"inputFields":[{"name":"selectedLikeableAttributeIds","description":"A list of selected likeable attribute ids associated to the quiz project","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"quizProjectId","description":"The id of the quiz project that the user has liked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"likedSomethingElse","description":"Whether or not the user has indicated that they like something else about the project other than the attributes presented","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LikeProjectPayload","description":"Autogenerated return type of LikeProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LikeProjectInput","description":"Autogenerated input type of LikeProject","fields":null,"inputFields":[{"name":"id","description":"The id of the project that the user has liked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":"The context or page that the user liked this project from. Used for tracking","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnlikeProjectPayload","description":"Autogenerated return type of UnlikeProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnlikeProjectInput","description":"Autogenerated input type of UnlikeProject","fields":null,"inputFields":[{"name":"id","description":"The id of the project that the user has unliked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":"The context or page that the user unliked this project from. Used for tracking","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DislikeProjectPayload","description":"Autogenerated return type of DislikeProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DislikeProjectInput","description":"Autogenerated input type of DislikeProject","fields":null,"inputFields":[{"name":"id","description":"The id of the project that the user has disliked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":"The context or page that the user disliked this project from. Used for tracking","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UndislikeProjectPayload","description":"Autogenerated return type of UndislikeProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UndislikeProjectInput","description":"Autogenerated input type of UndislikeProject","fields":null,"inputFields":[{"name":"id","description":"The id of the project that the user has un-disliked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":"The context or page that the user undisliked this project from. Used for tracking","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectUpdateRequestPayload","description":"Autogenerated return type of CreateProjectUpdateRequest","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectUpdateRequestInput","description":"Autogenerated input type of CreateProjectUpdateRequest","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"location","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ProjectUpdateRequestLocation","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ProjectUpdateRequestLocation","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"updates","description":"Project Update Request from the prompt at the top of Project Updates","isDeprecated":false,"deprecationReason":null},{"name":"backer_bar","description":"Project Update Request from the Backer Bar flow","isDeprecated":false,"deprecationReason":null},{"name":"comment","description":"Project Update Request from the inline prompt on a comment","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"TriggerThirdPartyEventPayload","description":"Autogenerated return type of TriggerThirdPartyEvent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TriggerThirdPartyEventInput","description":"Autogenerated input type of TriggerThirdPartyEvent","fields":null,"inputFields":[{"name":"deviceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"eventName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"firebaseScreen","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"null"},{"name":"firebasePreviousScreen","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"null"},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ThirdPartyEventItemInput","ofType":null}}},"defaultValue":"[]"},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"pledgeAmount","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":"null"},{"name":"shipping","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":"null"},{"name":"transactionId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"null"},{"name":"userId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"null"},{"name":"appData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AppDataInput","ofType":null},"defaultValue":"{}"},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ThirdPartyEventItemInput","description":null,"fields":null,"inputFields":[{"name":"itemId","description":"The ID of the item.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"itemName","description":"The name of the item.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"price","description":"The monetary price of the item, in units of the specified currency parameter.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":"null"}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AppDataInput","description":"Parameters for sharing app data and device information with the Conversions API","fields":null,"inputFields":[{"name":"advertiserTrackingEnabled","description":"Use this field to specify ATT permission on an iOS 14.5+ device.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"applicationTrackingEnabled","description":"A person can choose to enable ad tracking on an app level. Your SDK should allow an app developer to put an opt-out setting into their app. Use this field to specify the person's choice.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"extinfo","description":"Extended device information, such as screen width and height. Required only for native.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTrackEventPayload","description":"Autogenerated return type of CreateTrackEvent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"successful","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTrackEventInput","description":"Autogenerated input type of CreateTrackEvent","fields":null,"inputFields":[{"name":"eventName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"eventProperties","description":null,"type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateConsentPayload","description":"Autogenerated return type of UpdateConsent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateConsentInput","description":"Autogenerated input type of UpdateConsent","fields":null,"inputFields":[{"name":"consentJson","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"userIdentifier","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAttributionEventPayload","description":"Autogenerated return type of CreateAttributionEvent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"successful","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAttributionEventInput","description":"Autogenerated input type of CreateAttributionEvent","fields":null,"inputFields":[{"name":"eventName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"eventProperties","description":null,"type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OptOutOfPledgeManagerPayload","description":"Autogenerated return type of OptOutOfPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManager","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeManager","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"OptOutOfPledgeManagerInput","description":"Autogenerated input type of OptOutOfPledgeManager","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"The pledge manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"optOutReason","description":"The reason for opting out","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OptOutReasonEnum","ofType":null}},"defaultValue":null},{"name":"optOutDetails","description":"Additional details for opting out","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OptInToPledgeManagerPayload","description":"Autogenerated return type of OptInToPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Success if opted in to pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"OptInToPledgeManagerInput","description":"Autogenerated input type of OptInToPledgeManager","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitPledgeManagerPayload","description":"Autogenerated return type of SubmitPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitPledgeManagerInput","description":"Autogenerated input type of SubmitPledgeManager","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"The pledge manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ReviewPledgeManagerPayload","description":"Autogenerated return type of ReviewPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ReviewPledgeManagerInput","description":"Autogenerated input type of ReviewPledgeManager","fields":null,"inputFields":[{"name":"pledgeManagerId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"approved","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"reviewNote","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RevertPledgeManagerToDraftPayload","description":"Autogenerated return type of RevertPledgeManagerToDraft","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RevertPledgeManagerToDraftInput","description":"Autogenerated input type of RevertPledgeManagerToDraft","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"The pledge manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AssignPledgeManagerPayload","description":"Autogenerated return type of AssignPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AssignPledgeManagerInput","description":"Autogenerated input type of AssignPledgeManager","fields":null,"inputFields":[{"name":"pledgeManagerId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"userId","description":"(optional) assigns a user to a pledge manager to review","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":"null"},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleTariffSurchargesEnabledPayload","description":"Autogenerated return type of ToggleTariffSurchargesEnabled","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleTariffSurchargesEnabledInput","description":"Autogenerated input type of ToggleTariffSurchargesEnabled","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"The pledge manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CompleteOrderPayload","description":"Autogenerated return type of CompleteOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"The stripe payment intent client secret used to complete a payment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"The stripe payment intent status (if requires_action, it will be)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OnSessionPaymentIntentStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OnSessionPaymentIntentStatus","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUIRES_ACTION","description":"If the setup requires additional actions, such as authenticating with 3D Secure","isDeprecated":false,"deprecationReason":null},{"name":"SUCCEEDED","description":"Setup of payment source was successful.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CompleteOrderInput","description":"Autogenerated input type of CompleteOrder","fields":null,"inputFields":[{"name":"orderId","description":"The order id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"stripeConfirmationTokenId","description":"The stripe confirmation token used to complete a payment (web only)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"stripePaymentMethodId","description":"The stripe payment method id, starting with either `card_` or `pm_` (mobile only)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":"Kickstarter internal payment source id. Expects a number (not the stripe id starting with `pm_`). Pass in when using a saved card (optional)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceReusable","description":"If the new payment source can be reused for future payments (optional)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"paymentMethodTypes","description":"List of accepted stripe payment method types","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CompleteZeroDollarOrderPayload","description":"Autogenerated return type of CompleteZeroDollarOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Whether the state transition succeeded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CompleteZeroDollarOrderInput","description":"Autogenerated input type of CompleteZeroDollarOrder","fields":null,"inputFields":[{"name":"orderId","description":"The order id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SucceedOrderPayload","description":"Autogenerated return type of SucceedOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Whether the state transition succeeded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SucceedOrderInput","description":"Autogenerated input type of SucceedOrder","fields":null,"inputFields":[{"name":"orderId","description":"The order id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConfirmOrderAddressPayload","description":"Autogenerated return type of ConfirmOrderAddress","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ConfirmOrderAddressInput","description":"Autogenerated input type of ConfirmOrderAddress","fields":null,"inputFields":[{"name":"orderId","description":"The order id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"addressId","description":"The address id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePledgeManagementRewardPayload","description":"Autogenerated return type of CreatePledgeManagementReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePledgeManagementRewardInput","description":"Autogenerated input type of CreatePledgeManagementReward","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"enabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"shippingPreference","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ShippingPreference","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limitPerOrder","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardType","description":null,"type":{"kind":"ENUM","name":"RewardType","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RewardItemInput","ofType":null}},"defaultValue":null},{"name":"shippingRules","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","ofType":null}},"defaultValue":null},{"name":"localReceiptLocationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"audienceData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AudienceInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePledgeManagementRewardPayload","description":"Autogenerated return type of UpdatePledgeManagementReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePledgeManagementRewardInput","description":"Autogenerated input type of UpdatePledgeManagementReward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"enabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"shippingPreference","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ShippingPreference","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limitPerOrder","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"deleteAsset","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RewardItemInput","ofType":null}},"defaultValue":null},{"name":"shippingRules","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","ofType":null}},"defaultValue":null},{"name":"localReceiptLocationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"audienceData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AudienceInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateWavePayload","description":"Autogenerated return type of CreateWave","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateWaveInput","description":"Autogenerated input type of CreateWave","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CloseWavePayload","description":"Autogenerated return type of CloseWave","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CloseWaveInput","description":"Autogenerated input type of CloseWave","fields":null,"inputFields":[{"name":"checkoutWaveId","description":"The checkout wave id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetTaxCategoryPayload","description":"Autogenerated return type of SetTaxCategory","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"itemTaxConfig","description":"The updated item tax config","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemTaxConfig","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetTaxCategoryInput","description":"Autogenerated input type of SetTaxCategory","fields":null,"inputFields":[{"name":"itemId","description":"The item id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"taxCategoryId","description":"The tax category id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"taxCategoryInput","description":"Input for creating or updating a tax category","type":{"kind":"INPUT_OBJECT","name":"TaxCategoryInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TaxCategoryInput","description":"Input to create or update a tax category","fields":null,"inputFields":[{"name":"userLabel","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"taxCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateItemTaxConfigPayload","description":"Autogenerated return type of CreateOrUpdateItemTaxConfig","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item for the ID that was passed in","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateItemTaxConfigInput","description":"Autogenerated input type of CreateOrUpdateItemTaxConfig","fields":null,"inputFields":[{"name":"itemId","description":"The item id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"itemIsTaxExempt","description":"If the item is taxable","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"marketValue","description":"The market value of the item","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"surchargeCost","description":"The surcharge cost for the item","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateRewardShippingRatesPayload","description":"Autogenerated return type of UpdateRewardShippingRates","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The updated BackerReward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateRewardShippingRatesInput","description":"Autogenerated input type of UpdateRewardShippingRates","fields":null,"inputFields":[{"name":"rewardId","description":"Kickstarter BackerReward (base or addon) id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"shippingRates","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRateInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrderableConfigPayload","description":"Autogenerated return type of UpdateOrderableConfig","fields":[{"name":"addOn","description":"The updated BackerReward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project associated with the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrderableConfigInput","description":"Autogenerated input type of UpdateOrderableConfig","fields":null,"inputFields":[{"name":"orderableId","description":"Kickstarter BackerReward id (for now)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"enabled","description":"Available for cross-sells or not","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"crossSellPrice","description":"Price for cross-sells","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limit","description":"How many are cross-sellable total","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limitPerOrder","description":"How many a backer can add to their order","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateCrossSellsOnOrderPayload","description":"Autogenerated return type of UpdateCrossSellsOnOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The Order that has been updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateCrossSellsOnOrderInput","description":"Autogenerated input type of UpdateCrossSellsOnOrder","fields":null,"inputFields":[{"name":"orderId","description":"Order ID that the Cross Sells are being added onto","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"crossSells","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SelectedCrossSellInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SelectedCrossSellInput","description":"Cross Sell selection to add to an Order","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"quantity","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpgradeRewardOnOrderPayload","description":"Autogenerated return type of UpgradeRewardOnOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order that has been updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpgradeRewardOnOrderInput","description":"Autogenerated input type of UpgradeRewardOnOrder","fields":null,"inputFields":[{"name":"orderId","description":"ID of the order that the upgrade is being applied to","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"rewardUpgradeId","description":"ID of the reward to upgrade to","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"locationId","description":"ID of the location the backer selected","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AcknowledgeUpgradesPayload","description":"Autogenerated return type of AcknowledgeUpgrades","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order that has been updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AcknowledgeUpgradesInput","description":"Autogenerated input type of AcknowledgeUpgrades","fields":null,"inputFields":[{"name":"orderId","description":"ID of the order to acknowledge upgrades on","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteStockLocationPayload","description":"Autogenerated return type of DeleteStockLocation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project associated with the stock location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteStockLocationInput","description":"Autogenerated input type of DeleteStockLocation","fields":null,"inputFields":[{"name":"stockLocationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BulkEditStockLocationMappingsPayload","description":"Autogenerated return type of BulkEditStockLocationMappings","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stockLocation","description":"The updated stock location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StockLocation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"BulkEditStockLocationMappingsInput","description":"Autogenerated input type of BulkEditStockLocationMappings","fields":null,"inputFields":[{"name":"stockLocationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"locationIds","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateVatConfigPayload","description":"Autogenerated return type of CreateOrUpdateVatConfig","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project associated with the VAT Config","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateVatConfigInput","description":"Autogenerated input type of CreateOrUpdateVatConfig","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"locationVatNumbers","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LocationVatNumberInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LocationVatNumberInput","description":"Input to create or update a VAT number for a location.","fields":null,"inputFields":[{"name":"locationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"vatNumber","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"optOut","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetShippingConfigPayload","description":"Autogenerated return type of SetShippingConfig","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Updated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetShippingConfigInput","description":"Autogenerated input type of SetShippingConfig","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"shippingType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ShippingTypeEnum","ofType":null}},"defaultValue":null},{"name":"shippingUnit","description":null,"type":{"kind":"ENUM","name":"ShippingUnitEnum","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateShippingZonePayload","description":"Autogenerated return type of CreateOrUpdateShippingZone","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project with updated shipping zones","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateShippingZoneInput","description":"Autogenerated input type of CreateOrUpdateShippingZone","fields":null,"inputFields":[{"name":"shippingZoneId","description":"The existing shipping zone id, if updating","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"projectId","description":"The id of the project the shipping zone is under","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"locationIds","description":"IDs of locations included in the shipping zone","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"weightRanges","description":"Weight ranges and cost data for the shipping zone","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"WeightRangeInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"WeightRangeInput","description":"Input to create or update weight ranges","fields":null,"inputFields":[{"name":"min","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"cost","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteShippingZonePayload","description":"Autogenerated return type of DeleteShippingZone","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteShippingZoneInput","description":"Autogenerated input type of DeleteShippingZone","fields":null,"inputFields":[{"name":"shippingZoneId","description":"The id of the to be deleted shipping","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateItemWeightsPayload","description":"Autogenerated return type of UpdateItemWeights","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Updated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateItemWeightsInput","description":"Autogenerated input type of UpdateItemWeights","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"itemWeightInputs","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemWeightInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemWeightInput","description":"Input to create or update weight ranges","fields":null,"inputFields":[{"name":"itemId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"weight","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"exclude","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateTrackingNumberPayload","description":"Autogenerated return type of CreateOrUpdateTrackingNumber","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shipment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Shipment","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateTrackingNumberInput","description":"Autogenerated input type of CreateOrUpdateTrackingNumber","fields":null,"inputFields":[{"name":"shipmentId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingNumber","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProcessTrackingNumbersPayload","description":"Autogenerated return type of ProcessTrackingNumbers","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ProcessTrackingNumbersInput","description":"Autogenerated input type of ProcessTrackingNumbers","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProcessDigitalResourcesCsvPayload","description":"Autogenerated return type of ProcessDigitalResourcesCsv","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ProcessDigitalResourcesCsvInput","description":"Autogenerated input type of ProcessDigitalResourcesCsv","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"searchQuery","description":null,"type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateAcceptsNewBackersPayload","description":"Autogenerated return type of UpdateAcceptsNewBackers","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Updated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateAcceptsNewBackersInput","description":"Autogenerated input type of UpdateAcceptsNewBackers","fields":null,"inputFields":[{"name":"projectId","description":"ID of the project related to the pledge manager","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"acceptsNewBackers","description":"Whether the pledge manager accepts new backers or not","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePledgeManagerStatePayload","description":"Autogenerated return type of UpdatePledgeManagerState","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManager","description":"The updated Pledge Manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeManager","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePledgeManagerStateInput","description":"Autogenerated input type of UpdatePledgeManagerState","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"Pledge Manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"state","description":"New state for the Pledge Manager","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateEligibilityQuestionnairePayload","description":"Autogenerated return type of CreateEligibilityQuestionnaire","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateEligibilityQuestionnaireInput","description":"Autogenerated input type of CreateEligibilityQuestionnaire","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"chargedUsSalesTax","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"chargedUkVat","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"chargedEuVat","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"chargedGstOrHst","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"backersReceivingGoodsFromMultiplePlaces","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"tableAcknowledged","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdatePreviewOrderPayload","description":"Autogenerated return type of CreateOrUpdatePreviewOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The preview order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdatePreviewOrderInput","description":"Autogenerated input type of CreateOrUpdatePreviewOrder","fields":null,"inputFields":[{"name":"projectId","description":"The id of the project the order should belong to","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"existingOrderId","description":"The id of an existing order to update (optional)","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"locationId","description":"The id of the location for the order","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"entryPoint","description":"The type of order you are trying to preview, e.g. one with a crowdfunding backing","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PreviewEntryPointEnum","ofType":null}},"defaultValue":null},{"name":"baseRewardId","description":"The id of the crowdfunding base reward for the order (optional)","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"addonIds","description":"The ids of the crowdfunding add-ons for the order (optional)","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitOrderEditPayload","description":"Autogenerated return type of SubmitOrderEdit","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderEdit","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEdit","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitOrderEditInput","description":"Autogenerated input type of SubmitOrderEdit","fields":null,"inputFields":[{"name":"orderEditId","description":"The OrderEdit id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateDraftOrderEditPayload","description":"Autogenerated return type of CreateOrUpdateDraftOrderEdit","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order the edit will apply to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateDraftOrderEditInput","description":"Autogenerated input type of CreateOrUpdateDraftOrderEdit","fields":null,"inputFields":[{"name":"orderId","description":"The id of the order that is being edited","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"additions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"NewRewardInput","ofType":null}}},"defaultValue":null},{"name":"edits","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EditInput","ofType":null}}},"defaultValue":null},{"name":"upgrade","description":null,"type":{"kind":"INPUT_OBJECT","name":"NewRewardInput","ofType":null},"defaultValue":null},{"name":"removalIds","description":"The ids of additions or upgrades to remove from the order edit","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"NewRewardInput","description":"Data necessary to create an order edit addition or upgrade","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"answers","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AnswerInput","ofType":null}},"defaultValue":null},{"name":"lineItemUpdates","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LineItemInput","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AnswerInput","description":"Answer associated with a particular question and answerable.","fields":null,"inputFields":[{"name":"questionId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"response","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"answerableId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LineItemInput","description":"Line item belonging to a cart","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"optionValueIds","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"answers","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AnswerInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EditInput","description":"Data necessary to create an order edit line item edit","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"optionValueIds","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"answers","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EditAnswerInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EditAnswerInput","description":null,"fields":null,"inputFields":[{"name":"response","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"answerId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RejectOrderEditPayload","description":"Autogenerated return type of RejectOrderEdit","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderEdit","description":"The rejected order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEdit","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RejectOrderEditInput","description":"Autogenerated input type of RejectOrderEdit","fields":null,"inputFields":[{"name":"orderEditId","description":"The order edit id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CalculateOrderEditTotalsPayload","description":"Autogenerated return type of CalculateOrderEditTotals","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CalculateOrderEditTotalsInput","description":"Autogenerated input type of CalculateOrderEditTotals","fields":null,"inputFields":[{"name":"orderEditId","description":"The OrderEdit id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AcceptOrderEditPayload","description":"Autogenerated return type of AcceptOrderEdit","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"The stripe payment intent client secret used to complete a payment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"The stripe payment intent status (if requires_action, it will be)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OnSessionPaymentIntentStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AcceptOrderEditInput","description":"Autogenerated input type of AcceptOrderEdit","fields":null,"inputFields":[{"name":"orderEditId","description":"The order edit id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"stripeConfirmationTokenId","description":"The stripe confirmation token used to complete a payment (web only)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"stripePaymentMethodId","description":"The stripe payment method id, starting with either `card_` or `pm_` (mobile only)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":"Kickstarter internal payment source id. Expects a number (not the stripe id starting with `pm_`). Pass in when using a saved card (optional)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceReusable","description":"If the new payment source can be reused for future payments (optional)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"paymentMethodTypes","description":"List of accepted stripe payment method types","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOptionPayload","description":"Autogenerated return type of CreateOption","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optionType","description":null,"args":[],"type":{"kind":"OBJECT","name":"OptionType","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOptionInput","description":"Autogenerated input type of CreateOption","fields":null,"inputFields":[{"name":"itemId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"values","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOptionPayload","description":"Autogenerated return type of UpdateOption","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optionType","description":null,"args":[],"type":{"kind":"OBJECT","name":"OptionType","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOptionInput","description":"Autogenerated input type of UpdateOption","fields":null,"inputFields":[{"name":"optionTypeId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"values","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteOptionPayload","description":"Autogenerated return type of DeleteOption","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item that the deleted option type was associated with","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if option_type is deleted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteOptionInput","description":"Autogenerated input type of DeleteOption","fields":null,"inputFields":[{"name":"optionTypeId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateQuestionPayload","description":"Autogenerated return type of CreateQuestion","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":null,"args":[],"type":{"kind":"OBJECT","name":"Question","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateQuestionInput","description":"Autogenerated input type of CreateQuestion","fields":null,"inputFields":[{"name":"questionableId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"questionableType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionableType","ofType":null}},"defaultValue":null},{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionType","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"choices","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"choiceSelectionLimit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"optional","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"QuestionableType","description":"Types that can be associated with a Question","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Project","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RewardItem","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Reward","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UpdateQuestionPayload","description":"Autogenerated return type of UpdateQuestion","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":null,"args":[],"type":{"kind":"OBJECT","name":"Question","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateQuestionInput","description":"Autogenerated input type of UpdateQuestion","fields":null,"inputFields":[{"name":"questionId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionType","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"choices","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"choiceSelectionLimit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"optional","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteQuestionPayload","description":"Autogenerated return type of DeleteQuestion","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if question is deleted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteQuestionInput","description":"Autogenerated input type of DeleteQuestion","fields":null,"inputFields":[{"name":"questionId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BulkEditQuestionsPayload","description":"Autogenerated return type of BulkEditQuestions","fields":[{"name":"backerSurvey","description":"The updated backer survey.","args":[],"type":{"kind":"OBJECT","name":"BackerSurvey","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"BulkEditQuestionsInput","description":"Autogenerated input type of BulkEditQuestions","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"questions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"QuestionInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"QuestionInput","description":"Question associated with a particular questionable.","fields":null,"inputFields":[{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionType","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"questionableId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"questionableType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionableType","ofType":null}},"defaultValue":null},{"name":"choices","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"choiceSelectionLimit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"optional","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateItemVariantsPayload","description":"Autogenerated return type of UpdateItemVariants","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"itemVariants","description":"The updated item variants","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemVariant","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateItemVariantsInput","description":"Autogenerated input type of UpdateItemVariants","fields":null,"inputFields":[{"name":"itemVariants","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemVariantInput","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemVariantInput","description":"Input for updating an Item Variant","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteBackerSurveyPayload","description":"Autogenerated return type of DeleteBackerSurvey","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if backer survey is deleted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteBackerSurveyInput","description":"Autogenerated input type of DeleteBackerSurvey","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetBackerSurveyPayload","description":"Autogenerated return type of ResetBackerSurvey","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if backer survey responses are reset.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetBackerSurveyInput","description":"Autogenerated input type of ResetBackerSurvey","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitResponsesPayload","description":"Autogenerated return type of SubmitResponses","fields":[{"name":"cart","description":"The finalized cart, if submission is successful.","args":[],"type":{"kind":"OBJECT","name":"Cart","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deliveryAddress","description":"The delivery address attached to backing.","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if cart is finalized.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitResponsesInput","description":"Autogenerated input type of SubmitResponses","fields":null,"inputFields":[{"name":"cartId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"addressId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"lineItemUpdates","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LineItemInput","ofType":null}}}},"defaultValue":null},{"name":"backerQuestionAnswers","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AnswerInput","ofType":null}}}},"defaultValue":null},{"name":"finalizeOnSubmit","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateBackerSurveyPayload","description":"Autogenerated return type of CreateBackerSurvey","fields":[{"name":"backerSurvey","description":"The backer survey if creation was successful.","args":[],"type":{"kind":"OBJECT","name":"BackerSurvey","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateBackerSurveyInput","description":"Autogenerated input type of CreateBackerSurvey","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetAddressCollectionEnabledPayload","description":"Autogenerated return type of SetAddressCollectionEnabled","fields":[{"name":"addressCollectionEnabled","description":"Whether or not the creator has enabled address collection for this project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"addressCollectionForDigitalReward","description":"Whether or not addresses should be collected for digital reward backers.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetAddressCollectionEnabledInput","description":"Autogenerated input type of SetAddressCollectionEnabled","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"addressCollectionEnabled","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"addressCollectionForDigitalReward","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LockAddressesPayload","description":"Autogenerated return type of LockAddresses","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Returns the updated project if successful.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LockAddressesInput","description":"Autogenerated input type of LockAddresses","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SendSurveyPayload","description":"Autogenerated return type of SendSurvey","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"survey","description":"The updated survey.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackerSurvey","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SendSurveyInput","description":"Autogenerated input type of SendSurvey","fields":null,"inputFields":[{"name":"surveyId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateBackerSurveyIntroPayload","description":"Autogenerated return type of UpdateBackerSurveyIntro","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"survey","description":"The updated survey.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackerSurvey","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateBackerSurveyIntroInput","description":"Autogenerated input type of UpdateBackerSurveyIntro","fields":null,"inputFields":[{"name":"surveyId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"intro","description":null,"type":{"kind":"SCALAR","name":"HTML","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateResourceAudiencePayload","description":"Autogenerated return type of UpdateResourceAudience","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"resource","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"SecretResource","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateResourceAudienceInput","description":"Autogenerated input type of UpdateResourceAudience","fields":null,"inputFields":[{"name":"resourceId","description":"The resource id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"removeRestrictions","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AddUserToSecretRewardGroupPayload","description":"Autogenerated return type of AddUserToSecretRewardGroup","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project data","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AddUserToSecretRewardGroupInput","description":"Autogenerated input type of AddUserToSecretRewardGroup","fields":null,"inputFields":[{"name":"projectId","description":"ID of the project with secret rewards","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"secretRewardToken","description":"Secret reward token shared by the creator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IssueRefundPayload","description":"Autogenerated return type of IssueRefund","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"refund","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Refund","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckout","description":"The in-memory refund checkout instance","args":[],"type":{"kind":"OBJECT","name":"RefundCheckout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"IssueRefundInput","description":"Autogenerated input type of IssueRefund","fields":null,"inputFields":[{"name":"backingId","description":"ID of associated backing","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"reason","description":"Reason for adjustment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundReasonType","ofType":null}},"defaultValue":null},{"name":"message","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"intentClientSecret","description":"Stripe SetupIntent client secret","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"refundChargeId","description":"Refund charge id if a refund charge was issued prior to issuing refund","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"creatorPaymentSourceId","description":"Stripe Payment Source ID","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"refundPledgeInput","description":"Parameters to refund a pledge. Leave blank to not refund the pledge.","type":{"kind":"INPUT_OBJECT","name":"RefundPledgeInput","ofType":null},"defaultValue":null},{"name":"refundOrderInput","description":"Parameters to refund a order.","type":{"kind":"INPUT_OBJECT","name":"RefundOrderInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateRefundChargePayload","description":"Autogenerated return type of CreateRefundCharge","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"If `requires_action` is true, `client_secret` should be used to initiate additional client-side authentication steps","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundChargeId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"requiresAction","description":"Whether this refund charge requires additional client-side authentication steps","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateRefundChargeInput","description":"Autogenerated input type of CreateRefundCharge","fields":null,"inputFields":[{"name":"backingId","description":"ID of associated backing","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"refundAmountCents","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"creatorPaymentSourceId","description":"Stripe Payment Source ID","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"confirmationTokenId","description":"Stripe confirmation token ID","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"reusable","description":"Whether to reuse the saved payment source","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateRefundCheckoutPayload","description":"Autogenerated return type of UpdateRefundCheckout","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckout","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefundCheckout","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateRefundCheckoutInput","description":"Autogenerated input type of UpdateRefundCheckout","fields":null,"inputFields":[{"name":"refundCheckoutId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"state","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"stateReason","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrderAdjustmentPayload","description":"Autogenerated return type of UpdateOrderAdjustment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderAdjustment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefundAdjustmentData","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrderAdjustmentInput","description":"Autogenerated input type of UpdateOrderAdjustment","fields":null,"inputFields":[{"name":"refundId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"success","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"stateReason","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateShopPayload","description":"Autogenerated return type of CreateOrUpdateShop","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project associated with the Shopify shop","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateShopInput","description":"Autogenerated input type of CreateOrUpdateShop","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"shopifyDomain","description":"The Shopify domain","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"token","description":"The Shopify access token","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateVariantMappingsPayload","description":"Autogenerated return type of CreateVariantMappings","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateVariantMappingsInput","description":"Autogenerated input type of CreateVariantMappings","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"mappings","description":"Array of variant mappings to have records created for","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"VariantMappingInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"VariantMappingInput","description":"A kickstarter item variant id and a shopify variant id","fields":null,"inputFields":[{"name":"itemVariantId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"shopifyVariantId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleSyncingForShopPayload","description":"Autogenerated return type of ToggleSyncingForShop","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleSyncingForShopInput","description":"Autogenerated input type of ToggleSyncingForShop","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteVariantMappingsPayload","description":"Autogenerated return type of DeleteVariantMappings","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteVariantMappingsInput","description":"Autogenerated input type of DeleteVariantMappings","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateBackerReportSegmentPayload","description":"Autogenerated return type of CreateBackerReportSegment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":null,"args":[],"type":{"kind":"OBJECT","name":"SavedSearchSegment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateBackerReportSegmentInput","description":"Autogenerated input type of CreateBackerReportSegment","fields":null,"inputFields":[{"name":"name","description":"The name of saved segment","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":"The project ID of the request","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"segmentId","description":"The ID of the segment to update. If null, a new segment will be created","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"segmentBody","description":"A set of search parameters to save for reëxecution","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"duplicate","description":"If true, the segment will be duplicated","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteBackerReportSegmentPayload","description":"Autogenerated return type of DeleteBackerReportSegment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Indicates if the deletion was successful","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteBackerReportSegmentInput","description":"Autogenerated input type of DeleteBackerReportSegment","fields":null,"inputFields":[{"name":"segmentId","description":"The ID of the segment to delete","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateRecentSearchPayload","description":"Autogenerated return type of CreateOrUpdateRecentSearch","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":null,"args":[],"type":{"kind":"OBJECT","name":"RecentSearch","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateRecentSearchInput","description":"Autogenerated input type of CreateOrUpdateRecentSearch","fields":null,"inputFields":[{"name":"name","description":"The name of the search","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"body","description":"The search query as URL params","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteRecentSearchPayload","description":"Autogenerated return type of DeleteRecentSearch","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Indicates if the deletion was successful","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteRecentSearchInput","description":"Autogenerated input type of DeleteRecentSearch","fields":null,"inputFields":[{"name":"id","description":"The ID of the recent search to delete","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DistributeDigitalAccessResourcesPayload","description":"Autogenerated return type of DistributeDigitalAccessResources","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DistributeDigitalAccessResourcesInput","description":"Autogenerated input type of DistributeDigitalAccessResources","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"resources","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"resourcesType","description":"Type of resource distribution: 'unique' or 'shared'","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ResourcesTypeEnum","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"searchQuery","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ResourcesTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"UNIQUE","description":"Each backer gets a unique resource","isDeprecated":false,"deprecationReason":null},{"name":"SHARED","description":"All backers share the same resource","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SetUserBadgesPayload","description":"Autogenerated return type of SetUserBadges","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetUserBadgesInput","description":"Autogenerated input type of SetUserBadges","fields":null,"inputFields":[{"name":"badgeNames","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null},{"name":"userId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A list of all directives supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Directive","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":"If this server supports mutation, the type that mutation operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":"The type that query operations will be rooted at.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":"If this server support subscription, the type that subscription operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"types","description":"A list of all types supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Indicates this type is a union. `possibleTypes` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Indicates this type is an enum. `enumValues` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Indicates this type is an input object. `inputFields` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":"Indicates this type is a list. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":"Indicates this type is a non-null. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"QUERY","description":"Location adjacent to a query operation.","isDeprecated":false,"deprecationReason":null},{"name":"MUTATION","description":"Location adjacent to a mutation operation.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIPTION","description":"Location adjacent to a subscription operation.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD","description":"Location adjacent to a field.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_DEFINITION","description":"Location adjacent to a fragment definition.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_SPREAD","description":"Location adjacent to a fragment spread.","isDeprecated":false,"deprecationReason":null},{"name":"INLINE_FRAGMENT","description":"Location adjacent to an inline fragment.","isDeprecated":false,"deprecationReason":null},{"name":"SCHEMA","description":"Location adjacent to a schema definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":"Location adjacent to a scalar definition.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Location adjacent to an object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_DEFINITION","description":"Location adjacent to a field definition.","isDeprecated":false,"deprecationReason":null},{"name":"ARGUMENT_DEFINITION","description":"Location adjacent to an argument definition.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Location adjacent to an interface definition.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Location adjacent to a union definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Location adjacent to an enum definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM_VALUE","description":"Location adjacent to an enum value definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Location adjacent to an input object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_FIELD_DEFINITION","description":"Location adjacent to an input object field definition.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null}],"directives":[{"name":"include","description":"Directs the executor to include this field or fragment only when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Included when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}} \ No newline at end of file +{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":"The query root of the Kickstarter GraphQL interface.","fields":[{"name":"backerReportSavedSearchSegments","description":"Fetches all saved searches user in provided origin","args":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SavedSearchSegment","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"Fetches a backing given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"captionLanguages","description":"Languages that are eligible for creating captions for video tracks","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CaptionLanguage","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"category","description":"Fetch a project category by param..","args":[{"name":"param","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"checkout","description":"Fetches a checkout given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"claims","description":"Extracts claims from text.","args":[{"name":"text","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"useStanford","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Claims","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentCurrency","description":"The visitor's chosen currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultTaxCategories","description":"Default tax categories managed by Kickstarter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TaxCategory","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"editorial","description":null,"args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"slug","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"revision","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"admin","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"EditorialConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialPage","description":null,"args":[{"name":"slug","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialPage","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialPageForAdmin","description":null,"args":[{"name":"slug","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialPageForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialPages","description":null,"args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"search","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pageType","description":null,"type":{"kind":"ENUM","name":"EditorialPageType","ofType":null},"defaultValue":null},{"name":"sortField","description":null,"type":{"kind":"ENUM","name":"EditorialPageSortField","ofType":null},"defaultValue":null},{"name":"sortDirection","description":null,"type":{"kind":"ENUM","name":"EditorialPageSortDirection","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialPageForAdminConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialRevision","description":null,"args":[{"name":"uuid","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialRevision","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editorialRevisionForAdmin","description":null,"args":[{"name":"uuid","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentAddress","description":"Fetches a address given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fundingCurrencies","description":"Currencies a creator can choose between for collecting pledges on a project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FundingCurrency","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"inspectUser","description":"A user you're inspecting","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"Fetches an item given its relay id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ksrFact","description":"Get a kickstarter fact","args":[],"type":{"kind":"OBJECT","name":"KsrFact","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":"Searches locations.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"term","description":"Location search term.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"assignable","description":"Only return locations assignable (to a Project or User).","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"searchable","description":"Only return locations for searching Projects.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"lat","description":"Latitude of the location.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"long","description":"Longitude of the location.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"radius","description":"Maximum distance in kilometers from the given coordinates.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"useSessionLocation","description":"Use the session location to search for locations.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filterByCoordinates","description":"Filter by coordinates.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"discoverable","description":"Filter by discoverable.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LocationsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"me","description":"You.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"Fetches an order given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"orderEdit","description":"Fetches an order edit given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEdit","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"photoForEditor","description":null,"args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManagerOptOutReasons","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptOutReason","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeNotifications","description":"Pledge notifications (tier 1–3)","args":[],"type":{"kind":"OBJECT","name":"PledgeNotifications","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeProjectsOverview","description":"Provides an overview of pledge projects","args":[{"name":"tierTypes","description":"tier types to include in response","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PledgeProjectsOverviewSort","ofType":null}}},"defaultValue":null},{"name":"sort","description":"Sort option as a string.","type":{"kind":"ENUM","name":"BackingsDashboardSortOptions","ofType":null},"defaultValue":"RELEVANCY"},{"name":"filters","description":"All filter criteria for pledge projects.","type":{"kind":"INPUT_OBJECT","name":"PledgeProjectsOverviewFilterInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PledgeProjectsOverview","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":"Fetches a post given its ID.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Fetches a project given its slug or pid.","args":[{"name":"slug","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pid","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectInvestigations","description":null,"args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"projectName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"reportStatuses","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"TaskState","ofType":null}}},"defaultValue":null},{"name":"reportCategories","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"TaskProjectReportCategory","ofType":null}}},"defaultValue":null},{"name":"projectPublicState","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PublicProjectState","ofType":null}}},"defaultValue":null},{"name":"creatorHrcTier","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreatorHrcStatusTier","ofType":null}}},"defaultValue":null},{"name":"projectDeadlineSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"flaggingsCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"reportsCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"reportsOpenCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"reportsUnassignedCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"zendeskTicketsCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"openZendeskTicketsCountSort","description":null,"type":{"kind":"ENUM","name":"OpenSearchSort","ofType":null},"defaultValue":null},{"name":"page","description":"Page number of results to fetch","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"perPage","description":"Number of results to return per page","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"seed","description":"Seed for ordering the projects","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectInvestigationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"Get some projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"backed","description":"Get projects backed by the current user.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"collaborated","description":"Get projects where the current user is a collaborator.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"categoryId","description":"Get projects in only this category.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created","description":"Get projects created by the current user.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"following","description":"social (backed by people I'm following).","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"goal","description":"Get projects with a USD goal amount in this bucket.","type":{"kind":"ENUM","name":"GoalBuckets","ofType":null},"defaultValue":null},{"name":"locationId","description":"Get projects from this location.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"pledged","description":"Get projects with a USD pledged amount in this bucket.","type":{"kind":"ENUM","name":"PledgedBuckets","ofType":null},"defaultValue":null},{"name":"raised","description":"Get projects with a raised percent in this bucket.","type":{"kind":"ENUM","name":"RaisedBuckets","ofType":null},"defaultValue":null},{"name":"recommended","description":"Get projects recommended for the current user.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"recommendationsModels","description":"The recommendations models to use","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RecommendationsModel","ofType":null}}},"defaultValue":null},{"name":"recommendationsSource","description":"The source for recommendations.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RecommendationsSource","ofType":null}}},"defaultValue":null},{"name":"seed","description":"Seed for ordering the projects","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"similarToPid","description":"Find projects similar to the given project by pid.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"similarTo","description":"Find projects similar to the given project term.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"sort","description":"The sort order for returned projects.","type":{"kind":"ENUM","name":"ProjectSort","ofType":null},"defaultValue":null},{"name":"staffPicks","description":"Get project selected as staff picks.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"starred","description":"Get projects starred by the current user.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"state","description":"Get projects with this state.","type":{"kind":"ENUM","name":"PublicProjectState","ofType":null},"defaultValue":null},{"name":"tagId","description":"Get projects with this tag.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"term","description":"Project search term.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"excludePids","description":"A list of pids corresponding to projects to be excluded from the results","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null},{"name":"deadlineAfter","description":"Get projects with deadlines after this date","type":{"kind":"SCALAR","name":"DateTime","ofType":null},"defaultValue":null},{"name":"deadlineBefore","description":"Get projects with deadlines before this date","type":{"kind":"SCALAR","name":"DateTime","ofType":null},"defaultValue":null},{"name":"lat","description":"Latitude of the location.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"long","description":"Longitude of the location.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"radius","description":"Maximum distance in kilometers from the given coordinates.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"useSessionLocation","description":"Use the session location to search for locations.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filterByCoordinates","description":"Filter by coordinates.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectsConnectionWithTotalCount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"quizProjects","description":"Editorialized quiz projects for the taste profile quiz.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"excludeQuizProjectIds","description":"Exclude certain quiz projects from the results","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"QuizProjectsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refund","description":"Fetches a refund given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Refund","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckout","description":"Fetches a refund checkout given its id.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RefundCheckout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"regionalAuthorities","description":"Regional tax authorities","args":[{"name":"country","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":null,"args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rootCategories","description":"Root project categories.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Category","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingCountryLocations","description":"Country locations for shipping rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRegionalLocations","description":"Regional locations for shipping rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRoot","description":"Root location for shipping rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"supportedCountries","description":"Countries that can launch projects.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Country","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"Tags.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"scope","description":"Scoped to a provided scope","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"TagScope","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TagsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"trackBackgroundJobProgress","description":null,"args":[{"name":"jobName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackgroundJobProgress","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":"Fetches a project update given its ID.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FreeformPost","ofType":null},"isDeprecated":true,"deprecationReason":"Use post field instead"},{"name":"uploadLimit","description":"The maximum file size of an upload by type.","args":[{"name":"filetype","description":"The type of file we are checking the upload limit of.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UploadLimitFiletype","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UploadLimit","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usdType","description":"How USD currencies should be rendered, based on user's location","args":[],"type":{"kind":"ENUM","name":"UsdType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validateDigitalResourceCsv","description":"Validates a digital resource CSV file","args":[{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"searchQuery","description":null,"type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ValidateDigitalResource","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"visibleCountries","description":"Countries that are visible to the current user. This may include countries that cannot launch projects.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Country","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Address","ofType":null},{"kind":"OBJECT","name":"AdjustmentSummary","ofType":null},{"kind":"OBJECT","name":"AiDisclosure","ofType":null},{"kind":"OBJECT","name":"AttachedAudio","ofType":null},{"kind":"OBJECT","name":"AttachedVideo","ofType":null},{"kind":"OBJECT","name":"Backing","ofType":null},{"kind":"OBJECT","name":"Category","ofType":null},{"kind":"OBJECT","name":"Checkout","ofType":null},{"kind":"OBJECT","name":"Comment","ofType":null},{"kind":"OBJECT","name":"Conversation","ofType":null},{"kind":"OBJECT","name":"CreatorInterview","ofType":null},{"kind":"OBJECT","name":"CreatorPrompt","ofType":null},{"kind":"OBJECT","name":"CuratedPage","ofType":null},{"kind":"OBJECT","name":"Flagging","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null},{"kind":"OBJECT","name":"InterviewAnswer","ofType":null},{"kind":"OBJECT","name":"InterviewQuestion","ofType":null},{"kind":"OBJECT","name":"Location","ofType":null},{"kind":"OBJECT","name":"Message","ofType":null},{"kind":"OBJECT","name":"Order","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Photo","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ProjectInvestigation","ofType":null},{"kind":"OBJECT","name":"ProjectProfile","ofType":null},{"kind":"OBJECT","name":"Refund","ofType":null},{"kind":"OBJECT","name":"Reward","ofType":null},{"kind":"OBJECT","name":"RewardItem","ofType":null},{"kind":"OBJECT","name":"SavedSearchSegment","ofType":null},{"kind":"OBJECT","name":"ShippingRule","ofType":null},{"kind":"OBJECT","name":"Survey","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null},{"kind":"OBJECT","name":"User","ofType":null},{"kind":"OBJECT","name":"UserUrl","ofType":null},{"kind":"OBJECT","name":"Video","ofType":null},{"kind":"OBJECT","name":"VideoTrack","ofType":null},{"kind":"OBJECT","name":"VideoTrackCue","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"VXNlci0xMA==\"`) or integer (such as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"User","description":"A member of Kickstarter.","fields":[{"name":"activeBackings","description":"A user's active backings of live projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserBackingsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"activeProjects","description":"Projects a user has created or is an active collaborator on","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserActiveProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addresses","description":"This user's saved shipping addresses","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AddressConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allowsFollows","description":"Indicates whether or not the user allows other Kickstarter users to follow them","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backedProjects","description":"Projects a user has backed.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserBackedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backedProjectsWithDummy","description":"Projects a user has backed, including finalized dummy backings","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserBackedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingActionCount","description":"Count of pledges with pending action","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backings","description":"A user's backings.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"status","description":"Filter backings to only those with this status","type":{"kind":"ENUM","name":"BackingState","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserBackingsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingsCount","description":"Number of backings for this user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"badges","description":"List of names of the badges applied to a user","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"biography","description":"A description of the user's background.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"blockedUsers","description":"List of users blocked by current user","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"canCurate","description":"Whether or not the user can curate pages","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeeConfirmSignalModal","description":"Whether user can see the confirmation modal that appears after the user likes or dislike a project for the first time","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeeConfirmWatchModal","description":"Whether user can see the confirmation modal that appears after the user watches a project for the first time","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeePylToast","description":"Whether user can see PYL toast notification","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeeRewardImagesToast","description":"Whether user can see the reward images toast notification that appears on build pages","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canSeeTasteProfileToast","description":"Whether user can see the taste profile toast notification that appears on the thanks page","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"chosenCurrency","description":"The user's chosen currency","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"conversations","description":"Conversations the user had","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"mailbox","description":"The mailbox","type":{"kind":"ENUM","name":"MailboxType","ofType":null},"defaultValue":null},{"name":"project_id","description":"The project id","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserConversationsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdProjects","description":"Projects a user has created.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Column to order the list of projects by","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"order","description":"Order in ascending or descending order","type":{"kind":"ENUM","name":"OrderDirection","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserCreatedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"curatedPages","description":"Pages curated by the user","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserCuratedPagesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"digitalAccessResources","description":"Digital Access Resources provided by a creator to fulfill digital rewards","args":[{"name":"pid","description":"The project for which the digital reward was provided","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DigitalAccessResource","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"A user's email address.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enabledFeatures","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Feature","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"followers","description":"Users following a user.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserFollowersConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"following","description":"Users a user is following.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserFollowingConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillingProjects","description":"Projects a user has launched that are successful,\n but have not completed fulfillment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasConfirmedDisconnectRequest","description":"Whether or not the user has confirmed Apple Id disconnect request via email auth token.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasExpiredDisconnectToken","description":"Whether or not the user's Apple Id disonnect token has expired.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasImage","description":"If the user has uploaded an avatar.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPassword","description":"Whether or not the user has a password.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasPendingDisconnectRequest","description":"Whether or not the user has a pending Apple Id disconnect request.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasSlug","description":"Whether a user has their slug set.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasUnreadMessages","description":"Whether or not a user has unread messages.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasUnseenActivity","description":"Whether or not a user has unseen activity.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasUnseenSavedProjectsActivity","description":"Whether or not a user has unseen saved projects activity.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"highestProjectSentiment","description":"The highest sentiment for successful projects for a user","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"The user's avatar.","args":[{"name":"blur","description":"Whether or not to blur the image.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"width","description":"The width of the image in pixels.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"invitedProjects","description":"Projects a user has been invited to collaborate on","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserInvitedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isAdvisoryCouncilAlum","description":"Whether the user has been on our advisory council","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isAdvisoryCouncilMember","description":"Whether the user is currently on our advisory council","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isAppleConnected","description":"Whether or not the user has authenticated with Apple.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isBackerFavorite","description":"Whether the user (as a creator) is a Backer Favorite","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isBlocked","description":"Is user blocked by current user","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isCreator","description":"Whether a user is a creator of any project","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeliverable","description":"Whether a user's email address is deliverable","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isEmailVerified","description":"Whether or not the user's email is verified.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isFacebookConnected","description":"Whether or not the user is connected to Facebook.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isFollowing","description":"Whether or not you are following the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isGhosting","description":"Whether a KSR admin is ghosting as another user","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isKsrAdmin","description":"Whether or not you are a KSR admin.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isRegistered","description":"Whether the user is registered","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSepaEligible","description":"Whether the user can create SEPA account payment sources","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSlugValid","description":"Whether a user's entered slug is valid.","args":[{"name":"slug","description":"The user's entered slug.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Validation","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSocializing","description":"Whether or not the user is either Facebook connected or has follows/followings.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isSuperbacker","description":"Whether the user is a superbacker","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"joinedOn","description":"The timestamp of when the user joined Kickstarter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastLogin","description":"The last time a user logged in, time since epoch","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latestBackerFavoriteProject","description":"The most recent successful project that has a positive sentiment and a qualifying backer coverage rate","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"launchedProjects","description":"Projects a user has launched.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"excludePids","description":"A list of pids corresponding to projects to be excluded from the results","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null},{"name":"orderBy","description":"Column to order the list of projects by","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"order","description":"Order in ascending or descending order","type":{"kind":"ENUM","name":"OrderDirection","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectsConnectionWithTotalCount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"Where the user is based.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"membershipProjects","description":"Projects the user has collaborated on.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"MembershipProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The user's provided name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"needsFreshFacebookToken","description":"Does the user to refresh their facebook token?","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"newsletterSubscriptions","description":"Which newsleters are the users subscribed to","args":[],"type":{"kind":"OBJECT","name":"NewsletterSubscriptions","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"notifications","description":"All of a user's notifications","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Notification","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"optedOutOfRecommendations","description":"Is the user opted out from receiving recommendations","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organizations","description":"Organizations a user is a member of","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Filter organizations by membership state.","type":{"kind":"ENUM","name":"OrganizationMembershipState","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserOrganizationsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pendingEmail","description":"The user's pending email when changing email or disconnecting from Apple ID","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ppoHasAction","description":"Whether backer has any action in PPO","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectNotifications","description":"A user's project notification settings","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Notification","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"recentSearches","description":"The user's recent searches","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RecentSearch","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"savedProjects","description":"Projects a user has saved.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Filter projects by publically accessible state.","type":{"kind":"ENUM","name":"PublicProjectState","ofType":null},"defaultValue":null},{"name":"deadlineAfter","description":"Get saved projects with deadlines after this date","type":{"kind":"SCALAR","name":"DateTime","ofType":null},"defaultValue":null},{"name":"deadlineBefore","description":"Get saved projects with deadlines before this date","type":{"kind":"SCALAR","name":"DateTime","ofType":null},"defaultValue":null},{"name":"upcoming","description":"Get saved projects that are upcoming","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"launched","description":"Get saved projects that have launched","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserSavedProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"showPublicProfile","description":"Is the user's profile public","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The user's slug.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"storedBankAccounts","description":"SEPA accounts stored for this user.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"includeExpired","description":"Should expired accounts be included.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BankAccountConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"storedCards","description":"Stored Cards","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserCreditCardTypeConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"successfulBackings","description":"A user's backings of successful projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserBackingsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"successfulProjects","description":"Projects a user has launched that are successful.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectsConnectionWithTotalCount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"surveyResponses","description":"This user's survey responses","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"answered","description":"Filter by projects that have or have not been answered.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SurveyResponsesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalBackersAcrossProjects","description":"The total number of backers across all the user's projects","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalProjectsWeLove","description":"The total number of projects the user has created that are staff picked","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"uid","description":"A user's uid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unsuccessfulBackings","description":"A user's backings that are cancelled or for unsuccessful projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserBackingsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A URL to the user's profile.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userRestrictions","description":"Details about a user's restrictions","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserRestriction","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"vatNumbers","description":"List of VAT ids used by the user","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"websites","description":"A user's websites","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserUrl","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"Feature","description":"The list of available public features","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"device_components","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"show_posts_feed","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_crashlytics","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_mixpanel","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_new_relic","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_hockey_app","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_koala","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_i18n","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_tappable_category_location","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_favorite_categories","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_wh_tout","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_qualtrics","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_native_checkout","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_native_checkout_pledge_view","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_live_streams","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_live_stream_discovery","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_live_stream_chat","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_scroll_output_observe_for_ui","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_backer_dashboard","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_email_verification_flow","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_email_verification_skip","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_segment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ios_braze","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"android_segment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"android_braze","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"native_creator_breakdown_chart","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"identity_verification_project_overview","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"message_archiving","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"message_spam","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"emoji_locale","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"default_to_campaign_on_mobile","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pinned_posts_on_feed","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"image_uploader_alt_text","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"rich_text_embedifier","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"admin_checkout_debugger","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"accounts_upgrade","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ksr10_build_overview","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"me_generative_art","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_build_rewards_explorer","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_build_intercom","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_build_zendesk","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_build_milestones","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"user_menu_draft_project","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"make_100_2020","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"funding_sheet","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"qualtrics","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"track_define_namespace","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"how_it_works","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"disable_manual_create_stripe_elements_postal_code","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_update_requests","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_header_media_carousel_hero","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"featured_project_mobile_optimizations","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IBAN_flexibility","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"inside_voices_footer","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"stacked_recs_on_mobile","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_prelaunch_summaries","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ca_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ch_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dk_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"no_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pl_usd_currency_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"sg_usd_currency_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"se_currency_selector","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"datalake_fe_events","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_demographics_survey","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"save_project_experiment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"segment_tracking_events","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"segment_hide_project_deadline_property","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"web_error_on_retry_of_failed_3ds_backing","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"hide_facebook_login_button_2022","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_onboarding_flow_2021","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"updated_risks_flow","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"payment_element_project_build_2022","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"hk_bank_account_holder_name","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_osat_survey_2022","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"uk_created_projects_accept_usd_currency","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"enable_spotlight_bg_image","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ecovadis_component_2023","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"web_braze","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ckeditor_project_updates","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"payments_stripe_link_on_checkout","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"address_collection_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"backer_report_update_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"delay_backer_trust_module_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"reset_backer_survey_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_projects_overview_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_projects_overview_ios_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prelaunch_story_editor","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prelaunch_story_exception","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_nav_refresh","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"sku_editing_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"superbacker_progress","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"backers_can_choose_plot_v1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"sepa_debit_payment_element","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"trust_and_safety_project_banner","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"notification_banner_update_2024","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"react_backed_projects","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"copy_addons","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KDS_messages_app","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KDS_messages_app_backer_filter","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"discover_ui_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_management_reward_setup","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_experience_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"backings_dash_v2_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"featured_rewards_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_tab_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"show_creative_download_2024_report_in_nav","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"recent_searches_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_classifiers_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_over_time_ga_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_over_time_monthly_cadence_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"remove_event_sourcing_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"digital_rewards_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"digital_rewards__upload_button_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_over_time_edit_pledge_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_over_time_mid_plot_refunds_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"eufymake_backer_report","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"multi_vat_ids_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"shopify_sync_integration_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_tax_reporting_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"allow_survey_response_edits_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"shopify_kickoff_sync_job_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"tax_category_improvements","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prelaunch_updates","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_opt_out_feedback_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"include_canada_item_taxes_in_price","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"allow_editing_shipping_rates_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pm_backer_preview_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_and_order_combined_refund_charge_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"include_uk_vat_in_item_prices","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"include_eu_vat_in_item_prices","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_manager_eligibility_questionnaire_2025","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pm_order_editing_2025","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"DateTime","description":"Epoch time stamp.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserUrl","description":"A user's websites","fields":[{"name":"domain","description":"The domain of a user's website","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The URL of a user's website","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Location","description":"A location.","fields":[{"name":"country","description":"The country code.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"countryName","description":"The localized country name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"county","description":"The county name or code. Can be null.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"discoverUrl","description":"A URL to a discover page filtered by location","args":[{"name":"ref_tag","description":"The ref tag","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"displayableName","description":"The displayable name. It includes the state code for US cities. ex: 'Seattle, WA'","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRoot","description":"Whether or not this location is the root location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"latitude","description":"The latitude of the location.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"longitude","description":"The longitude of the location.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The localized name","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The state name or code. Can be null.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Float","description":"Represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Validation","description":"Validity and associated messages.","fields":[{"name":"errorTypes","description":"Error keys for validation error, if any","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"messages","description":"Error messages associated with the value","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"valid","description":"Whether a value is valid.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserCreditCardTypeConnection","description":"The connection type for CreditCard.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CreditCardEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CreditCard","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreditCardEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreditCard","description":"A credit card on file.","fields":[{"name":"expirationDate","description":"When the credit card expires.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The card ID","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastFour","description":"The last four digits of the credit card number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lowercaseType","description":"The card type, but in lowercase.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"LowercaseCreditCardTypes","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentType","description":"The card's payment type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardPaymentType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The card's state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stripeCardId","description":"Stripe card id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The card type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardTypes","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Date","description":"ISO Date: YYYY-MM-DD","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CreditCardTypes","description":"Credit card types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AMEX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DISCOVER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JCB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MASTERCARD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VISA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DINERS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UNIONPAY","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"LowercaseCreditCardTypes","description":"Credit card types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"amex","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"discover","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"jcb","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"mastercard","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"visa","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"diners","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"unionpay","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CreditCardPaymentType","description":"Credit card payment types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ANDROID_PAY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"APPLE_PAY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BANK_ACCOUNT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CREDIT_CARD","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CreditCardState","description":"States of Credit Cards","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"UNAUTHORIZED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VERIFYING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INACTIVE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"BankAccountConnection","description":"The connection type for BankAccount.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"BankAccountEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"BankAccount","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BankAccountEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"BankAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BankAccount","description":"A bank account.","fields":[{"name":"bankName","description":"The bank name if available.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastFour","description":"The last four digits of the account number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stripeCardId","description":"The stripe bank account id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserBackedProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":true,"deprecationReason":"Please use backingsCount instead."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":"A project on Kickstarter.","fields":[{"name":"accountInfo","description":"Account information.","args":[],"type":{"kind":"OBJECT","name":"AccountInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"actions","description":"Actions you can currently perform","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectActions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"activeWave","description":"The active checkout_wave, if there is one","args":[],"type":{"kind":"OBJECT","name":"CheckoutWave","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addOns","description":"Backing Add-ons","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"crowdfundingAndPledgeManagement","description":"Retrieves both, pledge redemption and crowdfunding add-ons","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"pledgeManagementOnly","description":"Filters available add ons by pledge redemption only","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"forLocation","description":"Filters available add ons by given location","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"sort","description":"Enables/disables add-ons sort by cost and title, with sorting enabled by default","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectRewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"additionalSubcategory","description":"The project's additional category.","args":[],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addressCollectionEnabled","description":"Whether or not the creator has enabled address collection","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addressCollectionForDigitalReward","description":"Whether or not the creator has enabled address collection for digital reward backers","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"aiDisclosure","description":null,"args":[],"type":{"kind":"OBJECT","name":"AiDisclosure","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allOrdersSyncedWithShopifyAt","description":"When all orders were last synced with Shopify","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"amountCollectedForAddonsUpgradesAndNewBackers","description":"The total amount collected for add-ons, upgrades, and new backers in the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountCollectedForShipping","description":"The total amount collected for shipping in the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"availableBackerEntryPoints","description":"The customer entry point available on this project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PreviewEntryPointEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableCardTypes","description":"Available card types.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardTypes","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableFundingCurrenciesForCountry","description":"A list of currencies that the project's country can use","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"averageSentiment","description":"The average sentiment of the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerAddressLockoutDate","description":"The lockout date for address collection","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerAddressLockoutDatePassed","description":"Whether or not the backer address lockout date has passed.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReport","description":"Returns the backer report in JSON format","args":[{"name":"rewards","description":"Filter by reward IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"addons","description":"Filter by add-on IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterAddons","description":"SQL operator to use for filtering add-ons","type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"items","description":"Filter by item IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterItems","description":"AND the item IDs instead of ORing them","type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"skus","description":"Filter by SKU IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterSkus","description":"AND the item variant IDs instead of ORing them","type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"locations","description":"Filter by backer selected shipping location","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"amountMin","description":"Filter by reward cost minimum","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"amountMax","description":"Filter by reward cost maximum","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pledgedAtMin","description":"Filter by date pledged minimum","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pledgedAtMax","description":"Filter by date pledged maximum","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pmCompletedAtMin","description":"Filter by pledge manager completed at minimum","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pmCompletedAtMax","description":"Filter by pledge manager completed at maximum","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"fulfillmentStatus","description":"Filter by fulfillment status","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"surveyAnswered","description":"Filter by wether the backer has answered the survey","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"sortBy","description":"Sort the backer report by this field","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ascOrDesc","description":"Sort the backer report in ascending or descending order","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"page","description":"Page number for pagination","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"perPage","description":"Number of items per page","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"term","description":"Backer report search term","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"status","description":"Filter by backing status","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pledgeRedemptionState","description":"Filter by pledge redemption state","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"actionsTaken","description":"Filter by actions taken","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pledgeOverTime","description":"Filter by pledge type","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"backerEntryPoint","description":"Filter by backer entry point","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerSurvey","description":"Backer survey for the project","args":[],"type":{"kind":"OBJECT","name":"BackerSurvey","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerSurveyIntro","description":"An optional introduction to the backer survey.","args":[{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backers","description":"Backers of the project","args":[{"name":"limit","description":"Limit the number of backers returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"followed","description":"Limit to backers that the current user is following","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"backersCount","description":"Total backers for the project","args":[{"name":"withNewPmBackers","description":"Whether or not to considere new pm backers in the final count.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backersRemainingForPledgeRedemption","description":"The number of original backers who have yet to go through the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"The current user's backing of this project. Does not include inactive backings.","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingDetailsPageRoute","description":"URL/path for the backing details page","args":[{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Route","ofType":null}},"defaultValue":null},{"name":"tab","description":null,"type":{"kind":"ENUM","name":"BackingDetailsPageTab","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canComment","description":"True if the current user can comment (considers restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canCommentSansRestrictions","description":"True if the current user can comment (does not consider restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canEditRewardShippingPreference","description":"Can user edit shipping preference of a reward?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canNewUserEnterPm","description":"Can new user enter pledge manager checkout?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canOptInToPledgeManager","description":"Whether or not the project can be opted into pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canPrelaunchEarly","description":"Whether the project is eligible for early prelaunch","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserEditProjectStatus","description":"Whether user is allowed to edit project status","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserRequestUpdate","description":"Whether a user can request an update about this project from the Creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserViewProjectStatusFeedback","description":"Whether user is a backer of the project or not","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canceledAt","description":"If the project is in a canceled state, when was it canceled?","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"category","description":"The project's category.","args":[],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"changeMethodProjectPledgePath","description":"The path to change the current user's payment method for their pledge to this project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"chargeShippingInPledgeManager","description":"Will this project be using a pledge manager to charge shipping?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cleanupErroredPledgesDeadline","description":"The date after which errored pledges should be dropped","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"collaboratorPermissions","description":"Permissions that can be assigned to a collaborator on a project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorPermission","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"collaborators","description":"A project's collaborators.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"withCreator","description":"include creator in list of collaborators","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withInvited","description":"include both active and invited users in list of collaborators","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectCollaboratorConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":"List of comments on the commentable","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentsCount","description":"Comment count - defaults to root level comments only","args":[{"name":"withReplies","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"completedMilestones","description":"Representation of the Project Milestones","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectMilestone","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedPostLaunchWatchesCount","description":"Number of post-launch watchers who went on to back the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedPreLaunchWatchesCount","description":"Number of pre-launch watchers who went on to back the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedWatchesCount","description":"Number of watchers who went on to back the project.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"country","description":"The project's country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Country","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"countryCode","description":"The project's country.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"isDeprecated":true,"deprecationReason":"Moved to country which returns CountryType."},{"name":"createdAt","description":"When the project was created","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The project's creator.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creatorSharedDrafts","description":"The draft projects that have a share token for the project creator","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectSharedDraft","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorToolsPaths","description":"The paths for the creator tools pages","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatorToolsPaths","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"curatedCollection","description":"The Curated Collection that a project is in e.g. Make 100","args":[],"type":{"kind":"OBJECT","name":"CuratedCollection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":"The project's currency code.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currentAmountPledgedUsd","description":"The current amount pledged in USD","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentBackersCount","description":"Total current backers for the project","args":[{"name":"withNewPmBackers","description":"Whether or not to considere new pm backers in the final count.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deadlineAt","description":"When is the project scheduled to end?","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"defaultFundingCurrencyForCountry","description":"The default currency for the project's country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultPledge","description":"The default no reward pledge amount based on the project's currency.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"A short description of the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"destroyProjectPledgePath","description":"The path to destroy the current user's pledge for this project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"duration","description":"Funding duration in days","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editProjectPledgePath","description":"The path to edit the current user's pledge for this project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environmentalCommitments","description":"The environmental commitments of the project.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentalCommitment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"erroredOrdersCount","description":"The number of orders that errored during sync","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"faqs","description":"List of FAQs of a project","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectFaqConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"finalCollectionDate","description":"The date at which pledge collections will end","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"flagging","description":"A report by the current user for the project.","args":[],"type":{"kind":"OBJECT","name":"Flagging","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"friends","description":"A project's friendly backers.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectBackerFriendsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentModalDismissedAt","description":"When the fulfillment modal was dismissed","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentStatus","description":"Status of fulfillment","args":[],"type":{"kind":"ENUM","name":"FulfillmentStatus","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentStatusUpdatedAt","description":"When the fulfillment status was updated","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fundingRatio","description":"The ratio of funding progress.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Ratio","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fxRate","description":"Exchange rate for the current user's currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"generatedSlug","description":"The project's title converted to a slug.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"goal","description":"The minimum amount to raise for the project to be successful.","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"googleAnalyticsApiSecret","description":"API secret for Google Analytics event","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"googleAnalyticsTrackingId","description":"The Google Analytics tracking ID.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasAnsweredEligibilityQuestionnaire","description":"Whether the project creator has answered the eligibility questionnaire","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasLaunchedPledgeManager","description":"Whether the project has launched its pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPledgeOverTimeConfig","description":"Does this project have any pledge over time config record?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPostCampaignConfig","description":"Does this project have any post-campaign config?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasRewardImages","description":"Whether or not the project has reward images","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasShopifyShop","description":"Whether the project has successfully linked a Shopify shop","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasSlug","description":"Whether a project has its slug set.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasSuccessfulFundsCapturePayout","description":"If the payout for the funds capture has happened","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasSupportingMaterials","description":"Whether or not the project has supporting materials (Prototype Gallery)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasUnresolvedBackings","description":"Whether the project still has backings in \"pledged\" or \"errored\" state","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasUpgradeableRewards","description":"Whether or not the project has upgradeable rewards configured","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"image","description":"The project's primary image.","args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"A read-only representation of the image (complete with fallback default image)","args":[{"name":"blur","description":"Whether or not to blur the image.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"width","description":"The width of the image in pixels.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"importIntoEuRequiredCountriesForVatIds","description":"The countries that the project ships to in the EU","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"importsToEu","description":"Whether the project has stock locations outside the EU that ship to the EU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"importsToUk","description":"Whether the project has stock locations outside the UK that ship to the UK","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isApproved","description":"Is the project's submission state accepted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDisliked","description":"Has the current user disliked this project?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isForwardFundTagged","description":"Is the project tagged with one of the Forward Fund tags?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isInPostCampaignPledgingPhase","description":"Is this project currently accepting post-campaign pledges?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isLaunched","description":"The project has launched","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isLiked","description":"Has the current user liked this project?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPledgeOverTimeAllowed","description":"Whether a project is enrolled in plot","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isProjectOfTheDay","description":"Whether or not this is a Project of the Day.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isProjectWeLove","description":"Whether or not this is a Kickstarter-featured project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSharingProjectBudget","description":"Whether the project is sharing it's budgeting information with the everyone","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isShopifyShopSyncing","description":"Whether the Shopify shop is actively syncing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isUserCreator","description":"Whether current user is creator of current project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isWatchable","description":"Whether a not the project can be watched.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isWatched","description":"Is the current user watching this project?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemVariants","description":"Item variants associated with the project","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SkuCount","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"Items available through the project's backer rewards.","args":[{"name":"excludeItemsWithoutRewards","description":"Whether to exclude the items that are not attached to any reward or addon.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUploadedVideo","description":"A project's last uploaded video, if it's processing, or the current project video.","args":[],"type":{"kind":"OBJECT","name":"Video","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"lastWave","description":"The last checkout_wave, if there is one","args":[],"type":{"kind":"OBJECT","name":"CheckoutWave","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgeBackersCount","description":"Total backers for the project during late pledge phase","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgePlannedEndDate","description":"The datetime at which the last available time-limited reward will end, if all the rewards are time-limited","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgePledged","description":"How much money is pledged to the project during late pledge phase.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgesEndedAt","description":"The datetime at which post-campaign pledging will end. This can be set to a future date if we have automatically scheduled an end to late pledging.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latestSentimentStats","description":"The tallies from the sentiment from each backers latest feedback","args":[],"type":{"kind":"OBJECT","name":"ProjectSentimentStats","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"launchedAt","description":"When the project launched","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"Where the project is based.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locationVatNumbers","description":"Possible VAT numbers the project could have, by location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"LocationVatNumber","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"mappingsCreatedAt","description":"When the sku mappings were finalzied","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"maxPledge","description":"The max pledge amount for a single reward tier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"meetsPledgeManagerUsageCriteria","description":"Whether the project meets the criteria to use pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"metKycRequirements","description":"Whether or not the project has met KYC requirement","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"metaCapiAccessToken","description":"Access token for Meta Conversion API","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"metaPixelId","description":"The unique identifier for the project's Meta Pixel ID","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"milestoneCategories","description":"List of milestones available to project, empty array if project has no possible milestones","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MilestoneCategory","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"minPledge","description":"The min pledge amount for a single reward tier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mostRecentShopifySyncAt","description":"When the most recent sync with Shopify occurred","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The project's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"newBackersCount","description":"The number of new backers who have gone through the pledge manager","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"newBackersEnabled","description":"Whether the project has been enabled to allow new backers into pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"noVatCollection","description":"Whether the project's shipping rules designate no vat collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onBehalfOf","description":"A Stripe account identifier","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order for the logged in user associated with the project","args":[],"type":{"kind":"OBJECT","name":"Order","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentPlan","description":"Build a payment plan given a project id and amount","args":[{"name":"amount","description":"Amount in project funding currency, dollars-and-cents equivalent format","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PaymentPlan","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":"Payment source on creator's account used to issue refunds.","args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"percentFunded","description":"What percent the project has towards meeting its funding goal.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pid","description":"The project's pid.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManager","description":"The project's pledge manager","args":[],"type":{"kind":"OBJECT","name":"PledgeManager","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeCollectionPlanChargeExplanation","description":"Backer-facing summary of when the incremental charges will occur","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeCollectionPlanChargedAsNPayments","description":"Quick summary of the amount of increments pledges will be spread over","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeCollectionPlanShortPitch","description":"Backer-facing short summary of this project's number of payment increments to split over","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeEnabled","description":"Does this project have Pledge Over Time enabled?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeMinimum","description":"The minimum pledge amount to be eligible for PLOT, localized to the project currency","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeMinimumExplanation","description":"The minimum pledge amount to be eligible for PLOT, localized to the project currency and backer language","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeWarning","description":"Warns the backer that their pledge is no longer eligible for Pledge Over Time","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeOverTimeWarningExplanation","description":"Warns the backer that their pledge is no longer eligible for Pledge Over Time with detail","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledged","description":"How much money is pledged to the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgesRedeemedPercentage","description":"The percentage of original pledges that have been redeemed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postCampaignPledgingEnabled","description":"Is this project configured for post-campaign pledges?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postLaunchWatchesCount","description":"Number of watchers from post-launch","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"posts","description":"Project updates.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Scoped to draft or published posts","type":{"kind":"ENUM","name":"PostState","ofType":null},"defaultValue":null},{"name":"postType","description":"Scoped to post type: creator_interview or freeform_post","type":{"kind":"ENUM","name":"PostFormat","ofType":null},"defaultValue":null},{"name":"forActivePrompt","description":"Scoped to a creator’s post associated with the active prompt","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PostConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"preLaunchWatchesCount","description":"Number of watchers from pre-launch","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchActivated","description":"Whether a project has activated prelaunch (can return true if project has been launched)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchIsActive","description":"Whether a project is currently in active prelaunch (returns false if project has been launched)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchStory","description":"The rich text story for a prelaunch campaign.","args":[{"name":"first","description":"The number of visible characters to fetch (does not include HTML markup).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchStoryForEditor","description":"The rich text story for a prelaunch campaign in raw form.","args":[{"name":"first","description":"The number of visible characters to fetch (does not include HTML markup).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"prelaunchStoryRichText","description":"Return an itemized version of the prelaunch story. This feature is in BETA: types can change anytime!","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RichTextComponent","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"previewUrl","description":"The project's preview url.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"profile","description":"The project's profile.","args":[],"type":{"kind":"OBJECT","name":"ProjectProfile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectNotice","description":"The text of the currently applied project notice, empty if there is no notice","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectOfTheDayAt","description":"When this project was Project of the Day.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectRelayId","description":"The root project id under which the comment is nested","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectShortLink","description":"The project's bitly short URL","args":[{"name":"ref_tag","description":"The ref tag type for the bitly hash","type":{"kind":"ENUM","name":"BitlyHashes","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectStatus","description":"Project's now and next status","args":[],"type":{"kind":"OBJECT","name":"ProjectStatus","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectUsdExchangeRate","description":"Exchange rate to US Dollars (USD) for the project's currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publicState","description":"The project's public state.","args":[],"type":{"kind":"ENUM","name":"PublicProjectState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"Survey questions asked of all the project's backers","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"recommendations","description":null,"args":[],"type":{"kind":"OBJECT","name":"Recommendations","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"redemptionPageUrl","description":"URL for redeeming the backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rewards","description":"Project rewards.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"crowdfundingAndPledgeManagement","description":"Retrieves both, pledge redemption and crowdfunding rewards","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"pledgeManagementOnly","description":"Filters available rewards by pledge redemption only","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withActiveBackings","description":"Filters by active backings","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withNewPmBackers","description":"Retrieves rewards considering if the project is currently in PM","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"sort","description":"Sort the rewards by availability and cost","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectRewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"riskQuestions","description":"Risk questions for the project plan.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RiskQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"riskStrategies","description":"The risk mitigation strategies outlined for this project.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RiskStrategy","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"risks","description":"Potential hurdles to project completion.","args":[{"name":"first","description":"The number of characters to fetch.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rootShippingZoneExists","description":"whether project has shipping zone for 'rest of the world' location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sendMetaCapiEvents","description":"Is this project configured so that events should be triggered for Meta's Conversions API?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sendThirdPartyEvents","description":"Is this project configured for third party analytics events?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shipWithinEuRequiredCountriesForVatIds","description":"The EU countries that require a VAT ID for the project to collect VAT","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippableCountries","description":"Shipping destination countries on all rewards on the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingConfig","description":"Details regarding how the project is set up to charge shipping","args":[],"type":{"kind":"OBJECT","name":"ShippingConfig","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingCostsCompleted","description":"Whether or not the project has completed either flat-rate or weight-based shipping costs and setup","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingZones","description":"Shipping zones configured for the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ShippingZone","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shipsWithinEu","description":"Whether the project has stock locations in the EU that ship to the EU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shipsWithinUk","description":"Whether the project has stock locations in the UK that ship to the UK","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shopifySkus","description":"The project's pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ShopifyVariant","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"showCtaToLiveProjects","description":"Whether or not to show ended to live cta","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"showSignalOfFulfillmentModal","description":"Whether or not to show the signal of fulfillment modal","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The project's unique URL identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"spreadsheet","description":"The Google Sheet associated to this project","args":[],"type":{"kind":"OBJECT","name":"Spreadsheet","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The project's current state in the state machine.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ProjectState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stateChangedAt","description":"The last time a project's state changed, time since epoch","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"statsInterval","description":"The initial project stats polling duration in ms","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stockLocations","description":"Locations from which the project fulfills","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StockLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"story","description":"The story behind the project, parsed for presentation.","args":[{"name":"first","description":"The number of visible characters to fetch (does not include HTML markup).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"HTML","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"storyForEditor","description":"The project description without conversion for usage by Rich Text Editors.","args":[{"name":"first","description":"The number of visible characters to fetch (does not include HTML markup).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"HTML","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"storyRichText","description":"Return an itemized version of the story. This feature is in BETA: types can change anytime!","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RichTextComponent","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"storyRteVersion","description":"The Rich Text Editor version that was used to generate the project story","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submission","description":"A project submission.","args":[],"type":{"kind":"OBJECT","name":"Submission","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"syncedOrdersCount","description":"The number of orders synced with Shopify","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"Tags project has been tagged with","args":[{"name":"scope","description":"Scoped to an optionally provided scope","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"TagScope","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Tag","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"targetLaunchDate","description":"The project's target launch date","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"targetLaunchDateUpdatedAt","description":"The time that the project's target launch date was updated","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tariffSurchargesEnabled","description":"Whether tariff surcharges are enabled for the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxCategories","description":"Tax categories configured for the project excluding the non-taxable category","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TaxCategory","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"taxInformationCompletionStatus","description":"Whether or not the project has configured a deposit account address and vat id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PrereqCompletionStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"timeline","description":"The timeline of project events, including updates and milestones.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"withPinnedFirst","description":"Makes any pinned post the first item in the timeline","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProjectTimelineConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unassignedShippableLocations","description":"Locations (including countries and root) where shipping rates or shipping zones have been configured but there is no ship-from location assigned","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A URL to the project's page.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usdExchangeRate","description":"Exchange rate to US Dollars (USD), null for draft projects.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"usedLegacySurveys","description":"Whether or not the project has used legacy surveys.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userFeedback","description":"The feedback the current user has left for the project","args":[{"name":"questionName","description":"Which question to fetch","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectFeedback","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userGroups","description":"User groups associated with the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserGroup","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"userWasRemoved","description":"Was the current user removed from this project?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"verifiedCreatorName","description":"Name of user on verified account","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"verifiedIdentity","description":"Name of user on verified account","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":true,"deprecationReason":"Use verified_creator_name instead"},{"name":"video","description":"A project video.","args":[],"type":{"kind":"OBJECT","name":"Video","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"watchesCount","description":"Number of watchers a project has.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"Commentable","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Commentable","description":"Something that can be commented on","fields":[{"name":"canComment","description":"True if the current user can comment (considers restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canCommentSansRestrictions","description":"True if the current user can comment (does not consider restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserRequestUpdate","description":"Whether a user can request an update about this project from the Creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":"List of comments on the commentable","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentsCount","description":"Comment count - defaults to root level comments only","args":[{"name":"withReplies","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectRelayId","description":"The root project id under which the comment is nested","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"CreatorInterview","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null}]},{"kind":"OBJECT","name":"CommentConnection","description":"The connection type for Comment.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CommentEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Comment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CommentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Comment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Comment","description":"A comment","fields":[{"name":"author","description":"The author of the comment","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"authorBacking","description":"The author's backing information","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"authorBadges","description":"The badges for the comment author","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"CommentBadge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorCanceledPledge","description":"Whether the author has canceled their pledge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The body of the comment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canDelete","description":"Whether the current user can delete the comment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canPin","description":"Whether current user can pin a comment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canReport","description":"Whether current user can report a comment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When was this comment posted","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleted","description":"Whether the comment is deleted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletedAuthor","description":"Whether the comment author is a deleted user and not the creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasFlaggings","description":"Whether a comment has any flaggings","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parentId","description":"The ID of the parent comment","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pinnedAt","description":"When the comment was pinned","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"removedPerGuidelines","description":"Whether the comment author has been removed by kickstarter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"replies","description":"The replies on a comment","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spam","description":"Is this comment spam","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sustained","description":"Whether this comment has been reviewed and sustained by an admin","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CommentBadge","description":"All available comment author badges","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"creator","description":"Indicates the author is a creator","isDeprecated":false,"deprecationReason":null},{"name":"collaborator","description":"Indicates the author is a collaborator","isDeprecated":false,"deprecationReason":null},{"name":"superbacker","description":"Indicates the author is a superbacker","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Backing","description":"A backing","fields":[{"name":"addOns","description":"The add-ons that the backer selected","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardTotalCountConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addOnsWithQuantity","description":"The add-ons that the backer selected","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackingAddon","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"adjustmentSummary","description":"A summary of refunds and removal issued by the creator","args":[],"type":{"kind":"OBJECT","name":"AdjustmentSummary","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allowedCountries","description":"Countries that the backing's reward can be shipped to. If null, the backing's reward can be shipped to any country.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"amount","description":"Total amount pledged by the backer to the project, including shipping.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountDue","description":"The amount due on the backing.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountLessShipping","description":"The amount pledged by the backer, less shipping.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backer","description":"The backer","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerCompleted","description":"If the backer_completed_at is set or not","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerNote","description":"Backer's note regarding their backing","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerSentiment","description":"The sentiment feedback the backer has submitted for the backing, if any","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingDetailsPageRoute","description":"URL/path for the backing details page","args":[{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Route","ofType":null}},"defaultValue":null},{"name":"tab","description":null,"type":{"kind":"ENUM","name":"BackingDetailsPageTab","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backingRewards","description":"The backing rewards on a backing","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackingAddon","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"backingUrl","description":"A link to the backing information","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"bonusAmount","description":"Extra amount the backer pledged on top of the minimum.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cancelable","description":"If the backing can be cancelled","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cart","description":"Contains the backer's item preferences and responses to survey questions","args":[],"type":{"kind":"OBJECT","name":"Cart","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"If `requires_action` is true, `client_secret` should be used to initiate additional client-side authentication steps","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completedAt","description":"When the backing was completed","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completedRefundAttempts","description":"Refund attempts performed by the creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Refund","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"conversation","description":"Message thread between backer and creator","args":[],"type":{"kind":"OBJECT","name":"Conversation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deliveryAddress","description":"The delivery address associated with the backing","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"digitalAccessResources","description":"Digital Access Resources provided by a creator to fulfill digital rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DigitalAccessResource","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"errorReason","description":"The reason for an errored backing","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentStatus","description":"The fulfillment status of a backing.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FulfillmentStatusDisplayOptions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasFlaggings","description":"Whether or not the backing has any open flaggings","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"incremental","description":"If the backing was incremental, ie pledged over time","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isLatePledge","description":"Whether or not the backing is a late pledge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPostCampaign","description":"Is this backing a late pledge or did it occur during the crowdfunding campaign?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"latestSetupIntent","description":"If present, the most recent setup_intent data from Stripe.","args":[],"type":{"kind":"OBJECT","name":"SetupIntent","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"legacySurveyResponseMissing","description":"Whether or not the backing is missing a legacy survey response","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The backing location.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order associated with the backing","args":[],"type":{"kind":"OBJECT","name":"Order","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"originalOrUpgradedReward","description":"The original or upgraded backer reward","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentIncrements","description":"Scheduled incremental payments","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PaymentIncrement","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":"Payment source used on a backing.","args":[],"type":{"kind":"UNION","name":"PaymentSource","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"payoutStarted","description":"If the payout for the backing has happened","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgedOn","description":"When the backing was created","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"processing","description":"Is this pledge processing?","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"redemptionPageUrl","description":"URL for redeeming the backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refunded","description":"If the backing was refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotalOnBackerReward","description":"How much the backer paid on their base reward, after refunds","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"removalRequestIsNonissue","description":"Whether or not a removal request task is marked as nonissue","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"requiresAction","description":"Whether this checkout requires additional client-side authentication steps (e.g. 3DS2) to complete the on-session pledge flow","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The reward the backer is expecting","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardsAmount","description":"Amount pledged for all rewards, the sum off all minimums, excluding shipping","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rosiePledgeAdminTree","description":"Admin tree for the associated Rosie Pledge","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sequence","description":"Sequence of the backing","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingAmount","description":"Shipping amount for the rewards chosen by the backer for their location","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingSummary","description":"A brief description of shipping selections for backing","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"The status of a backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BackingState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"successfulRefunds","description":"Refunds","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"surveyResponses","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SurveyResponse","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"usableBackerAddresses","description":"All of the backer's saved addresses that match the backing country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"Route","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"path","description":"Just the path (does not include the domain)","isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The entire URL (include the domain)","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BackingDetailsPageTab","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"details","description":"Details","isDeprecated":false,"deprecationReason":null},{"name":"survey_responses","description":"Survey responses","isDeprecated":false,"deprecationReason":null},{"name":"messages","description":"Messages","isDeprecated":false,"deprecationReason":null},{"name":"pledge_redemption","description":"Pledge redemption","isDeprecated":false,"deprecationReason":null},{"name":"digital_rewards","description":"Digital rewards","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Money","description":"A monetary amount and its corresponding currency.","fields":[{"name":"amount","description":"Floating-point numeric value of monetary amount represented as a string","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":"Currency of the monetary amount","args":[],"type":{"kind":"ENUM","name":"CurrencyCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"displaySymbol","description":"Symbol of the currency in which the monetary amount appears","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"symbol","description":"Symbol of the currency in which the monetary amount appears","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CurrencyCode","description":"A list of Iso4217–supported currencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AUD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CAD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CHF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DKK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EUR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GBP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HKD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JPY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MXN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NOK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NZD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PLN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SEK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SGD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USD","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Address","description":"A user's shipping address","fields":[{"name":"addressLine1","description":"Address line 1 (Street address/PO Box/Company name)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"addressLine2","description":"Address line 2 (Apartment/Suite/Unit/Building)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"city","description":"City","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"countryCode","description":"2-letter country code","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"countryName","description":"The name of the country associated with the country code","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nonUpdatableSurveyResponsesCount","description":"The number of non updatable survey responses to this address","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"phoneNumber","description":"Recipient's phone number","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postalCode","description":"ZIP or postal code","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"primary","description":"Is this the user's primary address?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectsWithUpdatableSurveyResponses","description":"The title of projects with updatable survey responses","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"projectsWithoutUpdatableSurveyResponses","description":"The title of projects with non updatable survey responses","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"recipientName","description":"Address recipient name","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"referenceName","description":"Address reference or nickname","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"region","description":"State/County/Province/Region.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatableSurveyResponsesCount","description":"The number of current updatable survey responses to this address","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"The user associated with the shipping address","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CountryCode","description":"Two letter ISO code for a country.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ES","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ET","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ID","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"IT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"JP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"KZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ML","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MQ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"QA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SB","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ST","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TJ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TW","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UZ","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VU","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"WF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"WS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"XK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"YE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"YT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ZA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ZM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ZW","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Cart","description":"A cart associated with a surveyable (backing or order)","fields":[{"name":"addOnQuestions","description":"The add-on questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CartQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"autoFinalized","description":"Whether the cart required backer action or was finalized on creation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backingRewardAnswers","description":"Answers associated with a cart's backing rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"baseRewardAnswers","description":"The answers to reward-level questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"baseRewardQuestions","description":"The base reward questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CartQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"finalizedAt","description":"When the cart was finalized (i.e., when the backer submitted responses)","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNonOptionalQuestions","description":"Whether the cart has non-optional questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inProgress","description":"Whether the backer has begun answering their survey","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lineItems","description":"The associated line items","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"LineItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"projectAnswers","description":"The answers to project-level questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"projectQuestions","description":"The project-level questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CartQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shouldCollectAddress","description":"Whether or not this cart needs an address to be finalized","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LineItem","description":"A line item in a cart","fields":[{"name":"answers","description":"The answers associated with the line item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item associated with the line item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemVariant","description":"The item variant the backer selected (unless master variant)","args":[],"type":{"kind":"OBJECT","name":"ItemVariant","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optionValues","description":"The option values that comprise the selected item variant, if present.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"The questions associated with the line item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CartQuestion","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"requiresSelection","description":"True if the backer needs to select a variant or answer an item question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ItemVariant","description":"A unique item variant aka SKU","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name (e.g. 'Hoodie Small Blue Checkered')","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optionValues","description":"The option values associated with this variant","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"sku","description":"The sku value (e.g. 'Hoodie-Small-Blue-Checkered')","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OptionValue","description":"An option value (e.g. \"red\") associated with an option type (e.g. \"color\")","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optionType","description":"The option type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The option value","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OptionType","description":"An option type associated with an item (e.g. \"size\" or \"color\")","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item associated with the option type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The option type name (e.g. \"size\" or \"color\")","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prompt","description":"The option type prompt (e.g. \"What size do you want?\")","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"values","description":"The associated option values","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardItem","description":"A reward item.","fields":[{"name":"addOns","description":"The add-ons that the item is included in.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"addOnsCount","description":"The numer of add-ons that the item is included in.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasBackers","description":"Whether backers have backed rewards this item belongs to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"image","description":"The item image","args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"itemVariants","description":"Variants of this item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemVariant","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"itemWeight","description":"Item weight related configuration","args":[],"type":{"kind":"OBJECT","name":"ItemWeight","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"maxInventoryCount","description":"The max amount of this item that may have to be produced based on reward limits.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"An item name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optionTypes","description":"Option types tied to this item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OptionType","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"Questions tied to this item that will be posed to backers","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"rewards","description":"The rewards that the item is included in.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"rewardsCount","description":"The number of rewards that the item is included in.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeRules","description":"Surcharge rules configured for this item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SurchargeRule","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"taxConfig","description":"Tax related configuration","args":[],"type":{"kind":"OBJECT","name":"ItemTaxConfig","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxConfigCompletionStatus","description":"Whether the item is completely configured for tax purposes","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PrereqCompletionStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Reward","description":"A project reward.","fields":[{"name":"allowedAddons","description":"Add-ons which can be combined with this reward.\nUses creator preferences and shipping rules to determine allow-ability.\nInclusion in this list does not necessarily indicate that the add-on is available for backing.\n","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"allowedRewards","description":"Base rewards which can be combined with this addon.\nUses creator preferences and shipping rules to determine allow-ability.\nInclusion in this list does not necessarily indicate that the reward is available for backing.\n","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amount","description":"Amount for claiming this reward.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"audienceData","description":"Data related to who can view/access this reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResourceAudience","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"available","description":"Whether or not the reward is available for new pledges","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerImages","description":"Profile images for backers of this reward","args":[{"name":"limit","description":"Limit the number of images returned","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Photo","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReportUrl","description":"URL for the Backer Report filtered to only this reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backersCount","description":"count of backers for this reward","args":[{"name":"excludeInactive","description":"Filters out backings in an inactive state","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backersCountWithNewPmBackers","description":"count of backers for this reward after launching pledge manager","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"convertedAmount","description":"Amount for claiming this reward, in the current user's chosen currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"A reward description.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"displayName","description":"A reward's title plus the amount, or a default title (the reward amount) if it doesn't have a title.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"displayableAddons","description":"The same as allowed_addons but with an additional scope that filters out addons with a start date that falls in the future\n","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"endCondition","description":"For post-campaign enabled rewards, the conditions under which to stop offering the reward.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"endsAt","description":"When the reward is scheduled to end in seconds","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedDeliveryOn","description":"Estimated delivery day.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"expandedItems","description":"Returns reward items as an expanded list","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"featured","description":"Whether or not the reward is featured","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasLatePledgeBackers","description":"Whether any one has pledged for this reward during the late pledges period","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"image","description":"The reward image.","args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"inPostCampaignPledgingPhase","description":"Is this reward currently accepting post-campaign pledges?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isMaxPledge","description":"Does reward amount meet or exceed maximum pledge for the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"Items in the reward.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardItemsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latePledgeAmount","description":"Amount for claiming this reward after the campaign.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"limit","description":"A reward limit.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"limitPerBacker","description":"Per backer reward limit.","args":[{"name":"withFallback","description":"Returns system wide limit per backer if not set by creator.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"localReceiptLocation","description":"Where the reward can be locally received if local receipt is selected as the shipping preference","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"maxPledgedInSingleBacking","description":"The maximum amount of this add-on in a single pledge selected by any pledged backer.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"A reward title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderableConfig","description":"Cross-Sells configuration for this Reward","args":[],"type":{"kind":"OBJECT","name":"OrderableConfig","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderableConfigCompletion","description":"What state is orderable configuration in for this reward (complete, incomplete, or not_started)?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PrereqCompletionStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeAmount","description":"Amount for claiming this reward during the campaign.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManagementOnly","description":"Should this reward only be shown in Pledgement Management?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postCampaignPledgingEnabled","description":"Is this reward available for post-campaign pledges?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"Survey questions asked of all backers of this reward.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingQuantity","description":"Remaining reward quantity.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardType","description":"The type of the reward - base or addon.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RewardType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingEnabled","description":"Whether or not the reward has shipping enabled","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingPreference","description":"Shipping preference for this reward","args":[],"type":{"kind":"ENUM","name":"ShippingPreference","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRates","description":"Shipping rates defined by the creator for this reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRate","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRatesCompletion","description":"Whether the shipping rates are filled out and not missing fields","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PrereqCompletionStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRatesExpanded","description":"Shipping rates for all shippable countries, including those that are children of superregions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRate","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRules","description":"Shipping rules defined by the creator for this reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRule","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingRulesExpanded","description":"Shipping rules for all shippable countries.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"forLocation","description":"Returns expanded shipping rules given location","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardShippingRulesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingSummary","description":"A shipping summary","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingSummarySentence","description":"Reward shipping summary as a sentence","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"simpleShippingRulesExpanded","description":"Simple shipping rules expanded as a faster alternative to shippingRulesExpanded since connection type is slow","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SimpleShippingRule","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"soldOut","description":"Whether or not the reward is out of inventory","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCondition","description":"For post-campaign enabled rewards, the conditions under which to start offering the reward.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"startsAfterProjectDeadline","description":"Is this reward only available after the project deadline?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startsAt","description":"When the reward is scheduled to start","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"vatInclusivePricing","description":"Whether the creator has included VAT in reward pricing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Photo","description":"A photo","fields":[{"name":"altText","description":"Alt text on the image","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fingerprint","description":"The fingerprint of the photo","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Upload status of the photo","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AssetState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"URL of the photo","args":[{"name":"blur","description":"Whether or not to blur the image.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"width","description":"The width of the image in pixels.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AssetState","description":"All available asset states","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"MISSING","description":"A missing asset","isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":"Incomplete status of an asset","isDeprecated":false,"deprecationReason":null},{"name":"DELETED","description":"The asset file has been deleted","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":"Processing the asset file successfully completed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RewardType","description":"Describes the purpose of the reward","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"base","description":"A reward that cannot be combined with others","isDeprecated":false,"deprecationReason":null},{"name":"addon","description":"A reward that can only be added to a backing for another reward","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RewardItemsConnection","description":"The connection type for RewardItem.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardItemEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardItemEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"RewardItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"The position that an item has been ordered on a reward","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"quantity","description":"The quantity of an item associated with a reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardConnection","description":"The connection type for Reward.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ShippingPreference","description":"A preference for shipping a reward","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"none","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"restricted","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"unrestricted","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"local","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ShippingRule","description":"A project reward's shipping rule.","fields":[{"name":"backersCount","description":"Number of backers for the Shipping Rule","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cost","description":"The shipping cost for this location.","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedMax","description":"The estimated maximum shipping cost","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedMin","description":"The estimated minimum shipping cost","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasBackers","description":"Shipping rule has backers","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The shipping location to which the rule pertains.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SimpleShippingRule","description":"Simple shipping rule for a reward","fields":[{"name":"cost","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"country","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedMax","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedMin","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locationName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RewardShippingRulesConnection","description":"The connection type for ShippingRule.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRuleEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ShippingRule","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShippingRuleEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"ShippingRule","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShippingRate","description":"A shipping rate for a particular shippable and location","fields":[{"name":"cost","description":"The shipping cost for this location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The shipping location for which this shipping rate is defined.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippable","description":"The item or reward for which this shipping rate is defined.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Shippable","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Shippable","description":"Types that can have shipping rates","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Reward","ofType":null},{"kind":"OBJECT","name":"RewardItem","ofType":null}]},{"kind":"ENUM","name":"PrereqCompletionStatus","description":"Completion status of objects necessary for pledge redemption","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"not_started","description":"Prereq has not been started","isDeprecated":false,"deprecationReason":null},{"name":"incomplete","description":"Prereq has been started but is not complete","isDeprecated":false,"deprecationReason":null},{"name":"complete","description":"Prereq is complete","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Question","description":"A question associated with one of the following: Project, RewardItem, Reward","fields":[{"name":"choiceSelectionLimit","description":"The question choice selection limit","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"choices","description":"The question choices","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optional","description":"Whether the question is optional","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"Position of a question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prompt","description":"The question prompt","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"questionable","description":"The object associated with the question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Questionable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The question type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Questionable","description":"An object that can be associated with a question","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"RewardItem","ofType":null},{"kind":"OBJECT","name":"Reward","ofType":null}]},{"kind":"ENUM","name":"QuestionType","description":"Question types","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"text","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"choices","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"OrderableConfig","description":"Configuration for an Orderable for Cross-Sells.","fields":[{"name":"available","description":"Is this reward currently available to add to an Order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabled","description":"Is this orderable available for cross-sells in Pledge Redemption.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"limit","description":"The total number of an orderable available to be purchased","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"limitPerOrder","description":"The number of an orderable a backer is allowed to add to their order","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"price","description":"The price charged for an orderable","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"priceConvertedToCurrencyFormatted","description":"The price formatted for display in the user's chosen currency","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"priceFormatted","description":"The price formatted for display","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingQuantity","description":"How many of this reward are still available to claim during Pledge Redemption","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResourceAudience","description":"Data related to the audience for a particular resource","fields":[{"name":"audience","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AudienceEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"secret","description":"True if the resource has access restricted by an access rule","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shareUrl","description":"Url for sharing reward (absent if accessible to all)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"token","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AudienceEnum","description":"The audience for the resource","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"everyone","description":"everyone","isDeprecated":false,"deprecationReason":null},{"name":"link","description":"link","isDeprecated":false,"deprecationReason":null},{"name":"restricted","description":"restricted","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ItemTaxConfig","description":"Tax configuration data related to an item","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"marketValue","description":"Value of item pre any bundling discounts","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxCategory","description":null,"args":[],"type":{"kind":"OBJECT","name":"TaxCategory","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TaxCategory","description":"A project scoped tax category","fields":[{"name":"associatedWithMultipleItems","description":"Whether or not the category is associated with multiple items","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"codeDescription","description":"Describes what products or services the tax code covers","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ksrManaged","description":"Whether or not this is a default category managed by Kickstarter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nontaxable","description":"Whether or not the category is nontaxable","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxCode","description":"Third party tax code","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userLabel","description":"The user assigned label for the vendor tax code","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ItemWeight","description":"Item's weight configuration data","fields":[{"name":"exclude","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"weight","description":"item weight","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SurchargeRule","description":"A surcharge for a particular item and location combo","fields":[{"name":"cost","description":"The surcharge cost for this location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"costFormatted","description":"The formatted surcharge cost for this location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Answer","description":"An answer associated with one of the following: LineItem, Cart, BackingAddon, OrderOrderable","fields":[{"name":"answerable","description":"The object associated with the answer (e.g. Item, Project, Reward)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Answerable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The associated question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"response","description":"The response to the question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Answerable","description":"An object that can be associated with an answer","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"LineItem","ofType":null},{"kind":"OBJECT","name":"Cart","ofType":null},{"kind":"OBJECT","name":"BackingAddon","ofType":null},{"kind":"OBJECT","name":"OrderOrderable","ofType":null}]},{"kind":"OBJECT","name":"BackingAddon","description":"An add-on reward included in a backing.","fields":[{"name":"amount","description":"Amount the add-on costs.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReward","description":"The addon reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The add-on description.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"Items in the add-on.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItemsConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The add-on name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeAmount","description":"Amount for claiming this add-on during the campaign.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"quantity","description":"The quantity of the add-on included in a backing.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrderOrderable","description":"An orderable included in an Order, e.g. a reward.","fields":[{"name":"baseAmount","description":"The price of one unit of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"baseAmountFormatted","description":"The price of one unit of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cost","description":"The cost of the orderable, after voucher is applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"costFormatted","description":"The formatted cost of the orderable, after voucher is applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRemoved","description":"Whether the orderable has been removed after order collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The kind of orderable represented","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OrderOrderableKindEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The orderable name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderItems","description":"The order items associated with the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"orderable","description":"The reward data for this OrderOrderable","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Orderable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedBaseAmount","description":"The amount refunded for the base amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedCost","description":"The amount refunded for the cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingBaseAmountFormatted","description":"The remaining base amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingCost","description":"The remaining cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingCostFormatted","description":"The remaining cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"voucherAmount","description":"The amount of the voucher","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"voucherAmountFormatted","description":"The amount of the voucher","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrderItem","description":"An item included in an Order.","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lineItem","description":"The line item associated with the order item","args":[],"type":{"kind":"OBJECT","name":"LineItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the order item. This is the name of the product or service being purchased.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Orderable","description":"Types that can be added to an Order","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Reward","ofType":null}]},{"kind":"ENUM","name":"OrderOrderableKindEnum","description":"The kind of OrderOrderable, such as a crowdfunding base reward, crowdfunding add-on, or PM add-on","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"crowdfunding_base","description":"crowdfunding_base","isDeprecated":false,"deprecationReason":null},{"name":"crowdfunding_addon","description":"crowdfunding_addon","isDeprecated":false,"deprecationReason":null},{"name":"upgrade_from_crowdfunding_base","description":"upgrade_from_crowdfunding_base","isDeprecated":false,"deprecationReason":null},{"name":"order_edit_upgrade","description":"order_edit_upgrade","isDeprecated":false,"deprecationReason":null},{"name":"new_base","description":"new_base","isDeprecated":false,"deprecationReason":null},{"name":"new_addon","description":"new_addon","isDeprecated":false,"deprecationReason":null},{"name":"order_edit_addon","description":"order_edit_addon","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CartQuestion","description":"A question associated with a cart, composed with an answer if one is present","fields":[{"name":"answer","description":"The answer to the question. Will return an \"empty answer\" if not yet answered.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Answer","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The cart question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FulfillmentStatusDisplayOptions","description":"All values for backing fulfillment status, including where not provided/available","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"not_started","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"in_progress","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"shipped","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"delayed","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"not_provided","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"not_available","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RewardTotalCountConnection","description":"The connection type for Reward.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DigitalAccessResource","description":"An access code or URL for retrieving a digital reward","fields":[{"name":"description","description":"A description of the resource or instructions for activation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project associated with the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resource","description":"The access code or URL","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetupIntent","description":"Selected fields on a SetupIntent from Stripe for a given backing.","fields":[{"name":"id","description":"Stripe ID of the SetupIntent.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastSetupError","description":"The error encountered in the previous SetupIntent confirmation.","args":[],"type":{"kind":"OBJECT","name":"SetupIntentError","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Status of the SetupIntent.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SetupIntentStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SetupIntentStatus","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUIRES_PAYMENT_METHOD","description":"When the SetupIntent is created, it has this status until a payment method is attached. If a SetupIntent fails, it will revert to this status.","isDeprecated":false,"deprecationReason":null},{"name":"REQUIRES_CONFIRMATION","description":"After the customer provides their payment method information, the SetupIntent is ready to be confirmed.","isDeprecated":false,"deprecationReason":null},{"name":"REQUIRES_ACTION","description":"If the setup requires additional actions, such as authenticating with 3D Secure","isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":"Once required actions are handled, the SetupIntent moves to this status, which can be brief or take a few days depending on the payment method.","isDeprecated":false,"deprecationReason":null},{"name":"CANCELED","description":"SetupIntent can be canceled at any point before it is processing or succeeded.","isDeprecated":false,"deprecationReason":null},{"name":"SUCCEEDED","description":"Setup of payment source was successful.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SetupIntentError","description":null,"fields":[{"name":"code","description":"For some errors that could be handled programmatically, a short string indicating the error code reported. https://stripe.com/docs/error-codes","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"declineCode","description":"A short string indicating the card issuer’s reason for the decline if they provide one.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":"A human-readable message providing more details about the error. For card errors, these messages can be shown to your users.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The type of error returned.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SetupIntentErrorType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SetupIntentErrorType","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"API_CONNECTION_ERROR","description":"Failure to connect to Stripe's API.","isDeprecated":false,"deprecationReason":null},{"name":"API_ERROR","description":"API errors cover any other type of problem (e.g., a temporary problem with Stripe's servers), and are extremely uncommon.","isDeprecated":false,"deprecationReason":null},{"name":"AUTHENTICATION_ERROR","description":"Failure to properly authenticate in the request.","isDeprecated":false,"deprecationReason":null},{"name":"CARD_ERROR","description":"Card errors are very common and they result when the user enters a card that can't be charged for some reason.","isDeprecated":false,"deprecationReason":null},{"name":"IDEMPOTENCY_ERROR","description":"Idempotency errors occur when an Idempotency-Key is re-used on a request that does not match the first request's API endpoint and parameters.","isDeprecated":false,"deprecationReason":null},{"name":"INVALID_REQUEST_ERROR","description":"Invalid request errors arise when your request has invalid parameters eg., 3DS authentication failed.","isDeprecated":false,"deprecationReason":null},{"name":"RATE_LIMIT_ERROR","description":"Too many requests hit the Stripe API too quickly.","isDeprecated":false,"deprecationReason":null},{"name":"VALIDATION_ERROR","description":"Errors triggered by Stripe's client-side libraries when failing to validate fields (e.g., when a card number or expiration date is invalid or incomplete).","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"UNION","name":"PaymentSource","description":"Payment sources","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"BankAccount","ofType":null},{"kind":"OBJECT","name":"CreditCard","ofType":null}]},{"kind":"ENUM","name":"BackingState","description":"Various backing states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"preauth","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledged","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"canceled","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"collected","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"errored","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"authentication_required","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dropped","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dummy","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SurveyResponse","description":"The response to a backer survey.","fields":[{"name":"addressEditable","description":"Is the address still editable","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"answerDeadline","description":"The date past which no further updates are allowed.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"answerable","description":"Is the survey currently unlocked and answerable.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"answeredAt","description":"The date on which the backer answered the survey","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"answers","description":"An array of question and answer data for this survey response","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SurveyAnswer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"editedAt","description":"The date on which the backer edited their survey response","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url used to access the survey","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SurveyAnswer","description":null,"fields":[{"name":"answer","description":"The response to the question.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The ID of the answer.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The question prompt or template name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":"The type of question, e.g. choices, checkbox, address, etc","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SurveyQuestionTemplateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SurveyQuestionTemplateEnum","description":"Enum describing all the possible templates for survey questions","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"address","description":"address","isDeprecated":false,"deprecationReason":null},{"name":"email","description":"email","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"name","isDeprecated":false,"deprecationReason":null},{"name":"other","description":"other","isDeprecated":false,"deprecationReason":null},{"name":"choices","description":"choices","isDeprecated":false,"deprecationReason":null},{"name":"checkboxes","description":"checkboxes","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Conversation","description":"A conversation on Kickstarter.","fields":[{"name":"backing","description":"The backing made by the backer on the project this conversation is about","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When the first message was sent","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isUnread","description":"Are there unread messages for the current user","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastReceivedAt","description":"Timestamp of the most recent message in the thread","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"messageCount","description":"The number of messages between the backer and creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"messages","description":"Messages that are part of this conversation","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ConversationMessagesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"otherParticipant","description":"The other participant to this conversation","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project this conversation is about","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConversationMessagesConnection","description":"The connection type for Message.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"MessageEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Message","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MessageEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Message","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Message","description":"A message on Kickstarter.","fields":[{"name":"body","description":"Body of the message","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isAppeal","description":"The message is an submission appeal","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"readAt","description":"When the message was first read","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"recipient","description":"The user who received this message","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sender","description":"The user who sent this message","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sentAt","description":"When the message was sent","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spam","description":"The message is spam","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Order","description":"An order.","fields":[{"name":"address","description":"The delivery or home address associated with the order.","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allowedCountries","description":"Countries that the order's rewards can be shipped to. If null, the order's rewards can be shipped to any country.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableCrossSells","description":"Add-ons available to be added at Pledge Redemption","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableUpgradeableRewards","description":"Base rewards available to upgrade to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"backerEntryPoint","description":"The customer entry point","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PreviewEntryPointEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReward","description":"The crowdfunding base reward at the time of order creation","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backerRewardFinal","description":"The base order orderable if the order is finalized; otherwise, the crowdfunding base reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"The backing associated with the order","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"baseOrderOrderable","description":"The base reward associated with the order — it could be from the original backing, a reward upgrade, or a creator-initiated order edit.","args":[],"type":{"kind":"OBJECT","name":"OrderOrderable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"baseOrderable","description":"The base reward on the order. Could be base reward from original backing or one from reward upgrade.","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"baseOrderableVoucherAmount","description":"The voucher amount for the base orderable, or 0 if there is no base orderable","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"baseOrderableVoucherAmountFormatted","description":"The voucher amount for the base orderable, or 0 if there is no base orderable, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cart","description":"Contains the backer's item preferences and responses to survey questions","args":[],"type":{"kind":"OBJECT","name":"Cart","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"checkoutRequired","description":"Whether there is required action for the backer to take in their pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"checkoutState","description":"The state of checkout (taking into account order and cart status)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CheckoutStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"checkoutVoucherOrBaseAutoCompletable","description":"Whether or not the order would be auto-exemptable if the order had no cross-sells.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedCurrencyAmounts","description":"Order amounts converted to a backer's chosen currency","args":[],"type":{"kind":"OBJECT","name":"ConvertedOrderAmounts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creatorAddableCrossSells","description":"Add-ons that the creator can add to the order through an order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSells","description":"Add-ons selected for this order during Pledge Redemption plus add-ons through creator intiated order edits","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderOrderable","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsTotal","description":"The cross-sells total amount for the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsTotalFormatted","description":"The cross-sells total amount for the order, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsWithQuantity","description":"Add-ons selected for this order during Pledge Redemption with quantity","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderOrderableWithQuantity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crowdfundingAddonsFromAdjustment","description":"Crowdfunding addon rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crowdfundingAddonsWithQuantity","description":"Add-ons selected for this order during Crowdfunding with quantity","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderOrderableWithQuantity","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"crowdfundingAndUpgradeTotal","description":"The total amount for crowdfunding and upgrade rewards","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crowdfundingRewardToNewRewardUpgrade","description":"Whether the order was upgraded from a crowdfunding reward to a pledge manager-only reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":"The currency of the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"customer","description":"The associated user","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"finalized","description":"Whether the order is in a finalized state","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"finalizedAndNotExempt","description":"Whether or not the order was finalized but non-exempt.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fullyRefunded","description":"Whether or not the order has been fully refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPledgeManagerNetNewBacker","description":"Whether this order is a net new order for the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPreview","description":"Whether the order is a preview order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The order location.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mustAcknowledgeCrossSells","description":"Whether the backer must acknowledge cross-sells to complete checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mustAcknowledgeUpgrades","description":"Whether the backer must acknowledge upgrades to complete checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"orderEdits","description":"Edits to the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEdit","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"orderOrderables","description":"The rewards included in the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderOrderable","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"orderableVoucherTotalFormatted","description":"The total voucher amount for all orderables, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":"Payment source used on an order.","args":[],"type":{"kind":"UNION","name":"PaymentSource","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project associated with the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedShippingAmount","description":"The amount refunded for the shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundedSurchargeAmount","description":"The amount refunded for the surcharge","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundedTotalTax","description":"The amount refunded for the total tax","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingCost","description":"The remaining cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingCostFormatted","description":"The remaining cost","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingShippingAmount","description":"The remaining shipping amount","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingShippingAmountFormatted","description":"The remaining shipping amount","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingSurchargeAmount","description":"The remaining surcharge amount","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotalTax","description":"The remaining total tax","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotalTaxFormatted","description":"The remaining total tax","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardUpgrade","description":"The currently-selected reward upgrade on an order","args":[],"type":{"kind":"OBJECT","name":"OrderOrderable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardUpgradeFinal","description":"The reward upgrade on an order after order is completed","args":[],"type":{"kind":"OBJECT","name":"OrderOrderable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shipments","description":"The shipments associated with the order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Shipment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingAmount","description":"The amount of shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingAmountFormatted","description":"The cost of shipping, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingBaseAmountFormatted","description":"The amount of shipping before any vouchers","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingVoucherAmount","description":"Discount amount for shipping that was already paid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingVoucherAmountFormatted","description":"Discount amount for shipping that was already paid, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The order's state, e.g. draft, collected, dropped, etc.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OrderStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeAmount","description":"The total surcharge amount for the order","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeAmountFormatted","description":"The total surcharge amount for the order, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxIncluded","description":"Whether the rewards/shipments have tax included in the price","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxLocalization","description":"The localized tax (VAT, Tax, HST, etc) based on order address","args":[{"name":"refund","description":"Whether or not the display is for a refund","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxProviderSalesInvoice","description":"Requests the Avatax data for a given document code. This is only available to KSR admins.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AvataxTransactionResponseData","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"The total cost for the order including taxes and shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalFormatted","description":"The total cost for the order including taxes and shipping, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalTax","description":"The total tax amount for the order","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalTaxFormatted","description":"The total tax amount for the order, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalTaxToRefund","description":"Calculates the total tax amount that will be refunded given the partial refund adjustment data.","args":[{"name":"refundPledgeInput","description":null,"type":{"kind":"INPUT_OBJECT","name":"RefundPledgeInput","ofType":null},"defaultValue":null},{"name":"refundOrderInput","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefundOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usableAddresses","description":"All of the user's saved addresses that match the order country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"vatLocation","description":"Whether or not the location is in the EU or UK (uses VAT)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderStateEnum","description":"The state of the order, e.g. draft, submitted, successful, errored, missed.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"draft","description":"draft","isDeprecated":false,"deprecationReason":null},{"name":"auto_exempt","description":"auto_exempt","isDeprecated":false,"deprecationReason":null},{"name":"calculated_exempt","description":"calculated_exempt","isDeprecated":false,"deprecationReason":null},{"name":"collected","description":"collected","isDeprecated":false,"deprecationReason":null},{"name":"dropped","description":"dropped","isDeprecated":false,"deprecationReason":null},{"name":"refunded","description":"refunded","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PreviewEntryPointEnum","description":"Customer entry points to be used when previewing an order.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"crowdfunding","description":"crowdfunding","isDeprecated":false,"deprecationReason":null},{"name":"late_pledge","description":"late_pledge","isDeprecated":false,"deprecationReason":null},{"name":"pledge_manager","description":"pledge_manager","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ConvertedOrderAmounts","description":"Order amounts converted to a user's chosen currency","fields":[{"name":"baseOrderableVoucherAmount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"orderableVoucherTotal","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingBaseAmount","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingVoucherAmount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeAmount","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalTax","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrderEdit","description":"An edit to an order","fields":[{"name":"additionLineItems","description":"The addition line items included in the edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEditLineItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"additionalAddons","description":"The additional add-ons included in the edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"additions","description":"The additions included in the edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Addition","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"badgeConfig","description":"Display config for order edit badge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UiConfig","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"bannerConfig","description":"Display config for order edit banner","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UiConfig","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"Timestamp at which edit was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsTotal","description":"The cross-sells total amount for the order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"crossSellsTotalFormatted","description":"The cross-sells total amount for the order edit, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"editLineItems","description":"Line items that were edited as part of the edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEditLineItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"editedRewards","description":"The rewards that were edited as part of the edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order modified by the order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingTotal","description":"The amount of shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingTotalFormatted","description":"The cost of shipping, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The state of the order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OrderEditStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeTotal","description":"The total surcharge amount for the order edit","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"surchargeTotalFormatted","description":"The total surcharge amount for the order edit, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxTotal","description":"The total tax amount for the order edit","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"taxTotalFormatted","description":"The total tax amount for the order edit, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"The total cost for the order edit including taxes and shipping","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalFormatted","description":"The total cost for the order edit including taxes and shipping, formatted","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"upgrade","description":"The reward being upgraded to in the edit","args":[],"type":{"kind":"OBJECT","name":"Upgrade","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"upgradeLineItems","description":"The upgrade line items included in the edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEditLineItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A link to detailed order edit information","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Addition","description":"An additional reward that is part of an order edit","fields":[{"name":"additionAnswers","description":"The answers to any questions associated with this addition","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEditAnswer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The reward being added","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrderEditAnswer","description":"A creator-provided answer to a question about a line item or reward upgrade","fields":[{"name":"question","description":"The question answered","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"response","description":"The response to the question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrderEditLineItem","description":"Represents a line item in an order edit (either an upgrade, edit or addition line item)","fields":[{"name":"answers","description":"The creator-provided answers to any questions associated with this line item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEditAnswer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item associated with this line item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemVariant","description":"The creator-selected item variant for this line item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemVariant","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rewardName","description":"The reward associated with this line item","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Upgrade","description":"A creator-initiated upgrade to a different reward","fields":[{"name":"cost","description":"The cost of this upgrade, after voucher is applied.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"costFormatted","description":"The cost of this upgrade, after voucher is applied, formatted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"newReward","description":"The reward being upgraded to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"previousReward","description":"The reward being upgrade from","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upgradeAnswers","description":"The answers to any questions associated with this upgrade","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEditAnswer","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UiConfig","description":"Configuration for displaying UI elements","fields":[{"name":"copy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"variant","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderEditStateEnum","description":"The state of the order edit, e.g. draft, pending, completed, rejected, failed","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"draft","description":"draft","isDeprecated":false,"deprecationReason":null},{"name":"pending","description":"pending","isDeprecated":false,"deprecationReason":null},{"name":"completed","description":"completed","isDeprecated":false,"deprecationReason":null},{"name":"rejected","description":"rejected","isDeprecated":false,"deprecationReason":null},{"name":"failed","description":"failed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"OrderOrderableWithQuantity","description":"All rewards of a particular kind included in an Order, bundled together with their quantity and price information","fields":[{"name":"orderable","description":"The orderable of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Orderable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"quantity","description":"The quantity of the reward in the Order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPrice","description":"The total price of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPriceFormatted","description":"The total price of the reward, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unitPrice","description":"The price of one unit of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unitPriceFormatted","description":"The price of one unit of the reward, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Shipment","description":"A shipment included in an Order.","fields":[{"name":"cost","description":"The cost of this shipment. This is the total amount charged for shipping (base amount), minus the amount charged at pledge (voucher amount).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"trackingNumber","description":"The tracking number for this shipment.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CheckoutStateEnum","description":"The state of checkout, e.g. complete, in progress, incomplete.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"complete","description":"complete","isDeprecated":false,"deprecationReason":null},{"name":"in_progress","description":"in_progress","isDeprecated":false,"deprecationReason":null},{"name":"not_started","description":"not_started","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AvataxTransactionResponseData","description":"Avatax transaction response data type containing details about a transaction.","fields":[{"name":"handledResponse","description":"The processed response from the Avatax API, containing structured data about the transaction.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AvataxTransactionLineItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"rawResponse","description":"The raw response from the Avatax API for the transaction.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"JSON","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AvataxTransactionLineItem","description":"Avatax transaction line item type containing details about a line item in a transaction.","fields":[{"name":"amount","description":"The amount of tax applied to the item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deemedSupplier","description":"The deemed supplier for the tax.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the tax applied to the item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rate","description":"The tax rate applied to the item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxId","description":"The ID of the tax applied to the item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxableId","description":"The ID of the taxable item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"taxableType","description":"The type of the taxable item (e.g., OrderItem or Shipment).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vatNumber","description":"The VAT number associated with the transaction, if applicable.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefundPledgeInput","description":"Required parameters in order to refund a pledge.","fields":null,"inputFields":[{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"adjustmentParams","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AdjustmentInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AdjustmentInput","description":"Parameters to create adjustment to a backing's order, created when issuing a refund.","fields":null,"inputFields":[{"name":"reason","description":"Reason for adjustment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundReasonType","ofType":null}},"defaultValue":null},{"name":"removals","description":"Objects to be removed from order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RemovalInput","ofType":null}}}},"defaultValue":null},{"name":"refunds","description":"Refunds to be issued","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefundInput","ofType":null}}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RefundReasonType","description":"Reasons for refunds","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CHANGE_REMOVAL","description":"Change of reward or removal of reward item","isDeprecated":false,"deprecationReason":null},{"name":"FULFILLMENT_ISSUES_DELAYS","description":"Issues with or delays in fulfillment","isDeprecated":false,"deprecationReason":null},{"name":"CREDIT","description":"Creator issued credit","isDeprecated":false,"deprecationReason":null},{"name":"OVERPAYMENT","description":"Backer overpaid for reward","isDeprecated":false,"deprecationReason":null},{"name":"BACKER_REQUEST","description":"Backer requested refund","isDeprecated":false,"deprecationReason":null},{"name":"ADMIN_REFUND","description":"Admin issued refund","isDeprecated":false,"deprecationReason":null},{"name":"OTHER","description":"Other reason for refund","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RemovalInput","description":"An object removed as part of an adjustment","fields":null,"inputFields":[{"name":"rewardId","description":"id of the reward associated with the removal","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"refundItemId","description":"id of object to be removed","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"type","description":"type of object to be removed (reward, reward item, or order item)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundAdjustmentType","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RefundAdjustmentType","description":"All types of refund adjustments that can be issued","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REWARD","description":"refund for full reward tier","isDeprecated":false,"deprecationReason":null},{"name":"REWARD_ITEM","description":"refund for individual item in a reward tier","isDeprecated":false,"deprecationReason":null},{"name":"ORDER_ITEM","description":"refund for an add-on or cross-sell in the order","isDeprecated":false,"deprecationReason":null},{"name":"BONUS_AMOUNT","description":"refund for bonus support","isDeprecated":false,"deprecationReason":null},{"name":"SHIPPING_CREDIT","description":"refund for shipping fees","isDeprecated":false,"deprecationReason":null},{"name":"GENERAL_REFUND","description":"general refund","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefundInput","description":"An amount to be refunded as part of an adjustment.","fields":null,"inputFields":[{"name":"refundItemId","description":"id of object to be refunded","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"type","description":"type of refund","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundAdjustmentType","ofType":null}},"defaultValue":null},{"name":"amount","description":"amount to be refunded","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefundOrderInput","description":"Parameters to refund the non-voucher part of an order.","fields":null,"inputFields":[{"name":"shipments","description":"Shipments to be refunded","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShipmentInput","ofType":null}}}},"defaultValue":null},{"name":"crossSells","description":"Cross sells to be refunded / removed","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"OrderOrderableInput","ofType":null}}}},"defaultValue":null},{"name":"upgradedReward","description":"Upgraded reward to be refunded / removed","type":{"kind":"INPUT_OBJECT","name":"OrderOrderableInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ShipmentInput","description":"Parameters to refund a shipment.","fields":null,"inputFields":[{"name":"shipmentId","description":"ID of the shipment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"amount","description":"Amount to refund","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"OrderOrderableInput","description":"Parameters to refund an order orderable.","fields":null,"inputFields":[{"name":"orderOrderableId","description":"ID of the order orderable","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"removed","description":"Whether the order orderable was removed","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"amount","description":"Non-voucher amount to refund","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PaymentIncrement","description":null,"fields":[{"name":"amount","description":"The payment increment amount represented in various formats","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PaymentIncrementAmount","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentIncrementableId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentIncrementableType","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundUpdatedAmountInProjectNativeCurrency","description":"The original amount minus the refunded amount formatted in the project native currency","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundedAmount","description":"The total amount that has been refunded on the payment increment, across potentially multiple adjustments","args":[],"type":{"kind":"OBJECT","name":"PaymentIncrementAmount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"scheduledCollection","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The state of the payment increment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PaymentIncrementState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stateReason","description":null,"args":[],"type":{"kind":"ENUM","name":"PaymentIncrementStateReason","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ISO8601DateTime","description":"An ISO 8601-encoded datetime","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PaymentIncrementStateReason","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REFUND_ADJUSTED","description":"The increment was adjusted due to a refund","isDeprecated":false,"deprecationReason":null},{"name":"REQUIRES_ACTION","description":"The payment source has attempted to be charged, but issuer requires additional authentication to complete the payment","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PaymentIncrementState","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"UNATTEMPTED","description":"The initial state of the payment increment; payment source has not been charged","isDeprecated":false,"deprecationReason":null},{"name":"COLLECTED","description":"Payment source was successfully charged","isDeprecated":false,"deprecationReason":null},{"name":"ERRORED","description":"Payment source could not be charged due to an errored payment source or authentication being required","isDeprecated":false,"deprecationReason":null},{"name":"CANCELLED","description":"Payment increment is cancelled by user action or is an abandoned increment due to failure to complete payment","isDeprecated":false,"deprecationReason":null},{"name":"CHARGEBACK_LOST","description":"Backer issued a dispute and we (kickstarter) lost the dispute","isDeprecated":false,"deprecationReason":null},{"name":"REFUNDED","description":"Payment increment has been refunded","isDeprecated":false,"deprecationReason":null},{"name":"UNATTEMPTED_ADJUSTED","description":"Payment increment amount has been adjusted due to refund and is unattempted","isDeprecated":false,"deprecationReason":null},{"name":"COLLECTED_ADJUSTED","description":"Payment increment amount has been adjusted due to refund and is collected","isDeprecated":false,"deprecationReason":null},{"name":"CANCELLED_ADJUSTED","description":"Payment increment amount has been adjusted due to refund and is cancelled","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"PaymentIncrementAmount","description":"Representations of the payment increment amount with cents, float, and currency variations","fields":[{"name":"amountAsCents","description":"The increment amount in the smallest denomination of the currency, ie 3750 for the USD currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountAsFloat","description":"The increment amount represented as a float, ie 37.50 for the USD currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountFormattedInProjectNativeCurrency","description":"The increment amount represented as a float with the currency symbol, ie $37.50","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"amountFormattedInProjectNativeCurrencyWithCurrencyCode","description":"The increment amount represented as a float with the currency symbol and three-letter currency code, ie $37.50 USD","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":"A three-letter currency code for the increment (ie the currency of the project)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentSummary","description":"An adjustment summary.","fields":[{"name":"adjustable","description":"The associated backing/order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"adjustedSummary","description":"The current state of the backing or order","args":[],"type":{"kind":"OBJECT","name":"AdjustedSummary","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"adjustments","description":"An array of adjustments associated with the AdjustmentSummary","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Adjustment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedAmount","description":"The sum of all refunded amounts on the adjustable","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Adjustment","description":"Adjustment to an order, created to issue a refund.","fields":[{"name":"createdAt","description":"Timestamp at which adjustment was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Adjustment ID","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"metadata","description":"Metadata for the adjustment, including refunds and removals","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustmentMetadata","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckoutState","description":"State of associated refund checkout","args":[],"type":{"kind":"ENUM","name":"RefundCheckoutState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"Timestamp at which adjustment was last updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RefundCheckoutState","description":"All available states for a refund checkout","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AUTHORIZING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ERRORED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentMetadata","description":"Metadata for adjustment to order","fields":[{"name":"paymentIncrementIds","description":"IDs of Payment increments affected by the refunds","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reason","description":"Reason for adjustment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundReasonType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckoutId","description":"ID of associated RefundCheckout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refunds","description":"Refunds to be issued in adjustment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustmentRefund","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"removals","description":"Objects to be removed from order in adjustment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustmentRemoval","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentRemoval","description":"An object removed as part of an adjustment.","fields":[{"name":"id","description":"id of object to be removed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"type of object to be removed (reward, reward item, or order item)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundAdjustmentType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentRefund","description":"A refund issued as part of an adjustment.","fields":[{"name":"amount","description":"amount to be refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"id of object to be refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"type of refund","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundAdjustmentType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustedSummary","description":"Current state of a backing after all adjustments are applied.","fields":[{"name":"allRewards","description":"list of rewards, original total costs, and totals after adjustments","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustmentReward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"amount","description":"current total amount for backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"bonusAmount","description":"current bonus amount for backing","args":[],"type":{"kind":"OBJECT","name":"AdjustmentAmount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingAmount","description":"current shipping amount for backing","args":[],"type":{"kind":"OBJECT","name":"AdjustmentAmount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"current backing status","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BackingState","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentAmount","description":"A hash containing the original, refunded, and remaining amounts.","fields":[{"name":"originalTotal","description":"original total amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedTotal","description":"amount that has been refunded after all adjustments are applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotal","description":"amount remaining after all adjustments are applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"removed","description":"whether the reward has been removed from the backing","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustmentReward","description":"A reward that is modified by an adjustment.","fields":[{"name":"originalTotal","description":"original total amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundItemId","description":"uuid for the refund item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundedTotal","description":"amount that has been refunded after all adjustments are applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"remainingTotal","description":"amount remaining after all adjustments are applied","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"removed","description":"whether the reward has been removed from the backing","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardId","description":" graphql id of reward to be refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Refund","description":"A refund.","fields":[{"name":"backing","description":"The associated backing","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backingAdjustmentData","description":"The adjustment for the backings reward, addons, and/or bonus amount","args":[],"type":{"kind":"OBJECT","name":"RefundAdjustmentData","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backingAdjustmentRefundCheckout","description":"The refund checkout associated with the backing adjustment","args":[],"type":{"kind":"OBJECT","name":"RefundCheckout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"Timestamp at which refund was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":"message from the creator associated with this refund","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderAdjustmentData","description":"The adjustment for the order's addons, shipping taxes, sales taxes, and pledge upgrade","args":[],"type":{"kind":"OBJECT","name":"RefundAdjustmentData","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reason","description":"reason for the refund","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundReasonType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundDetailsPath","description":"The refund details path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalFormatted","description":"The total refunded from this refund attempt, formatted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefundAdjustmentData","description":"The refund adjustment data for a backing or an order.","fields":[{"name":"actualTotalRefundAmount","description":"The actual refund amount (only successful refunds), if present","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addons","description":"The adjustment details for the addons","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdjustedReward","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"bonusSupport","description":"The adjustment details for the bonus support","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"The client secret for the adjustment","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"A list of errors from underlying refunds","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"failedRefundAmount","description":"The failed refund amount, if present","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasFailures","description":"If the refund has any underlying failures","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"requestedTotalRefundAmount","description":"The requested refund amount, if present","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"requiresAction","description":"Whether the adjustment requires action","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The adjustment details for the reward","args":[],"type":{"kind":"OBJECT","name":"AdjustedReward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardUpgrade","description":"The adjustment details for the upgraded reward","args":[],"type":{"kind":"OBJECT","name":"AdjustedReward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rewardUpgraded","description":"Whether the reward was upgraded","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shipping","description":"The adjustment details for the shipping and shipping tax","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stateReason","description":"The reason for the adjustment state","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Whether the adjustment was successfully refunded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"surcharge","description":"The adjustment details for the surcharge","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tax","description":"The adjustment details for the sales tax","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"The adjustment total","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"uncollectedAmountCancelled","description":"The amount cancelled in upcoming increments","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdjustedReward","description":"The adjusted reward.","fields":[{"name":"amount","description":"The total amount refunded for the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefundCheckout","description":"Intermediary set of changes that have yet to be applied to a backing","fields":[{"name":"amount","description":"The total amount of the refund","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"The backing associated with the refund","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"If `requires_action` is true, `client_secret` should be used to initiate additional client-side authentication steps","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"requiresAction","description":"Whether this refund checkout requires additional client-side authentication steps (e.g. 3DS2)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The state of the redund checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundCheckoutState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stateReason","description":"Reason given when state is in a failed state","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stripePaymentSetupRedirectUrl","description":"The full URL to redirect to after payment setup via Stripe in refunds","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"HTML","description":"An HTML string.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextComponent","description":"Itemized rich text","fields":[{"name":"items","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"RichTextItem","description":"Rich text items: Paragraph, Headers, List, Quote, Photo, Audio, Video or Oembed","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"RichText","ofType":null},{"kind":"OBJECT","name":"RichTextHeader1","ofType":null},{"kind":"OBJECT","name":"RichTextHeader2","ofType":null},{"kind":"OBJECT","name":"RichTextHeader3","ofType":null},{"kind":"OBJECT","name":"RichTextHeader4","ofType":null},{"kind":"OBJECT","name":"RichTextListItem","ofType":null},{"kind":"OBJECT","name":"RichTextListOpen","ofType":null},{"kind":"OBJECT","name":"RichTextListClose","ofType":null},{"kind":"OBJECT","name":"RichTextPhoto","ofType":null},{"kind":"OBJECT","name":"RichTextAudio","ofType":null},{"kind":"OBJECT","name":"RichTextVideo","ofType":null},{"kind":"OBJECT","name":"RichTextOembed","ofType":null}]},{"kind":"OBJECT","name":"RichText","description":"A Paragraph.

    ","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextHeader1","description":"A Header 1.

    ","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextHeader2","description":"A Header 2.

    ","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextHeader3","description":"A Header 3.

    ","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextHeader4","description":"A Header 4.

    ","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextListItem","description":"A list item.
  • ","fields":[{"name":"children","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"RichTextItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"link","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"styles","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextListOpen","description":"Open List (ul|ol)","fields":[{"name":"_present","description":"Placeholder to avoid empty type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextListClose","description":"Close List (ul|ol)","fields":[{"name":"_present","description":"Placeholder to avoid empty type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextPhoto","description":"A Photo asset","fields":[{"name":"altText","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"asset","description":null,"args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"caption","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"width","description":"The width of the image in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextAudio","description":"An Audio asset","fields":[{"name":"altText","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"asset","description":null,"args":[],"type":{"kind":"OBJECT","name":"AttachedAudio","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"caption","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AttachedAudio","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Upload status of the audio","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AssetEncodingState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AssetEncodingState","description":"All available asset upload states","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ENCODING","description":"Initial, incomplete status of an asset upload","isDeprecated":false,"deprecationReason":null},{"name":"ENCODED","description":"Processing the asset successfully completed","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Processing the asset failed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RichTextVideo","description":"A Video asset","fields":[{"name":"altText","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"asset","description":null,"args":[],"type":{"kind":"OBJECT","name":"AttachedVideo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"caption","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AttachedVideo","description":null,"fields":[{"name":"formats","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AttachedVideoFormat","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"poster","description":"Image preview url","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"renderedHtml","description":"The rendered HTML player for a video asset","args":[{"name":"assetWidth","description":"The width of the video asset in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Upload status of the video","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AssetEncodingState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"Original video url","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AttachedVideoFormat","description":null,"fields":[{"name":"encoding","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"height","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"profile","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"width","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RichTextOembed","description":"An Oembed item","fields":[{"name":"authorName","description":"ex: Bryson Lovett","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorUrl","description":"ex: https://www.youtube.com/user/brysonlovett","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"height","description":"ex: 270","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"html","description":"ex: ","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"iframeUrl","description":"ex: https://www.youtube.com/embed/ijeaVn8znJ8?feature=oembed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"originalUrl","description":"ex: https://youtu.be/ijeaVn8znJ8","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"photoUrl","description":"only for photo","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"providerName","description":"Ex: Embedly, Flickr, Kickstarter, Kickstarter Live, Scribd, SoundCloud, Spotify, Sketchfab, Twitter, Vimeo, YouTube","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"providerUrl","description":"ex: https://www.youtube.com/","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"thumbnailHeight","description":"ex: 360","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"thumbnailUrl","description":"ex: https://i.ytimg.com/vi/ijeaVn8znJ8/hqdefault.jpg","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"thumbnailWidth","description":"ex: 480","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"ex: Bird Photo Booth bird feeder kickstarter preview 2","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"one of: photo, video, link, rich","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"version","description":"always \"1.0\"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"width","description":"ex: 480","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AccountInfo","description":"A project's account information.","fields":[{"name":"availablePaymentSources","description":"Payment sources available to the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CreditCard","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"depositAccount","description":"The account for funds.","args":[],"type":{"kind":"OBJECT","name":"DepositAccount","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"A project's email contact.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isEmailVerified","description":"Whether or not a project's email contact has been verified.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":"Payment source for dispute resolution.","args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentsOnboarding","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PaymentsOnboarding","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usesAccountHolderName","description":"True if the project accepts an account holder name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usesRoutingNumber","description":"True if the project accepts a routing number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PaymentsOnboarding","description":"A representation of the creator's progress through the payments & identity parts of Project Build onboarding. Currently just their overall 'status'","fields":[{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PaymentsOnboardingStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PaymentsOnboardingStatus","description":"The overall status of the payments & identity onboarding flow of project build.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"complete","description":"The creator successfully completed payments & identity onboarding","isDeprecated":false,"deprecationReason":null},{"name":"in_progress","description":"The creator has started onboarding but has not yet finished","isDeprecated":false,"deprecationReason":null},{"name":"requires_hosted_onboarding","description":"The creator must proceed to Stripe Hosted Onboarding to finish onboarding","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"DepositAccount","description":"A deposit account.","fields":[{"name":"accountBusinessType","description":"The deposit account business type.","args":[],"type":{"kind":"ENUM","name":"DepositAccountBusiness","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"accountLastFour","description":"The last four digits of the account number.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"additionalOwners","description":"Identity verifications for anyone owning > 25% of the company (if the identity is a legal entity)","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AdditionalOwner","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"company","description":"The company associated with this deposit account.","args":[],"type":{"kind":"OBJECT","name":"Company","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"contactName","description":"The name associated with either the associated company or identity","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The Rosie ID for this DepositAccount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"identity","description":"The identity associated with this deposit account.","args":[],"type":{"kind":"OBJECT","name":"Identity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isInEuropeanUnion","description":"Whether the deposit account is in the EU.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isInUnitedKingdom","description":"Whether the deposit account is in the UK.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isStripeAccountCreated","description":"Has the Stripe Account been created for this deposit account.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"routingNumber","description":"The routing number.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The deposit account's state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"DepositAccountState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"streetAddress","description":"Either the company or identity street address","args":[],"type":{"kind":"OBJECT","name":"StreetAddress","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"StreetAddress","description":"The street address of an individual or company","fields":[{"name":"country","description":"2-letter country code","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locality","description":"City/District/Suburb/Town/Village","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postalCode","description":"ZIP or postal code","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"region","description":"State/County/Province/Region.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"street1","description":"Address line 1 (Street address/PO Box/Company name)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"street2","description":"Address line 2 (Apartment/Suite/Unit/Building)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Company","description":"A deposit account's company.","fields":[{"name":"name","description":"The company name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"phoneNumber","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"streetAddress","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StreetAddress","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vatNumber","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"verification","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AsynchronousVerification","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AsynchronousVerification","description":null,"fields":[{"name":"fieldsNeeded","description":"If it didn't pass verification, this array will contain the names of the attributes that failed (e.g., for a Company: ['address.line1'])","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AsynchronousVerificationState","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AsynchronousVerificationState","description":"Something that is expected to eventually become either 'verified' or 'unverified', but may remain 'pending' for an indefinite amount of time","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"pending","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"unverified","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"verified","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Identity","description":"A deposit account's identity.","fields":[{"name":"id","description":"ID of the identity","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"identityDocument","description":"The most recent identity document","args":[],"type":{"kind":"OBJECT","name":"IdentityDocument","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The account-holder name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"verification","description":null,"args":[],"type":{"kind":"OBJECT","name":"AsynchronousVerification","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IdentityDocument","description":"The relevant identity document supplied for identity verification.","fields":[{"name":"identityState","description":"The associated identity's verification state","args":[],"type":{"kind":"ENUM","name":"IdentityVerificationState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"verificationState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IdentityDocumentVerificationStates","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"IdentityDocumentVerificationStates","description":"Identity document verification states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SUCCESSFUL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"STARTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ABANDONED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"IdentityVerificationState","description":"Identity verification states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ERROR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PASSED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"STARTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VERIFYING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"DepositAccountState","description":"Deposit account states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UNAUTHORIZED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VERIFYING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AdditionalOwner","description":"Needed for the verification of legal entities that have multiple owners","fields":[{"name":"address","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdditionalOwnerAddress","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"birthdate","description":null,"args":[],"type":{"kind":"OBJECT","name":"AdditionalOwnerBirthdate","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"firstName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personalIdNumberProvided","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"verification","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AdditionalOwnerVerification","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdditionalOwnerAddress","description":null,"fields":[{"name":"country","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdditionalOwnerBirthdate","description":null,"fields":[{"name":"day","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"month","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"year","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AdditionalOwnerVerification","description":null,"fields":[{"name":"details","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"detailsCode","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"document","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"documentBack","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AsynchronousVerificationState","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DepositAccountBusiness","description":"Deposit account business types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"individual","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"company","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"non_profit","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AiDisclosure","description":"An AI disclosure.","fields":[{"name":"fundingForAiAttribution","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fundingForAiConsent","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fundingForAiOption","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"generatedByAiConsent","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"generatedByAiDetails","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"involvesAi","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"involvesFunding","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"involvesGeneration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"involvesOther","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"otherAiDetails","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Category","description":"A project category.","fields":[{"name":"analyticsName","description":"Category name in English for analytics use.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"goalHelperLimit","description":"Advised maximum goal limit in USD","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Category name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parentCategory","description":"Category parent","args":[],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parentId","description":"Parent id of the category.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectPhrase","description":"The translatable phrase (e.g. \"An art project\"))","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"Projects in a category.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Filter projects by publically accessible state.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PublicProjectState","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CategoryProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"Category slug.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subcategories","description":"Subcategories.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CategorySubcategoriesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalProjectCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A URL to the category page.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CategoryProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PublicProjectState","description":"Publically visible project states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"LIVE","description":"Active and accepting pledges.","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":"Successfully funded by deadline.","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Failed to fund by deadline.","isDeprecated":false,"deprecationReason":null},{"name":"SUBMITTED","description":"Project is submitted and in prelaunch state.","isDeprecated":false,"deprecationReason":null},{"name":"UPCOMING","description":"Project that is in prelaunch.","isDeprecated":false,"deprecationReason":null},{"name":"LATE_PLEDGE","description":"Project that is successful and accepting late pledges.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CategorySubcategoriesConnection","description":"The connection type for Category.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CategoryEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Category","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CategoryEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Category","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CollaboratorPermission","description":"A permission for a collaborator on a project","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"edit_project","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"edit_faq","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"view_pledges","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"fulfillment","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"configure_pledge_manager","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"launch_pledge_manager","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"launch_prelaunch","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Country","description":"A supported country.","fields":[{"name":"code","description":"ISO ALPHA-2 code.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Country name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regions","description":"Regions part of this country","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Region","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"stripeAccountSupportedRegions","description":"Regions that Stripe supports for Stripe Accounts","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Region","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Region","description":"A region inside a country.","fields":[{"name":"code","description":"Region code.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Region name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectSharedDraft","description":"A Project that has a generated share token.","fields":[{"name":"id","description":"The project id of a shared draft","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The project name of a shared draft","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CuratedCollection","description":"Curated collections of projects, represented by badges.","fields":[{"name":"badge","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentalCommitment","description":null,"fields":[{"name":"commitmentCategory","description":"The type of environmental commitment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentalCommitmentCategory","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"An environmental commitment description","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentalCommitmentCategory","description":"The type of environmental commitment for a project.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"long_lasting_design","description":"long lasting design","isDeprecated":false,"deprecationReason":null},{"name":"sustainable_materials","description":"sustainable materials","isDeprecated":false,"deprecationReason":null},{"name":"environmentally_friendly_factories","description":"environmentally friendly factories","isDeprecated":false,"deprecationReason":null},{"name":"sustainable_distribution","description":"sustainable distribution","isDeprecated":false,"deprecationReason":null},{"name":"reusability_and_recyclability","description":"reusability and recyclability","isDeprecated":false,"deprecationReason":null},{"name":"something_else","description":"something else","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Ratio","description":"A number between 0.0 and 1.0.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectSentimentStats","description":null,"fields":[{"name":"negative","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"neutral","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"positive","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectProfile","description":"A profile for after a project has ended.","fields":[{"name":"blurb","description":"The description of the projects from the project's profile.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"featureImageUrl","description":"Featured image for this project profile.","args":[{"name":"width","description":"The width of the image in pixels.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name from the project's profile.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The project profile's current state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ProjectProfileState","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ProjectProfileState","description":"Various project profile states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"INACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ACTIVE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BitlyHashes","description":"The different bitly hashes for a project","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SHARE","description":"A project's share link","isDeprecated":false,"deprecationReason":null},{"name":"TWEET","description":"A project's twitter share link","isDeprecated":false,"deprecationReason":null},{"name":"FACEBOOK","description":"A project's facebook share link","isDeprecated":false,"deprecationReason":null},{"name":"EMAIL","description":"A project's email share link","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Recommendations","description":"Score and model from recommendations engine if a project was fetched via recommendations.","fields":[{"name":"modelName","description":"Model used for these recommendations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rawScore","description":"Raw score from recommendations.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"score","description":"Recommendations score.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RiskQuestion","description":"A category of risk. Each category corresponds to a question in the project Plan.","fields":[{"name":"inputType","description":"The input type of the risk category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RiskCategoryInput","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The question associated with the risk category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"required","description":"Whether or not this is a required category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The category identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RiskCategoryType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RiskCategoryType","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"delays","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"unexpected_pledge_volume","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"previous_experience","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"fulfillment_plan","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_budget_contingency","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"alternative_fulfillment_path","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RiskCategoryInput","description":"Describes the expected input type for a risk category.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"text","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"radio","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RiskStrategy","description":null,"fields":[{"name":"description","description":"Creator's answer for mitigating this particular risk category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"riskCategory","description":"The type of risk","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RiskCategoryType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"riskQuestion","description":"The question the creator is answering.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RiskQuestion","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ProjectState","description":"Various project states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STARTED","description":"Created and preparing for launch.","isDeprecated":false,"deprecationReason":null},{"name":"SUBMITTED","description":"Ready for launch with a draft submitted for auto-approval.","isDeprecated":false,"deprecationReason":null},{"name":"LIVE","description":"Active and accepting pledges.","isDeprecated":false,"deprecationReason":null},{"name":"CANCELED","description":"Canceled by creator.","isDeprecated":false,"deprecationReason":null},{"name":"SUSPENDED","description":"Suspended for investigation, visible.","isDeprecated":false,"deprecationReason":null},{"name":"PURGED","description":"Suspended and hidden.","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":"Successfully funded by deadline.","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Failed to fund by deadline.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Spreadsheet","description":"A project spreadsheet, including a url and row data","fields":[{"name":"data","description":"The data of the Google Sheet associated to this project","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SpreadsheetDatum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dataLastUpdatedAt","description":"When the data for the sheet was last fetched successfully","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"displayMode","description":"Can be `amount` or `percent` based on the creator's choice","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDisplayableData","description":"Whether a spreadsheet contains the minimum information to render a graphic budget","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"public","description":"Whether the sheet is shareable with the public","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The URL of the Google Sheet associated to this project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SpreadsheetDatum","description":"A row of datum for a funding spreadsheet","fields":[{"name":"description","description":"Expanded description of the purpose of that row","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the row","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"phase","description":"The funding category of the row","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rowNum","description":"The spreadsheet row number","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The dollar value of the row","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectStatus","description":"Project status set by user","fields":[{"name":"enabled","description":"Whether the project status is currently enabled or not (opted-in / opted-out)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"Id of a project status","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nextDueDate","description":"The estimated due date for the next_status of the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nextStatus","description":"The next_status of the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nowStatus","description":"The now_status of the project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When project status is updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectFeedback","description":"Structured feedback left by a user on a project","fields":[{"name":"createdAt","description":"When the answer was provided","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"questionAnswer","description":"The answer the user provided","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"questionName","description":"The name of the question the user answered","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectMilestone","description":"Milestones for projects","fields":[{"name":"completedAt","description":"When the Milestone was marked as completed","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"milestoneCategory","description":"The category for the Milestone","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MilestoneCategory","description":null,"fields":[{"name":"name","description":"Name of category","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"Order to display category in for Project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Tag","description":"A project tag.","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Tag name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"Projects associated with a tag.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"state","description":"Filter projects by publically accessible state.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PublicProjectState","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TagProjectsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"Tag slug.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"A URL for the tag page.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"TagScope","description":"Various scopes for tags.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DISCOVER","description":"Tags currently visible in discovery interfaces.","isDeprecated":false,"deprecationReason":null},{"name":"CREATIVE_PROMPT","description":"Tags currently available as creative prompts.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Submission","description":"A submission for a project on Kickstarter.","fields":[{"name":"appeal","description":"The message from the creator appealing a rejection.","args":[],"type":{"kind":"OBJECT","name":"Message","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasMessages","description":"If the submission has messages between the creator and KSR staff.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isProcessed","description":"If the system has processed a submission for review.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"messages","description":"A submission's messages between the creator and KSR staff.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Message","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The submission's current state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SubmissionState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"submittedAt","description":"When was the project first submitted?","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SubmissionState","description":"Various submission states.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DRAFT","description":"Not yet submitted.","isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":"Submitted for review, waiting for acception or rejection.","isDeprecated":false,"deprecationReason":null},{"name":"ACCEPTED","description":"Accepted by a reviewer, can launch.","isDeprecated":false,"deprecationReason":null},{"name":"APPEALED","description":"Rejection appealed, asking for re-review.","isDeprecated":false,"deprecationReason":null},{"name":"REJECTED","description":"Rejected by a reviewer, cannot launch.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Video","description":"A project video","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"previewImageUrl","description":"Preview image url for the video","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Upload status of the video","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"VideoState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"tracks","description":"A video's tracks","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"VideoTracksConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"videoSources","description":"A video's sources (hls, high, base)","args":[],"type":{"kind":"OBJECT","name":"VideoSources","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"VideoState","description":"All available video states","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROCESSING","description":"Initial, incomplete status of a video","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Processing the video file failed","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":"Processing the video file successfully completed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"VideoSources","description":"A video's sources","fields":[{"name":"base","description":null,"args":[],"type":{"kind":"OBJECT","name":"VideoSourceInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"high","description":null,"args":[],"type":{"kind":"OBJECT","name":"VideoSourceInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hls","description":null,"args":[],"type":{"kind":"OBJECT","name":"VideoSourceInfo","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoSourceInfo","description":"The details of a video's source","fields":[{"name":"src","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTracksConnection","description":"The connection type for VideoTrack.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"VideoTrackEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"VideoTrack","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrackEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"VideoTrack","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrack","description":"A video caption","fields":[{"name":"cues","description":"A video track's cues (individaul caption with timestamp)","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"VideoTrackCuesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"importStatus","description":"Import status of a video track","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"VideoTrackState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The type of a video track (caption, subtitle)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"language","description":"The language of the video track","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CaptionLanguage","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"tid","description":"A video track public ID","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"trackSourceUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CaptionLanguage","description":"A language eligible for captions in video tracks.","fields":[{"name":"code","description":"The code used as a key for the language.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CaptionLanguageCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the language.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CaptionLanguageCode","description":"Two letter language code for eligible caption languages","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"EN","description":"English","isDeprecated":false,"deprecationReason":null},{"name":"AR","description":"العربية","isDeprecated":false,"deprecationReason":null},{"name":"CA","description":"Català","isDeprecated":false,"deprecationReason":null},{"name":"CS","description":"Čeština","isDeprecated":false,"deprecationReason":null},{"name":"DA","description":"Dansk","isDeprecated":false,"deprecationReason":null},{"name":"DE","description":"Deutsch","isDeprecated":false,"deprecationReason":null},{"name":"EL","description":"ελληνικά","isDeprecated":false,"deprecationReason":null},{"name":"ES_ES","description":"Español (España)","isDeprecated":false,"deprecationReason":null},{"name":"ES_MX","description":"Español (México)","isDeprecated":false,"deprecationReason":null},{"name":"FI","description":"Suomi","isDeprecated":false,"deprecationReason":null},{"name":"FR","description":"Français","isDeprecated":false,"deprecationReason":null},{"name":"GA","description":"Gaeilge","isDeprecated":false,"deprecationReason":null},{"name":"HE","description":"עברית","isDeprecated":false,"deprecationReason":null},{"name":"HI","description":"हिन्दी","isDeprecated":false,"deprecationReason":null},{"name":"HR","description":"Hrvatski","isDeprecated":false,"deprecationReason":null},{"name":"HU","description":"Magyar","isDeprecated":false,"deprecationReason":null},{"name":"ID","description":"Bahasa Indonesia","isDeprecated":false,"deprecationReason":null},{"name":"IT","description":"Italiano","isDeprecated":false,"deprecationReason":null},{"name":"JA","description":"日本語","isDeprecated":false,"deprecationReason":null},{"name":"KO","description":"한국어","isDeprecated":false,"deprecationReason":null},{"name":"MS","description":"Bahasa Melayu","isDeprecated":false,"deprecationReason":null},{"name":"NB","description":"Norsk bokmål","isDeprecated":false,"deprecationReason":null},{"name":"NPI","description":"नेपाली","isDeprecated":false,"deprecationReason":null},{"name":"NL","description":"Nederlands","isDeprecated":false,"deprecationReason":null},{"name":"NV","description":"Diné bizaad","isDeprecated":false,"deprecationReason":null},{"name":"PL","description":"Polski","isDeprecated":false,"deprecationReason":null},{"name":"PES","description":"فارسی","isDeprecated":false,"deprecationReason":null},{"name":"PRS","description":"دری","isDeprecated":false,"deprecationReason":null},{"name":"PT_BR","description":"Português (Brasil)","isDeprecated":false,"deprecationReason":null},{"name":"PT_PT","description":"Português (Portugal)","isDeprecated":false,"deprecationReason":null},{"name":"RO","description":"Română","isDeprecated":false,"deprecationReason":null},{"name":"RU","description":"Русский","isDeprecated":false,"deprecationReason":null},{"name":"SK","description":"Slovenčina","isDeprecated":false,"deprecationReason":null},{"name":"SV","description":"Svenska","isDeprecated":false,"deprecationReason":null},{"name":"TH","description":"ภาษาไทย","isDeprecated":false,"deprecationReason":null},{"name":"TR","description":"Türkçe","isDeprecated":false,"deprecationReason":null},{"name":"UK","description":"українська","isDeprecated":false,"deprecationReason":null},{"name":"VI","description":"tiếng Việt","isDeprecated":false,"deprecationReason":null},{"name":"YI","description":"יידיש","isDeprecated":false,"deprecationReason":null},{"name":"ZH_CN","description":"简体中文","isDeprecated":false,"deprecationReason":null},{"name":"ZH_TW","description":"繁體中文","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"VideoTrackState","description":"All possible import states for a video track","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"NONE","description":"Not import exists","isDeprecated":false,"deprecationReason":null},{"name":"IMPORTING","description":"An import is in progress","isDeprecated":false,"deprecationReason":null},{"name":"SUCCESS","description":"An import was successful","isDeprecated":false,"deprecationReason":null},{"name":"FAILURE","description":"An import attempt was unsuccessful","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrackCuesConnection","description":"The connection type for VideoTrackCue.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"VideoTrackCueEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"VideoTrackCue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrackCueEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"VideoTrackCue","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"VideoTrackCue","description":"A single video track caption with timestamp","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Flagging","description":"A report by a user.","fields":[{"name":"details","description":"The detailed reason for the flagging.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"flaggedContent","description":"The content that has been flagged by the user.","args":[],"type":{"kind":"UNION","name":"FlaggableContent","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The general reason for the flagging.","args":[],"type":{"kind":"ENUM","name":"FlaggingKind","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"The user who created the flagging.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"FlaggableContent","description":"Types that can be reported by users","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Message","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null}]},{"kind":"ENUM","name":"FlaggingKind","description":"The bucket for a flagging (general reason).","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROHIBITED_ITEMS","description":"prohibited-items","isDeprecated":false,"deprecationReason":null},{"name":"CHARITY","description":"charity","isDeprecated":false,"deprecationReason":null},{"name":"RESALE","description":"resale","isDeprecated":false,"deprecationReason":null},{"name":"FALSE_CLAIMS","description":"false-claims","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT","description":"misrep-support","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT","description":"not-project","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_VIOLATION","description":"guidelines-violation","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_ISSUES","description":"post-funding-issues","isDeprecated":false,"deprecationReason":null},{"name":"SPAM","description":"spam","isDeprecated":false,"deprecationReason":null},{"name":"ABUSE","description":"abuse","isDeprecated":false,"deprecationReason":null},{"name":"VICES_DRUGS","description":"vices-drugs","isDeprecated":false,"deprecationReason":null},{"name":"VICES_ALCOHOL","description":"vices-alcohol","isDeprecated":false,"deprecationReason":null},{"name":"VICES_WEAPONS","description":"vices-weapons","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_CLAIMS","description":"health-claims","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_REGULATIONS","description":"health-regulations","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_GMOS","description":"health-gmos","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_LIVE_ANIMALS","description":"health-live-animals","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_ENERGY_FOOD_AND_DRINK","description":"health-energy-food-and-drink","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_CONTESTS_COUPONS","description":"financial-contests-coupons","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_SERVICES","description":"financial-services","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_POLITICAL_DONATIONS","description":"financial-political-donations","isDeprecated":false,"deprecationReason":null},{"name":"OFFENSIVE_CONTENT_HATE","description":"offensive-content-hate","isDeprecated":false,"deprecationReason":null},{"name":"OFFENSIVE_CONTENT_PORN","description":"offensive-content-porn","isDeprecated":false,"deprecationReason":null},{"name":"RESELLING","description":"reselling","isDeprecated":false,"deprecationReason":null},{"name":"PLAGIARISM","description":"plagiarism","isDeprecated":false,"deprecationReason":null},{"name":"PROTOTYPE_MISREPRESENTATION","description":"prototype-misrepresentation","isDeprecated":false,"deprecationReason":null},{"name":"UNDISCLOSED_AI_USE","description":"undisclosed-ai-use","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_IMPERSONATION","description":"misrep-support-impersonation","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_OUTSTANDING_FULFILLMENT","description":"misrep-support-outstanding-fulfillment","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_SUSPICIOUS_PLEDGING","description":"misrep-support-suspicious-pledging","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_OTHER","description":"misrep-support-other","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_CHARITY","description":"not-project-charity","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_STUNT_OR_HOAX","description":"not-project-stunt-or-hoax","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_PERSONAL_EXPENSES","description":"not-project-personal-expenses","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_BAREBONES","description":"not-project-barebones","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_OTHER","description":"not-project-other","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_SPAM","description":"guidelines-spam","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_ABUSE","description":"guidelines-abuse","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_REWARD_NOT_AS_DESCRIBED","description":"post-funding-reward-not-as-described","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_REWARD_DELAYED","description":"post-funding-reward-delayed","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_SHIPPED_NEVER_RECEIVED","description":"post-funding-shipped-never-received","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_SELLING_ELSEWHERE","description":"post-funding-creator-selling-elsewhere","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_UNCOMMUNICATIVE","description":"post-funding-creator-uncommunicative","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_INAPPROPRIATE","description":"post-funding-creator-inappropriate","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_SUSPICIOUS_THIRD_PARTY","description":"post-funding-suspicious-third-party","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_ABUSE","description":"comment-abuse","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_DOXXING","description":"comment-doxxing","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_OFFTOPIC","description":"comment-offtopic","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_SPAM","description":"comment-spam","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_ABUSE","description":"backing-abuse","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_DOXXING","description":"backing-doxxing","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_FRAUD","description":"backing-fraud","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_SPAM","description":"backing-spam","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectBackerFriendsConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectFaqConnection","description":"The connection type for ProjectFaq.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectFaqEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectFaq","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectFaqEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"ProjectFaq","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectFaq","description":"Faqs for a project","fields":[{"name":"answer","description":"Faq answer","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When faq was posted","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"position","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"Faq question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When faq was updated","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectCollaboratorConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectCollaboratorEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectCollaboratorEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"The email of a collaborator on a project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"membershipState","description":"The state of a collaborator's membership on a project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorMembershipState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"permissions","description":"The permissions of the collaborator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorPermission","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of a collaborator on a project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CollaboratorMembershipState","description":"State of membership for a collaborator on a project","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"invited","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"active","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"declined","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"inactive","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectRewardConnection","description":"The connection type for Reward.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RewardEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostConnection","description":"The connection type for Postable.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PostableEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Postable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostableEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Postable","description":"Something that can be posted","fields":[{"name":"actions","description":"Actions you can currently perform","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PostActions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":"The author of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorRole","description":"The author role of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PostAuthorRole","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The date the project update was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"excludedRewards","description":"All rewards belonging to a post that were specifically marked by a creator to be excluded from receiving a post notification. This does not, however, include the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fans","description":"Users that have liked this project update.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasExcludedNoRewardTier","description":"True if creator has excluded the no reward tier from receiving a post notification.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"includedRewards","description":"All rewards that were marked to recieve a post notification, excluding the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isLiked","description":"Whether or not the current user has liked this project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPublic","description":"True if marked as a public public post, false if the post is backers only.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isVisible","description":"True if the post's content is visible to the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Query the read field in post abilities instead."},{"name":"likesCount","description":"The number of likes a post has.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nextPost","description":"The next post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"The project update number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinnedAt","description":"The date the project update was pinned.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previousPost","description":"The previous post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project that belongs to post.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedAt","description":"The date the project update was published.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timeLeftToEdit","description":"How much time a creator or collaborator has left to edit the post.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project update's title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The post type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Post","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"The date the project update was last edited.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The project update's URL.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"CreatorInterview","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null}]},{"kind":"ENUM","name":"Post","description":"Post types","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"FreeformPost","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CreatorInterview","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PostAuthorRole","description":"The project roles a project update author can have.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"creator","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"collaborator","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"PostActions","description":"List actions current user can perform on a post","fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edit","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pin","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publish","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"read","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PostState","description":"Possible states for project posts.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"processing","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"published","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"draft","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PostFormat","description":"The possible post types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"freeform_post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_interview","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectTimelineConnection","description":"The connection type for ProjectTimelineEvent.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectTimelineEventEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectTimelineEvent","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectTimelineEventEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"ProjectTimelineEvent","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectTimelineEvent","description":"An event in a project's timeline","fields":[{"name":"data","description":"Entity attached to the event, e.g. project or post","args":[],"type":{"kind":"UNION","name":"TimelineEventData","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timestamp","description":"The time the event occurred","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The event type. Corresponds to a subset of activity types","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"TimelineEventData","description":"Types that can be reported by users","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"CreatorInterview","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null}]},{"kind":"OBJECT","name":"CreatorInterview","description":"A creator interview.","fields":[{"name":"actions","description":"Actions you can currently perform","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PostActions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"answers","description":"The interview answers associated with the creator interview.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"withSkipped","description":"Includes skipped answers","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withBlank","description":"Includes blank answers","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InterviewAnswerConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":"The author of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorRole","description":"The author role of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PostAuthorRole","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canComment","description":"True if the current user can comment (considers restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canCommentSansRestrictions","description":"True if the current user can comment (does not consider restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserRequestUpdate","description":"Whether a user can request an update about this project from the Creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":"List of comments on the commentable","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentsCount","description":"Comment count - defaults to root level comments only","args":[{"name":"withReplies","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The date the project update was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorPrompt","description":"The prompt for the creator interview.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatorPrompt","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"excludedRewards","description":"All rewards belonging to a post that were specifically marked by a creator to be excluded from receiving a post notification. This does not, however, include the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fans","description":"Users that have liked this project update.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasExcludedNoRewardTier","description":"True if creator has excluded the no reward tier from receiving a post notification.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"includedRewards","description":"All rewards that were marked to recieve a post notification, excluding the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isLiked","description":"Whether or not the current user has liked this project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPublic","description":"True if marked as a public public post, false if the post is backers only.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isVisible","description":"True if the post's content is visible to the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Query the read field in post abilities instead."},{"name":"likesCount","description":"The number of likes a post has.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nextPost","description":"The next post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"The project update number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinnedAt","description":"The date the project update was pinned.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previousPost","description":"The previous post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project that belongs to post.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectRelayId","description":"The root project id under which the comment is nested","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedAt","description":"The date the project update was published.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timeLeftToEdit","description":"How much time a creator or collaborator has left to edit the post.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project update's title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The post type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Post","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"The date the project update was last edited.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The project update's URL.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Postable","ofType":null},{"kind":"INTERFACE","name":"Commentable","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatorPrompt","description":"A set of interview questions to be answered.","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"All the questions in a creator prompt.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InterviewQuestionConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The creator prompt title.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewQuestionConnection","description":"The connection type for InterviewQuestion.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"InterviewQuestionEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"InterviewQuestion","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewQuestionEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"InterviewQuestion","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewQuestion","description":"A creator interview question.","fields":[{"name":"answers","description":"All the answers to the question.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InterviewAnswerConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The interview question text.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"category","description":"The interview question category.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InterviewQuestionCategory","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InterviewQuestionCategory","description":"The interview question category.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"learnings","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"blockers","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"inspiration","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"retrospective","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"process","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"InterviewAnswerConnection","description":"The connection type for InterviewAnswer.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"InterviewAnswerEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"InterviewAnswer","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewAnswerEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"InterviewAnswer","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InterviewAnswer","description":"A creator interview answer.","fields":[{"name":"body","description":"The interview answer text.","args":[],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSkipped","description":"True if the creator skipped the associated question.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":"The question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InterviewQuestion","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FreeformPost","description":"A project update.","fields":[{"name":"actions","description":"Actions you can currently perform","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PostActions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":"The author of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorRole","description":"The author role of the project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PostAuthorRole","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The body of the post.","args":[],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"canComment","description":"True if the current user can comment (considers restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canCommentSansRestrictions","description":"True if the current user can comment (does not consider restrictions)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"canUserRequestUpdate","description":"Whether a user can request an update about this project from the Creator","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":"List of comments on the commentable","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CommentConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentsCount","description":"Comment count - defaults to root level comments only","args":[{"name":"withReplies","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The date the project update was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"excludedRewards","description":"All rewards belonging to a post that were specifically marked by a creator to be excluded from receiving a post notification. This does not, however, include the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fans","description":"Users that have liked this project update.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasExcludedNoRewardTier","description":"True if creator has excluded the no reward tier from receiving a post notification.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"includedRewards","description":"All rewards that were marked to recieve a post notification, excluding the no reward tier.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RewardConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isLiked","description":"Whether or not the current user has liked this project update.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPublic","description":"True if marked as a public public post, false if the post is backers only.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isVisible","description":"True if the post's content is visible to the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Query the read field in post abilities instead."},{"name":"likesCount","description":"The number of likes a post has.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nativeImages","description":"The images associated with the post via native ui.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Image","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"nextPost","description":"The next post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"The project update number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinnedAt","description":"The date the project update was pinned.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previousPost","description":"The previous post.","args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project that belongs to post.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectRelayId","description":"The root project id under which the comment is nested","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedAt","description":"The date the project update was published.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timeLeftToEdit","description":"How much time a creator or collaborator has left to edit the post.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project update's title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The post type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Post","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"The date the project update was last edited.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The project update's URL.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Postable","ofType":null},{"kind":"INTERFACE","name":"Commentable","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Image","description":"A post image","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"URL of the image","args":[{"name":"width","description":"The width of the image in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectActions","description":"List actions current user can perform on a project","fields":[{"name":"displayConvertAmount","description":"Whether or not the user is in a state to see currency conversions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shareDraft","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"showExternalSurvey","description":"Whether or not the external survey should be displayed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BackerSurvey","description":"A backer survey that a creator sends","fields":[{"name":"backerQuestions","description":"Project- and reward- level survey questions","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Question","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"backersRemaining","description":"The number of backers who have not answered the survey","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasBackerQuestionsOrItemOptions","description":"Whether the survey has at least one question or option","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasItemQuestionsOrOptions","description":"Whether the survey has at least one item-level question or option","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"intro","description":"An optional introduction to the backer survey.","args":[{"name":"assetWidth","description":"The width of embedded assets in pixels.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"forEditor","description":"Whether to return the intro for the editor.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"HTML","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sentAt","description":"When the survey was sent","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"surveyCompletePercentage","description":"The percentage of surveys that have been completed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FulfillmentStatus","description":"All available fulfillment statuses","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"NO_REWARDS_MADE","description":"No rewards made; default value","isDeprecated":false,"deprecationReason":null},{"name":"SOME_REWARDS_MADE","description":"Some rewards made","isDeprecated":false,"deprecationReason":null},{"name":"ALL_REWARDS_MADE","description":"All rewards made","isDeprecated":false,"deprecationReason":null},{"name":"FULFILLING_SOME_REWARDS","description":"Fulfilling some rewards","isDeprecated":false,"deprecationReason":null},{"name":"FULFILLING_ALL_REWARDS","description":"Fulfilling all rewards","isDeprecated":false,"deprecationReason":null},{"name":"FULFILLMENT_COMPLETE","description":"Fulfillment complete","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreatorToolsPaths","description":null,"fields":[{"name":"advancedAnalyticsPath","description":"The advanced analytics path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerReportPath","description":"The backer report path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backerSurveyPath","description":"The backer survey path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"collaboratorsPath","description":"The project collaborators path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"contactPath","description":"The contact path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorFaqPath","description":"The creator faq path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorHandbookPath","description":"The creator handbook path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboardPath","description":"The project dashboard path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"disbursementsPath","description":"The path to the disbursements page","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"editRewardsProjectPath","description":"The edit rewards project path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fulfillmentDashboardPath","description":"The fulfillment dashboard path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"helpResourcesPath","description":"The help resources path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"messageThreadsPath","description":"The messages thread path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManagerRedeemUrl","description":"The path for backers to access the project's pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeRedemptionPath","description":"The path to access creator pledge redemption tools","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postsDashboardDraftsPath","description":"The draft posts path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"postsDashboardPublishedPath","description":"The published posts path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectBuildPath","description":"The project build path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectPath","description":"The project path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shopifySyncPath","description":"The Shopify sync path path","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PaymentPlan","description":"A payment plan for a pledge over time project","fields":[{"name":"amountIsPledgeOverTimeEligible","description":"Amount is enough to qualify for pledge over time, if project allows","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentIncrements","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PaymentIncrement","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"projectIsPledgeOverTimeAllowed","description":"Whether the project permits pledge over time pledges","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserGroup","description":"A named group of users used for reporting, batch actions, or limiting resource access","fields":[{"name":"accessRules","description":"The rules that give the group access to certain resources","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AccessRule","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The user group name","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"userCount","description":"Total number of users in the group","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"users","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AccessRule","description":"A rule that specifies a resource that a user group can access and how they access it","fields":[{"name":"convertedUserPercentage","description":"What percent backed the secret resource?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resource","description":"The resource this rule gives access to, e.g. a secret reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"SecretResource","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"How the resource is accessed. Either via link or access is restricted to a predefined group","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AccessRuleTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AccessRuleTypeEnum","description":"The type for an access rule","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"link","description":"link","isDeprecated":false,"deprecationReason":null},{"name":"restricted","description":"restricted","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"UNION","name":"SecretResource","description":"Types that can have access rules to make them secret","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Reward","ofType":null}]},{"kind":"ENUM","name":"SqlFilterOperator","description":"Operators for SQL filters","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"OR","description":"Logical OR","isDeprecated":false,"deprecationReason":null},{"name":"AND","description":"Logical AND","isDeprecated":false,"deprecationReason":null},{"name":"NOT","description":"Logical NOT","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SkuCount","description":"SKU data with count of orders with this SKU","fields":[{"name":"count","description":"The number of orders that include this SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The unique identifier for the SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemName","description":"The name of the item associated with the SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optionValues","description":"The option values associated with this SKU","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"sentAt","description":"The date and time when the survey was sent","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sku","description":"The SKU value","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeManager","description":"Represents a project's pledge manager","fields":[{"name":"acceptsNewBackers","description":"Whether the pledge manager accepts new backers or not","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"notes","description":"Notes associated with the pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"optedOut","description":"Whether the creator opted out of the pledge manager.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The associated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reviewAt","description":"The date by which the PM will be reviewed (Date of review submission + 5 business days)","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reviewer","description":"The user assigned to review this pledge manager","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The pledge manager's state, e.g. draft, submitted, approved, denied, etc.","args":[],"type":{"kind":"ENUM","name":"PledgeManagerStateEnum","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tariffSurchargesEnabled","description":"Whether the pledge manager can be used to charge for tariffs.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PledgeManagerStateEnum","description":"The state of the pledge manager, e.g. draft, submitted, approved, denied.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"draft","description":"draft","isDeprecated":false,"deprecationReason":null},{"name":"submitted","description":"submitted","isDeprecated":false,"deprecationReason":null},{"name":"approved","description":"approved","isDeprecated":false,"deprecationReason":null},{"name":"denied","description":"denied","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"StockLocation","description":"Location from which a project fulfills","fields":[{"name":"address","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stockLocationMappings","description":"Places this stock location ships to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StockLocationMapping","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"StockLocationMapping","description":"A place that a project stock location ships to","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stockLocation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StockLocation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CheckoutWave","description":"Represents the window during which backers can redeem their backing","fields":[{"name":"active","description":"Whether the wave is currently active","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"endable","description":"Whether the wave can be closed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"endableAt","description":"When the wave can be closed","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ended","description":"Whether the wave has ended","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"endsAt","description":"The end date of the wave","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The associated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reviewCollectedFundsAt","description":"The date when the creator can review the collected funds from PM","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startsAt","description":"The start date of the wave","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShippingConfig","description":"A project's shipping configuration","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemWeightCompletionStats","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemWeightCompletionStats","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shippingType","description":"How are shipping rates configured? Either flat rate or weight based","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ShippingTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unit","description":"If shipping is weight based, a unit must be provided, e.g. oz or kg","args":[],"type":{"kind":"ENUM","name":"ShippingUnitEnum","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ShippingTypeEnum","description":"The type of shipping set up, either flat rate or weight based","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"weight_based","description":"weight_based","isDeprecated":false,"deprecationReason":null},{"name":"flat_rate","description":"flat_rate","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ShippingUnitEnum","description":"The units that weights will be in, for weight based shipping type","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"oz","description":"oz","isDeprecated":false,"deprecationReason":null},{"name":"kg","description":"kg","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ItemWeightCompletionStats","description":"Stats related to configuring weights for items","fields":[{"name":"allItemsConfigured","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"excludedCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemsMissingWeightsCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"itemsWithWeightCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShippingZone","description":"A shipping zone configured for a project","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRoot","description":"Whether it has rest of the world location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":"The locations included in the zone.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Optional name for the shipping zone","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project the shipping zone belongs","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"weightRanges","description":"Weight ranges with cost, relevant to the zone.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"WeightRange","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"WeightRange","description":"A min and max weight range with associated cost","fields":[{"name":"cost","description":"The cost for this weight range.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"costFormatted","description":"The cost for this weight range, formatted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":"The max of the weight range (optional)","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":"The min of the weight range","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LocationVatNumber","description":null,"fields":[{"name":"lastUsed","description":"The creator's last used vat number for this location","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locationId","description":"The id of the location associated with a given VAT number.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"locationName","description":"The name of the location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"VatConfigLocationEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"optOut","description":"Whether the creator has opted out of VAT collection for this location.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vatNumber","description":"The unique tax identifier for a given location.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"VatConfigLocationEnum","description":"The possible locations for a VatConfig.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"UK","description":"United Kingdom","isDeprecated":false,"deprecationReason":null},{"name":"EU","description":"European Union","isDeprecated":false,"deprecationReason":null},{"name":"AT","description":"Austria","isDeprecated":false,"deprecationReason":null},{"name":"BE","description":"Belgium","isDeprecated":false,"deprecationReason":null},{"name":"BG","description":"Bulgaria","isDeprecated":false,"deprecationReason":null},{"name":"HR","description":"Croatia","isDeprecated":false,"deprecationReason":null},{"name":"CY","description":"Cyprus","isDeprecated":false,"deprecationReason":null},{"name":"CZ","description":"Czech Republic","isDeprecated":false,"deprecationReason":null},{"name":"DK","description":"Denmark","isDeprecated":false,"deprecationReason":null},{"name":"EE","description":"Estonia","isDeprecated":false,"deprecationReason":null},{"name":"FI","description":"Finland","isDeprecated":false,"deprecationReason":null},{"name":"FR","description":"France","isDeprecated":false,"deprecationReason":null},{"name":"DE","description":"Germany","isDeprecated":false,"deprecationReason":null},{"name":"GR","description":"Greece","isDeprecated":false,"deprecationReason":null},{"name":"HU","description":"Hungary","isDeprecated":false,"deprecationReason":null},{"name":"IE","description":"Ireland","isDeprecated":false,"deprecationReason":null},{"name":"IT","description":"Italy","isDeprecated":false,"deprecationReason":null},{"name":"LV","description":"Latvia","isDeprecated":false,"deprecationReason":null},{"name":"LT","description":"Lithuania","isDeprecated":false,"deprecationReason":null},{"name":"LU","description":"Luxembourg","isDeprecated":false,"deprecationReason":null},{"name":"MT","description":"Malta","isDeprecated":false,"deprecationReason":null},{"name":"NL","description":"Netherlands","isDeprecated":false,"deprecationReason":null},{"name":"PL","description":"Poland","isDeprecated":false,"deprecationReason":null},{"name":"PT","description":"Portugal","isDeprecated":false,"deprecationReason":null},{"name":"RO","description":"Romania","isDeprecated":false,"deprecationReason":null},{"name":"SK","description":"Slovakia","isDeprecated":false,"deprecationReason":null},{"name":"SI","description":"Slovenia","isDeprecated":false,"deprecationReason":null},{"name":"ES","description":"Spain","isDeprecated":false,"deprecationReason":null},{"name":"SE","description":"Sweden","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ShopifyVariant","description":"Collection of information relating to Shopify item variants","fields":[{"name":"price","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"productHandle","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"productId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"productTitle","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sku","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"variantId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"variantTitle","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserBackingsConnection","description":"The connection type for Backing.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"BackingEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":true,"deprecationReason":"Please use backingsCount instead."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BackingEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserCreatedProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderDirection","description":"Ordering direction values","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectsConnectionWithTotalCount","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"recommendationsEnabled","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refTag","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserActiveProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserInvitedProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserOrganizationsConnection","description":"The connection type for Organization.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":"An organization","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"An organization's name","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"An organization's slug","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrganizationMembershipState","description":"Possible states for an organization membership","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DENIED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ACTIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INACTIVE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UserCuratedPagesConnection","description":"The connection type for CuratedPage.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CuratedPageEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CuratedPage","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CuratedPageEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"CuratedPage","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CuratedPage","description":"A curated page","fields":[{"name":"description","description":"A curated page's description.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"A curated page's unique URL identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"A curated page's title.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserFollowersConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserFollowingConnection","description":"The connection type for User.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"UserEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserSavedProjectsConnection","description":"The connection type for Project.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserConversationsConnection","description":"The connection type for Conversation.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ConversationEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Conversation","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConversationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Conversation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MailboxType","description":"A mailbox","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ALL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INBOX","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SENT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UNREAD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ARCHIVE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SPAM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SurveyResponsesConnection","description":"The connection type for SurveyResponse.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SurveyResponseEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SurveyResponse","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SurveyResponseEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"SurveyResponse","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AddressConnection","description":"The connection type for Address.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AddressEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AddressEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Notification","description":"An object containing a user's notifications.","fields":[{"name":"email","description":"Are email notifications enabled for this topic","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"frequency","description":"The frequency of the notification","args":[],"type":{"kind":"ENUM","name":"UserNotificationFrequency","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The ID of the Notification","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mobile","description":"Are mobile notifications enabled for this topic","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectId","description":"The ID of the associated Project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectName","description":"The name of the associated Project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"topic","description":"The topic of the notification","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationTopic","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserNotificationTopic","description":"User notification topics","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"messages","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"backings","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_digest","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"updates","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"follower","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"friend_activity","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"friend_signup","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"comments","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"comment_replies","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"creator_edu","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"marketing_update","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"project_launch","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"UserNotificationFrequency","description":"User notification frequencies","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"once_a_day","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"twice_a_day","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"NewsletterSubscriptions","description":"A subscription a user has to a particular newsletter.","fields":[{"name":"adultNewsletter","description":"The subscription to the AdultNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"alumniNewsletter","description":"The subscription to the AlumniNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"artsCultureNewsletter","description":"The subscription to the ArtsCultureNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"comicsNewsletter","description":"The subscription to the ComicsNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creatorNewsletter","description":"The subscription to the CreatorNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"filmNewsletter","description":"The subscription to the FilmNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"gamesNewsletter","description":"The subscription to the GamesNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"happeningNewsletter","description":"The subscription to the HappeningNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inventNewsletter","description":"The subscription to the InventNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"learningLabNewsletter","description":"The subscription to the LearningLabNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"musicNewsletter","description":"The subscription to the MusicNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectsYoullLoveNewsletter","description":"The subscription to the ProjectsYoullLoveNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"promoNewsletter","description":"The subscription to the PromoNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishingNewsletter","description":"The subscription to the PublishingNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"weeklyNewsletter","description":"The subscription to the WeeklyNewsletter newsletter","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserRestriction","description":"A user's restrictions","fields":[{"name":"releaseAt","description":"Date when the restriction will be lifted. If null, the restriction is indefinite.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"restriction","description":"Type of restriction a user has","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserRestrictionKind","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserRestrictionKind","description":"Various restriction states, e.g. messaging, commenting","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"messaging","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"commenting","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledging","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"submitting","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"edit_spotlight_pages","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"phone","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prelaunch_early","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RecentSearch","description":"Recent search.","fields":[{"name":"body","description":"Body of the recent search","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"ID of the recent search","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastSearchedAt","description":"Timestamp of the recent search","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Name of the recent search","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UsdType","description":"Informs how USD currencies should be rendered, based on user's location","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"domestic","description":"The user has chosen USD as their currency and they are in the US","isDeprecated":false,"deprecationReason":null},{"name":"international","description":"The user has chosen USD as their currency but they are not in the US","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"LocationsConnection","description":"The connection type for Location.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"LocationEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Location","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LocationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Checkout","description":"Intermediary set of changes that have yet to be applied to a backing","fields":[{"name":"action","description":"The action that the backer is attempting to complete with this checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CheckoutAction","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"addOns","description":"The addons that the backer has chosen","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardTotalCountConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backing","description":"The backing that the checkout is modifying.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"convertedTotal","description":"Desired amount backer wishes to pledge to the project, including the shipping amount, converted to the backer’s chosen currency","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedShippingTotalMax","description":"Estimated shipping maximum for the reward/addons chosen by the backer for their location","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"estimatedShippingTotalMin","description":"Estimated shipping minimum for the reward/addons chosen by the backer for their location","args":[],"type":{"kind":"OBJECT","name":"Money","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"failedStateReason","description":"The translated reason that a checkout might have failed","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"guest","description":"Is true when the checkout was created by a guest account","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isPledgeOverTimeEligible","description":"Whether this checkout should be given the option to pledge over time","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRacing","description":"Is true when more than one backer is checking out a limited/scarce reward at once","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSepaEligible","description":"Whether the project can accept a pledge with SEPA account as the payment source","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isValidForOnSessionCheckout","description":"Checks whether the checkout is valid prior to charging the user's card.","args":[{"name":"stripePaymentMethodId","description":"the stripe payment method id, starting with either `card_` or `pm_` (the same id passed to stripe)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentIntentClientSecret","description":"the client_secret returned by createPaymentIntent, starts with `pi_` (the same secret passed to stripe)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Validation","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"limitedRewardClaimedUntil","description":"If the checkout contains a limited reward, returns an ISO8601 date for when the claim on the reward is expired","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeTotal","description":"Desired amount backer wishes to pledge to the project, excluding the shipping amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"redirectUrl","description":"The URL to redirect to on a successful checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The reward the backer is expecting","args":[],"type":{"kind":"OBJECT","name":"Reward","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingLocation","description":"Where the user is based.","args":[],"type":{"kind":"OBJECT","name":"Location","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shippingTotal","description":"Shipping amount for the reward chosen by the backer for their location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The current state of the checkout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CheckoutState","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stripeOnSessionPaymentRedirectUrl","description":"The full URL to redirect to after an on_session payment via Stripe","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stripePaymentSetupRedirectUrl","description":"The full URL to redirect to after payment setup via Stripe","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"Desired amount backer wishes to pledge to the project, including the shipping amount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Money","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CheckoutState","description":"All available states for a checkout","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AUTHORIZING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VERIFYING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SUCCESSFUL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CheckoutAction","description":"All actions a user may attempt to complete with a checkout","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PLEDGE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LATE_PLEDGE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ADJUSTMENT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SOURCE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"REAUTH","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AUTHENTICATE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Claims","description":"Detect claims in text.","fields":[{"name":"matches","description":"The matched claims found in the text.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ClaimMatches","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ClaimMatches","description":"Token, match_type, start, and end position of claims language.","fields":[{"name":"end","description":"The end position of the token in the source text","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"matchType","description":"The matching strategy used to find the token (either 'POS' or 'regex').","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"start","description":"The start position of the token in the source text","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"token","description":"Token/phrase of matched claims language.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"GoalBuckets","description":"Buckets of project goals","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"BUCKET_0","description":"Range from 0 to 1000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_1","description":"Range from 1000 to 10000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_2","description":"Range from 10000 to 100000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_3","description":"Range from 100000 to 1000000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_4","description":"Range from 1000000 to Infinity USD","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PledgedBuckets","description":"Buckets of amount pledged","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"BUCKET_0","description":"Range from 0 to 1000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_1","description":"Range from 1000 to 10000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_2","description":"Range from 10000 to 100000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_3","description":"Range from 100000 to 1000000 USD","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_4","description":"Range from 1000000 to Infinity USD","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RaisedBuckets","description":"Buckets of percentage raised","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"BUCKET_0","description":"Range from 0 to 75 percent","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_1","description":"Range from 75 to 100 percent","isDeprecated":false,"deprecationReason":null},{"name":"BUCKET_2","description":"Range from 100 to Infinity percent","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RecommendationsModel","description":"What model to use for project recommendations","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LSI","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LDA","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"RecommendationsSource","description":"What source to use for project recommendations","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROJECT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BACKINGS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"WATCHES","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TASTE_PROFILE_LIKES","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TASTE_PROFILE_DISLIKES","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ProjectSort","description":"What order to sort projects in","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"MAGIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"POPULARITY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NEWEST","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"END_DATE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MOST_FUNDED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MOST_BACKED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DISTANCE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UploadLimit","description":"A maximum valid filesize for an upload.","fields":[{"name":"contentTypes","description":"An array of the valid content types for an upload of this type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fileSize","description":"Maximum file size in the provided units.","args":[{"name":"unit","description":"The unit to return the file size in.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UploadLimitFileSizeUnit","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UploadLimitFileSizeUnit","description":"The unit of file size the return the upload limit in.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"BYTES","description":"Bytes.","isDeprecated":false,"deprecationReason":null},{"name":"KILOBYTES","description":"Kilobytes.","isDeprecated":false,"deprecationReason":null},{"name":"MEGABYTES","description":"Megabytes.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"UploadLimitFiletype","description":"The type of file we are checking the upload limit of.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASSET_VIDEO","description":"An asset video file.","isDeprecated":false,"deprecationReason":null},{"name":"AUDIO","description":"An audio file.","isDeprecated":false,"deprecationReason":null},{"name":"PHOTO","description":"A photo file.","isDeprecated":false,"deprecationReason":null},{"name":"SMALLER_VIDEO","description":"A smaller video file.","isDeprecated":false,"deprecationReason":null},{"name":"SOUND","description":"A sound file","isDeprecated":false,"deprecationReason":null},{"name":"VIDEO","description":"A video file.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPageForAdminConnection","description":"The connection type for EditorialPageForAdmin.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPageForAdminEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPageForAdmin","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPageForAdminEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"EditorialPageForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPageForAdmin","description":"An Editorial Page fully loaded with admin only fields","fields":[{"name":"attachableAssoc","description":"Rich Text Editor property for attachableAssoc.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"attachableId","description":"Rich Text Editor property for attachableId.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When this page was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"editor","description":"This page's editor.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"flatSlug","description":"(Deprecated) Slug where `/` is replaced by `-`. Used for ref tag and admin routing.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"identifier","description":"An identifier for the page. Used for ref tags.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastRevision","description":"Last revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lookerDashboardUrl","description":"A link to the Looker Dashboard for this page, if any","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The page name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageType","description":"The page type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialPageType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedRevision","description":"Published revision","args":[],"type":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revisions","description":"The revisions in reverse chronological order.","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionForAdminConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The slug of this page. Can include `/'.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stats","description":"Stats for the past 30 days","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPageStats","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When this page was last updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialPageType","description":"Editorial page types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"article","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"resource","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"prompt","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"international","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"category","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevisionForAdmin","description":"An Editorial Page Revision fully loaded with admin attributes","fields":[{"name":"author","description":"The person who created this revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"When this editorial layout was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"metadata","description":"The page metadata","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionMetadata","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"modules","description":"The modules for the editorial revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Editorial","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"page","description":"The page that this revision belongs to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPage","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"published","description":"Is the editorial revision published?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedAt","description":"When the editorial revision was published.","args":[],"type":{"kind":"SCALAR","name":"DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"publisher","description":"The person who published this revision","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sequence","description":"The sequence number for this revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"translationStatus","description":"Counts of translated / total strings for each locale","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialTranslationStatus","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When this editorial layout was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"uuid","description":"The revision uuid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPage","description":"An Editorial Page","fields":[{"name":"createdAt","description":"When this page was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The page name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageType","description":"The page type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialPageType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publishedRevision","description":"The currently published revision. Can be null.","args":[],"type":{"kind":"OBJECT","name":"EditorialRevision","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The slug of this page. Can include `/'.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"When this page was last updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevision","description":"An Editorial Page Revision","fields":[{"name":"metadata","description":"The page metadata","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionMetadata","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"modules","description":"The modules for the editorial revision","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Editorial","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"page","description":"The page that this revision belongs to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialPage","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"uuid","description":"The revision uuid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevisionMetadata","description":null,"fields":[{"name":"description","description":"The revision description","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ogImage","description":"The revision og_image","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The revision title","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Editorial","description":"Editorial tool to create and modify content modules on discovery pages","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"ProjectCollection","ofType":null},{"kind":"OBJECT","name":"NewsletterSignUp","ofType":null},{"kind":"OBJECT","name":"PromoCollection","ofType":null},{"kind":"OBJECT","name":"NewsCollection","ofType":null},{"kind":"OBJECT","name":"FeaturedProjectCollection","ofType":null},{"kind":"OBJECT","name":"SingleProjectContainer","ofType":null},{"kind":"OBJECT","name":"BespokeComponent","ofType":null},{"kind":"OBJECT","name":"Header","ofType":null},{"kind":"OBJECT","name":"MastheadImage","ofType":null},{"kind":"OBJECT","name":"ExploreSubcategories","ofType":null},{"kind":"OBJECT","name":"Article","ofType":null},{"kind":"OBJECT","name":"ShortText","ofType":null},{"kind":"OBJECT","name":"EditorialRichText","ofType":null},{"kind":"OBJECT","name":"SurveyEmbed","ofType":null}]},{"kind":"OBJECT","name":"ProjectCollection","description":"A curated set of projects based off a search query","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"The projects to display in this collection","args":[{"name":"count","description":"The number of projects needed for this collection","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"4"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"The raw search query to populate the project collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this project collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"trackingLabel","description":"The label to track this project collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url that is linked to the project collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"NewsletterSignUp","description":"Sign up for a newsletter.","fields":[{"name":"description","description":"Description of the newsletter","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"newsletterSource","description":"The source that should be recorded for the newsletter signup","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"newsletterType","description":"ID of the newsletter","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"signupHeadline","description":"Headline in the newsletter signup","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"Name of the newsletter","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PromoCollection","description":"A curated set of promos","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":"Layout for this promo collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialPromoCollectionLayout","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"maxFeaturedItems","description":"Maximum number of items to display","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"promos","description":"The promos in this collection","args":[{"name":"all","description":"Request all the items","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Promo","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"soloItemFullWidth","description":"True if single item should be displayed full width","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"theme","description":"Visual theme for this promo collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialPromoCollectionTheme","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"Title for this collection. Can be blank.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialPromoCollectionTheme","description":"Visual themes for Editorial Promo Collections","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROMO","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FLEX","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"EditorialPromoCollectionLayout","description":"Layouts for Editorial Promo Collections","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"TWO_COLUMNS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"THREE_COLUMNS","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Promo","description":"A promotional image used in a layout.","fields":[{"name":"audioUrl","description":"The url for the audio player.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"backgroundColor","description":"The background color within the promo","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"cta","description":"Promo call to action","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The details of the promo module","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"featuredAt","description":"When this promo should be featured","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"The url for the background image of the promo module.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"language","description":"The primary language of the promo module.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this promo module.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"trackingLabel","description":"The label to track this promo module","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url that is linked to the promo module.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"NewsCollection","description":"A curated set of news articles","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"newsItems","description":"The news items in this collection","args":[{"name":"limit","description":"The number of news items to display in this collection","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"3"},{"name":"all","description":"Request all the items","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"NewsItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this news collection","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"NewsItem","description":"A curated news article used in an editorial layout.","fields":[{"name":"attribution","description":"The byline of this news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The localized description of this news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"featuredAt","description":"When this news item should be featured","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"The url for the background image of the news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"language","description":"The primary language of the news item. `null` if available in all languages.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mediaType","description":"The type of content of this news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"source","description":"The source or author of the news article.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this news item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url that links to the news article.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FeaturedProjectCollection","description":"A set of projects that can be scheduled to be featured","fields":[{"name":"collectionQueryOverride","description":"The project collection query used to generate the featured project's project list","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentlyFeaturedProject","description":"The currently featured project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FeaturedProjectItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"featuredProjectItems","description":"The featured project items in this collection","args":[{"name":"limit","description":"The number of featured project items to display in this collection","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"all","description":"Request all the items","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"FeaturedProjectItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectList","description":"A recommended collection of projects, optionally controlled by collectionQueryOverride","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectCollection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of the featured project section. (eg: 'Featured project')","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FeaturedProjectItem","description":"A curated project to be featured in an editorial layout.","fields":[{"name":"description","description":"The project description or, if specified, the project description override","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"featuredAt","description":"When this featured project item should be featured","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageOverride","description":"If specified, will override the image of the associated project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project that is featured","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectId","description":"The project id (pid) of the featured project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sectionUrl","description":"The see more url for this featured section","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project title or, if specified, the project title override","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SingleProjectContainer","description":"Projects that can be shown in article","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"selectedProject","description":"The currently selected project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SingleProjectItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"singleProjectItems","description":"The selected project items in this collection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SingleProjectItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SingleProjectItem","description":"A selected project to be shown in an editorial layout.","fields":[{"name":"description","description":"The project description or, if specified, the project description override","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageOverride","description":"If specified, will override the image of the associated project","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project that is featured","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectId","description":"The project id (pid) of the featured project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sectionUrl","description":"The see more url for this featured section","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The project title or, if specified, the project title override","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BespokeComponent","description":"Maps directly to a specialty built React component","fields":[{"name":"component","description":"Exact name of the React component (used to lookup the component)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"language","description":"Language for which to display the React component","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"props","description":"Data properties to be passed down to the React component","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Header","description":"A header for an editorial layout.","fields":[{"name":"blurb","description":"The localized blurb of this header","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"categories","description":"The categories linked to this header","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Category","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"links","description":"The links of this header","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"HeaderLink","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The localized title of this header","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"HeaderLink","description":"A link of a header for an editorial layout.","fields":[{"name":"content","description":"The localized text content of this link","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"openInNewTab","description":"True if the link should open a new tab when clicked on","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The url this link points to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MastheadImage","description":"A masthead image with text for an editorial layout.","fields":[{"name":"header","description":"The header text overlaying the masthead image.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"imageUrl","description":"The url for the backgrorund image of the masthead.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subheader","description":"The smaller subheader text overlaying the masthead image.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ExploreSubcategories","description":"Top subcategories","fields":[{"name":"category","description":"The root category","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Category","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"categoryId","description":"The root category database id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subcategories","description":"Top subcategories ordered by number of live projects descending","args":[{"name":"count","description":"The maximum number of subcategories to return","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"10"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ExploreSubcategory","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ExploreSubcategory","description":"A subcategory for ExploreSubcategories","fields":[{"name":"categoryId","description":"The category database id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The subcategory name for the current language","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":"The projects to display in this collection","args":[{"name":"count","description":"The number of projects needed for this collection","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"10"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Article","description":"An article block for Editorial pages","fields":[{"name":"attachableAssoc","description":"AdminUI: Rich Text Editor property for attachableAssoc.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"attachableId","description":"AdminUI: Rich Text Editor property for attachableId.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The html body of the article.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"byline","description":"The author of the article. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"displayTopByline","description":"Determines if the byline should be displayed at the top of the article","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"publicationDate","description":"The date this article is published on. This date is only informative and won't affect module visibility.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subtitle","description":"The subtitle of the article. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of the article. Can be an empty string.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ShortText","description":"An Short Text block for Editorial pages","fields":[{"name":"backgroundColor","description":"Hex value of the background color.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The plain text body of the Short Text. May contain line breaks.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ctaText","description":"The text of the CTA. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ctaUrl","description":"The url the CTA points to. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ruleColor","description":"Hex value of the rule color.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subtitle","description":"The subtitle of the Short Text. Can be an empty string.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of the Short Text. Can be an empty string.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRichText","description":"A Rich Text block for Editorial pages","fields":[{"name":"attachableAssoc","description":"AdminUI: Rich Text Editor property for attachableAssoc.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"attachableId","description":"AdminUI: Rich Text Editor property for attachableId.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The html body of the rich text module.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SurveyEmbed","description":"An embedded iframe containing a Survey","fields":[{"name":"embedUrl","description":"The url of the survey being embedded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"height","description":"Height of the embedded iframe","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialTranslationStatus","description":null,"fields":[{"name":"locale","description":"The language","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialTranslationStatusLocale","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"Total number of strings","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"translated","description":"Number of strings translated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialTranslationStatusLocale","description":"Editorial locale","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"de","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"es","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"fr","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"it","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ja","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"zh","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevisionForAdminConnection","description":"The connection type for EditorialRevisionForAdmin.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionForAdminEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialRevisionForAdminEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"EditorialRevisionForAdmin","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialPageStats","description":null,"fields":[{"name":"backingsCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"backingsUsd","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageViews","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projectClicks","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialPageSortField","description":"Field you can sort Editorial Pages by","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"NAME","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CREATED_AT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UPDATED_AT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SLUG","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"EditorialPageSortDirection","description":"Direction to sort Editorial Pages","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"EditorialConnection","description":"The connection type for Editorial.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"EditorialEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"UNION","name":"Editorial","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EditorialEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"UNION","name":"Editorial","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FundingCurrency","description":"Information about a currency a creator can fund a project in","fields":[{"name":"currency","description":"Currency code","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CurrencyCode","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"decimal","description":"Does the currency use decimals (not zero-decimal)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"maxGoal","description":"Maximum amount a creator can specify for a project goal","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"maxPledge","description":"Maximum amount a backer can specify for a pledge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"minPledge","description":"Minimum amount a backer can specify for a pledge","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagsConnection","description":"The connection type for Tag.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"TagEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Tag","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"QuizProjectsConnection","description":"The connection type for QuizProject.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"QuizProjectEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"QuizProject","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"QuizProjectEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"QuizProject","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"QuizProject","description":"An editorialized quiz project for the taste profile quiz.","fields":[{"name":"editorializedBlurb","description":"The editorialized version of the project blurb","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"likeableAttributes","description":"All the likeable attributes for a quiz project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"LikeableAttribute","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LikeableAttribute","description":"An attribute about a quiz project that a user can select in the taste profile quiz.","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"The text of the attribute.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"KsrFact","description":"A Kickstarter fact","fields":[{"name":"contributor","description":"Fact contributor","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"date","description":"Fact date","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fact","description":"Kickstarter fact","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectsOverview","description":"Provides an overview of pledge projects","fields":[{"name":"filterOption","description":"List of sort options","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSet","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"pledges","description":"List of pledged projects","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PledgedProjectsOverviewPledgesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sortOptions","description":"List of sort options","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSet","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgedProjectsOverviewPledgesConnection","description":"The connection type for PledgeProjectOverviewItem.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectOverviewItemEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectOverviewItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectOverviewItemEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PledgeProjectOverviewItem","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectOverviewItem","description":"Pledged projects in pledge projects overview","fields":[{"name":"backing","description":"backing details","args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"flags","description":"tags","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgedProjectsOverviewPledgeFlags","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"tierType","description":"tier type","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"webviewUrl","description":"webview url for survey responses or pledge management","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgedProjectsOverviewPledgeFlags","description":"Flags for pledge in projects overview dashboard","fields":[{"name":"icon","description":"Flag icon type, e.g. time, alert, etc.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":"Translated flag message","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"Flag type, e.g. warning, alert, etc.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSet","description":"sort option group","fields":[{"name":"items","description":"List of sort option groups","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSetItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"Title of the sort option group","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PledgeProjectsOverviewOptionSetItem","description":"sort option group","fields":[{"name":"label","description":"Label for sort option","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"Value for sort option","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PledgeProjectsOverviewSort","description":"Sort types for PledgedProjectsOverview dashboard.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"TIER1_ADDRESS_LOCKING_SOON","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TIER1_PAYMENT_FAILED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TIER1_PAYMENT_AUTHENTICATION_REQUIRED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TIER1_OPEN_SURVEY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PLEDGE_MANAGEMENT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SURVEY_SUBMITTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PLEDGE_COLLECTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ADDRESS_CONFIRMED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AWAITING_REWARD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"REWARD_RECEIVED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BackingsDashboardSortOptions","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"RELEVANCY","description":"Sort by relevancy","isDeprecated":false,"deprecationReason":null},{"name":"OLDEST_FIRST","description":"Sort by oldest first","isDeprecated":false,"deprecationReason":null},{"name":"NEWEST_FIRST","description":"Sort by newest first","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PledgeProjectsOverviewFilterInput","description":null,"fields":null,"inputFields":[{"name":"rewardStatuses","description":"Filter by one or more reward statuses.","type":{"kind":"ENUM","name":"PledgeProjectsOverviewRewardStatusFilter","ofType":null},"defaultValue":null},{"name":"pledgeDate","description":"Filter by one or more years.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PledgeProjectsOverviewRewardStatusFilter","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"All","description":"All reward types","isDeprecated":false,"deprecationReason":null},{"name":"AWAITING_REWARD","description":"Pledges awaiting rewards for","isDeprecated":false,"deprecationReason":null},{"name":"RECEIVED","description":"pledges reward received","isDeprecated":false,"deprecationReason":null},{"name":"NO_REWARD","description":"Pledges with no rewards","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"PledgeNotifications","description":"Provides pledge notifications (action-required pledges)","fields":[{"name":"pledges","description":"List of action-required pledges","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PledgedProjectsOverviewPledgesConnection","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SavedSearchSegment","description":"Saved search segment.","fields":[{"name":"id","description":"ID of the saved search segment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"segmentBody","description":"Body of the saved search segment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"segmentName","description":"Name of the saved search segment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"segmentOrigin","description":"Origin of the saved search segment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ValidateDigitalResource","description":"Validates a digital resource CSV file","fields":[{"name":"duplicateResources","description":"List of duplicate resources","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"usedResources","description":"List of used resources","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"valid","description":"Are there enough provide resources for the selected amount of backings","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"validResources","description":"Count of resources that can be imported","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BackgroundJobProgress","description":"Progress of tracking number processing","fields":[{"name":"completed","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BackgroundJobProgressStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BackgroundJobProgressStatusEnum","description":"Status of background job progress","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROCESSING","description":"Job is processing","isDeprecated":false,"deprecationReason":null},{"name":"COMPLETED","description":"Job is completed","isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":"Job has failed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"OptOutReason","description":"Information about why creators would opt out of using our pledge manager","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"followUpQuestion","description":"A follow-up question for the selected reason","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"key","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OptOutReasonEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"options","description":"The options associated with the follow-up question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"placeholder","description":"Placeholder text for the follow-up question","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"prompt","description":"Whether or not the reason has a follow-up question","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"secondaryFollowUp","description":"An additional follow-up question for the selected reason","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"secondaryPlaceholder","description":"Placeholder text for the secondary follow-up question","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OptOutReasonEnum","description":"Reasons for opting out of using our pledge manager","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"missing_features","description":"missing_features","isDeprecated":false,"deprecationReason":null},{"name":"lack_of_confidence","description":"lack_of_confidence","isDeprecated":false,"deprecationReason":null},{"name":"ineligible","description":"ineligible","isDeprecated":false,"deprecationReason":null},{"name":"committed_to_another_pm","description":"committed_to_another_pm","isDeprecated":false,"deprecationReason":null},{"name":"other","description":"other","isDeprecated":false,"deprecationReason":null},{"name":"legacy","description":"legacy","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProjectInvestigationConnection","description":"The connection type for ProjectInvestigation.","fields":[{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectInvestigationEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProjectInvestigation","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectInvestigationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"ProjectInvestigation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectInvestigation","description":null,"fields":[{"name":"creatorHrcTier","description":"The project's creator HRC tier.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"flaggingsCount","description":"The number of flaggings in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"openZendeskTicketsCount","description":"The number of open Zendesk tickets in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reportCategories","description":"The categories of reports in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reportStatuses","description":"The statuses of reports in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reportsCount","description":"The number of reports in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"zendeskTicketsCount","description":"The number of Zendesk tickets in the project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"TaskState","description":"Task states","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"open","description":"Open task","isDeprecated":false,"deprecationReason":null},{"name":"issue","description":"Completed task, marked as issue","isDeprecated":false,"deprecationReason":null},{"name":"nonissue","description":"Completed task, marked as nonissue","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"TaskProjectReportCategory","description":"Project report task categories.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"vices_drugs","description":"Category: vices-drugs","isDeprecated":false,"deprecationReason":null},{"name":"vices_alcohol","description":"Category: vices-alcohol","isDeprecated":false,"deprecationReason":null},{"name":"vices_weapons","description":"Category: vices-weapons","isDeprecated":false,"deprecationReason":null},{"name":"health_claims","description":"Category: health-claims","isDeprecated":false,"deprecationReason":null},{"name":"health_regulations","description":"Category: health-regulations","isDeprecated":false,"deprecationReason":null},{"name":"health_gmos","description":"Category: health-gmos","isDeprecated":false,"deprecationReason":null},{"name":"health_live_animals","description":"Category: health-live-animals","isDeprecated":false,"deprecationReason":null},{"name":"health_energy_food_and_drink","description":"Category: health-energy-food-and-drink","isDeprecated":false,"deprecationReason":null},{"name":"financial_contests_coupons","description":"Category: financial-contests-coupons","isDeprecated":false,"deprecationReason":null},{"name":"financial_services","description":"Category: financial-services","isDeprecated":false,"deprecationReason":null},{"name":"financial_political_donations","description":"Category: financial-political-donations","isDeprecated":false,"deprecationReason":null},{"name":"offensive_content_hate","description":"Category: offensive-content-hate","isDeprecated":false,"deprecationReason":null},{"name":"offensive_content_porn","description":"Category: offensive-content-porn","isDeprecated":false,"deprecationReason":null},{"name":"prohibited_items","description":"Category: prohibited-items","isDeprecated":false,"deprecationReason":null},{"name":"reselling","description":"Category: reselling","isDeprecated":false,"deprecationReason":null},{"name":"plagiarism","description":"Category: plagiarism","isDeprecated":false,"deprecationReason":null},{"name":"resale","description":"Category: resale","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support_impersonation","description":"Category: misrep-support-impersonation","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support_outstanding_fulfillment","description":"Category: misrep-support-outstanding-fulfillment","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support_suspicious_pledging","description":"Category: misrep-support-suspicious-pledging","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support_other","description":"Category: misrep-support-other","isDeprecated":false,"deprecationReason":null},{"name":"misrep_support","description":"Category: misrep-support","isDeprecated":false,"deprecationReason":null},{"name":"not_project_charity","description":"Category: not-project-charity","isDeprecated":false,"deprecationReason":null},{"name":"not_project_stunt_or_hoax","description":"Category: not-project-stunt-or-hoax","isDeprecated":false,"deprecationReason":null},{"name":"not_project_personal_expenses","description":"Category: not-project-personal-expenses","isDeprecated":false,"deprecationReason":null},{"name":"not_project_barebones","description":"Category: not-project-barebones","isDeprecated":false,"deprecationReason":null},{"name":"not_project_other","description":"Category: not-project-other","isDeprecated":false,"deprecationReason":null},{"name":"not_project","description":"Category: not-project","isDeprecated":false,"deprecationReason":null},{"name":"prototype_misrepresentation","description":"Category: prototype-misrepresentation","isDeprecated":false,"deprecationReason":null},{"name":"false_claims","description":"Category: false-claims","isDeprecated":false,"deprecationReason":null},{"name":"guidelines_spam","description":"Category: guidelines-spam","isDeprecated":false,"deprecationReason":null},{"name":"guidelines_abuse","description":"Category: guidelines-abuse","isDeprecated":false,"deprecationReason":null},{"name":"guidelines_violation","description":"Category: guidelines-violation","isDeprecated":false,"deprecationReason":null},{"name":"undisclosed_ai_use","description":"Category: undisclosed-ai-use","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_reward_not_as_described","description":"Category: post-funding-reward-not-as-described","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_reward_delayed","description":"Category: post-funding-reward-delayed","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_shipped_never_received","description":"Category: post-funding-shipped-never-received","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_creator_selling_elsewhere","description":"Category: post-funding-creator-selling-elsewhere","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_creator_uncommunicative","description":"Category: post-funding-creator-uncommunicative","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_creator_inappropriate","description":"Category: post-funding-creator-inappropriate","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_suspicious_third_party","description":"Category: post-funding-suspicious-third-party","isDeprecated":false,"deprecationReason":null},{"name":"post_funding_issues","description":"Category: post-funding-issues","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CreatorHrcStatusTier","description":"Creator HRC status tiers.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"hrc1","description":"HRC status tier: HRC 1","isDeprecated":false,"deprecationReason":null},{"name":"hrc2","description":"HRC status tier: HRC 2","isDeprecated":false,"deprecationReason":null},{"name":"hrc3","description":"HRC status tier: HRC 3","isDeprecated":false,"deprecationReason":null},{"name":"hrc4","description":"HRC status tier: HRC 4","isDeprecated":false,"deprecationReason":null},{"name":"hrc5","description":"HRC status tier: HRC 5","isDeprecated":false,"deprecationReason":null},{"name":"non_hrc","description":"HRC status tier: Non-HRC","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"OpenSearchSort","description":"Sort order for OpenSearch queries","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"asc","description":"Ascending order","isDeprecated":false,"deprecationReason":null},{"name":"desc","description":"Descending order","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":"The mutation root of the Kickstarter GraphQL interface","fields":[{"name":"acceptOrRejectAddressSuggestion","description":"Updates an address if the user rejects or accepts a suggestion","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AcceptOrRejectAddressSuggestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AcceptOrRejectAddressSuggestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"acceptOrderEdit","description":"Confirm payment and complete the order edit process","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AcceptOrderEditInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AcceptOrderEditPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"acknowledgeUpgrades","description":"Indicates that a backer has acknowledged the available upgrades step in checkout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AcknowledgeUpgradesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AcknowledgeUpgradesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"activatePrelaunch","description":"Activates the prelaunch page for a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ActivateProjectPrelaunchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ActivateProjectPrelaunchPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"addUserToSecretRewardGroup","description":"Adds a user to a secret reward user group","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AddUserToSecretRewardGroupInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AddUserToSecretRewardGroupPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"answerProjectFeedbackQuestion","description":"Updates the toggle-able options of the spreadsheet graph","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AnswerProjectFeedbackQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AnswerProjectFeedbackQuestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"applyPaymentSourceToCheckout","description":"Given a checkout that already exists, this mutation just applies a specific payment source to its backing. That's it! If you need to create a checkout and backing from scratch, use CreateBackingType.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ApplyPaymentSourceToCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ApplyPaymentSourceToCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"assignPledgeManager","description":"Assigns a user to review a pledge manager. If not given any optional parameters, will assign the pledge manager to the current logged-in user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AssignPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AssignPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"batchUpdateSurveyResponseAddresses","description":"Batch updates addresses for users's active survey responses","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"BatchUpdateSurveyResponseAddressesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BatchUpdateSurveyResponseAddressesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"blockUser","description":"Block a user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"BlockUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BlockUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"bulkEditQuestions","description":"Bulk edits the entire set of backer questions for a backer survey","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"BulkEditQuestionsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BulkEditQuestionsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"bulkEditStockLocationMappings","description":"Takes a stock location and bulk edits the location mapping","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"BulkEditStockLocationMappingsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BulkEditStockLocationMappingsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"calculateOrderEditTotals","description":"Given an order edit, calculates the tax, shipping, surcharge, and other totals","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CalculateOrderEditTotalsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CalculateOrderEditTotalsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"cancelBacking","description":"Cancel a pledged backing","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CancelBackingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CancelBackingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"cancelProject","description":"Cancel a live Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CancelProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CancelProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clearUserUnseenActivity","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ClearUserUnseenActivityInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ClearUserUnseenActivityPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"closeWave","description":"Ends a given checkout wave.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CloseWaveInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CloseWavePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completeOnSessionCheckout","description":"Complete a checkout originating from an session payment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CompleteOnSessionCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CompleteOnSessionCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completeOrder","description":"Confirm payment and complete the order","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CompleteOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CompleteOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"completeZeroDollarOrder","description":"Complete a $0 order","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CompleteZeroDollarOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CompleteZeroDollarOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"confirmAppleIdDisconnect","description":"Finalizes the Apple ID disconnect. Destroys apple_account and sets a new email and password","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ConfirmAppleIdDisconnectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ConfirmAppleIdDisconnectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"confirmOrderAddress","description":"Confirm order address","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ConfirmOrderAddressInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ConfirmOrderAddressPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"copyRewardItems","description":"Copy Reward Items from one Project to another.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CopyRewardItemsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CopyRewardItemsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createAddress","description":"Save a new address.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAddressInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateAddressPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createApplePayBacking","description":"[DEPRECATED in favor of CreateBackingType] Create a checkout with Apple Pay.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateApplePayBackingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateApplePayBackingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createAsset","description":"Create an asset.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAssetInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateAssetPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createAttributionEvent","description":"Creates an attribution event. Specifying a project will pass the project properties for attribution events. Sending this request as a logged-in user passes that user's properties as well. Any passed-in property with the same name overwrites the generated properties.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAttributionEventInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateAttributionEventPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createBackerReportSegment","description":"Save or update a search segment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateBackerReportSegmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateBackerReportSegmentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createBackerSurvey","description":"Creates a backer survey and generates master variants for each project item if needed","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateBackerSurveyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateBackerSurveyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createBacking","description":"Create a backing and checkout and process payment.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateBackingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateBackingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createCheckout","description":"Create a backing and checkout without syncing to Rosie","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createComment","description":"Post a comment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostCommentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostCommentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createCountrySignup","description":"Create a country signup.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateCountrySignupInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateCountrySignupPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createCreatorInterview","description":"Create a new creator interview","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateCreatorInterviewInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateCreatorInterviewPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createEditorialLayout","description":"Create an Editorial Layout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEditorialLayoutTypeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateEditorialLayoutTypePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createEligibilityQuestionnaire","description":"create a filled out eligibility questionnaire recording access to PM.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEligibilityQuestionnaireInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateEligibilityQuestionnairePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createFlagging","description":"Create a flagging (report) of a piece flaggable content.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateFlaggingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateFlaggingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createFreeformPost","description":"Create a new project post/update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateFreeformPostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateFreeformPostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOption","description":"Creates an option type and values for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOptionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOptionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateBackingAddress","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateBackingAddressInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateBackingAddressPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateDraftOrderEdit","description":"Creates or updates an order edit in a draft state","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateDraftOrderEditInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateDraftOrderEditPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateItemTaxConfig","description":"Creates/updates item tax config and creates/updates tax category for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateItemTaxConfigInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateItemTaxConfigPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdatePreviewOrder","description":"Creates or updates a preview order with given starting attributes","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdatePreviewOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdatePreviewOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateRecentSearch","description":"Save or update a recent search","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateRecentSearchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateRecentSearchPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateShippingZone","description":"Creates (or updates) a shipping zone with weight ranges and locations","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateShippingZoneInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateShippingZonePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateShop","description":"Creates or updates a Shopify shop","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateShopInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateShopPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateTrackingNumber","description":"Create or update a shipment's tracking number","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateTrackingNumberInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateTrackingNumberPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createOrUpdateVatConfig","description":"Creates/updates a VAT config","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrUpdateVatConfigInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateOrUpdateVatConfigPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createPaymentIntent","description":"Create a Stripe PaymentIntent in order to collect an on-session payment via the Stripe PaymentElement","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePaymentIntentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreatePaymentIntentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createPaymentSource","description":"Create a payment source","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePaymentSourceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreatePaymentSourcePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createPledgeManagementReward","description":"create a reward to be made available in Pledge Management.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePledgeManagementRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreatePledgeManagementRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":"Start a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectComment","description":"Post a project comment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostProjectCommentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostProjectCommentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectDepositAccount","description":"Creates a Deposit Account on Rosie, and a Stripe Connect Account.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectDepositAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectDepositAccountPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectImage","description":"Create a project image.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectImageInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectImagePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectPaymentSource","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectPaymentSourceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectPaymentSourcePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectUpdateRequest","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectUpdateRequestInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectUpdateRequestPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createProjectVideo","description":"Create a project video.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectVideoInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateProjectVideoPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createQuestion","description":"Creates a question for an object","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateQuestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createRefundCharge","description":"Create a refund charge to fund a refund","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateRefundChargeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateRefundChargePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createReward","description":"create a reward on a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createRewardItem","description":"Create an item which is available through the project's backer rewards.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateRewardItemInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateRewardItemPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createSetupIntent","description":"Create a Stripe SetupIntent in order to render new Stripe Elements","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateSetupIntentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateSetupIntentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createSheetForProject","description":"Creates a copy of the master Sheet and shares it with the project owner","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateSheetForProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateSheetForProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createTrackEvent","description":"Creates a track event","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTrackEventInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateTrackEventPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createUser","description":"Creates a new registered user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createUserSlug","description":"Add a user's slug.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateUserSlugInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateUserSlugPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createUserUrl","description":"Add a user's website.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateUserUrlsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateUserUrlsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createVariantMappings","description":"Creates a batch of variant mappings between Kickstarter & Shopify item variant (skus)","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateVariantMappingsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateVariantMappingsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createVideoTrack","description":"Create a video track (caption) for a Project Video","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateVideoTrackInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateVideoTrackPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createWave","description":"Creates a checkout wave for a given project, assuming all pre-requisites are complete.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateWaveInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateWavePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deactivatePrelaunch","description":"Deactivates the prelaunch page for a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeactivateProjectPrelaunchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeactivateProjectPrelaunchPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deactivateProjectCollaborator","description":"Deactivate a collaborator on a project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeactivateProjectCollaboratorInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeactivateProjectCollaboratorPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAddress","description":"Deletes an address","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAddressInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteAddressPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAsset","description":"Delete a asset.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAssetInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteAssetPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteBackerReportSegment","description":"Delete a search segment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteBackerReportSegmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteBackerReportSegmentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteBackerSurvey","description":"Deletes a backer survey","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteBackerSurveyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteBackerSurveyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteComment","description":"Delete a comment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteCommentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteCommentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteOption","description":"Deletes an option type and values for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteOptionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteOptionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletePost","description":"Delete a project post","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeletePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":"Delete an unlaunched Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProjectComment","description":"Delete a comment","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectCommentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteProjectCommentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProjectImage","description":"Delete a project image.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectImageInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteProjectImagePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProjectVideo","description":"Delete a project video.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectVideoInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteProjectVideoPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteQuestion","description":"Deletes a question","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteQuestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteRecentSearch","description":"Delete a recent search","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteRecentSearchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteRecentSearchPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteReward","description":"Delete a reward from a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteRewardItem","description":"Delete a reward item from a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteRewardItemInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteRewardItemPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteShippingZone","description":"Delete a shipping zone.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteShippingZoneInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteShippingZonePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteStockLocation","description":"Deletes a stock location and associated address","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteStockLocationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteStockLocationPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteUserUrl","description":"Delete a user's url","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteUserUrlsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteUserUrlsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteVariantMappings","description":"Deletes all variant mappings for a shopify shop, refreshing its state","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteVariantMappingsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteVariantMappingsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deleteVideoTrack","description":"Delete a video track (caption) from a video","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteVideoTrackInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteVideoTrackPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dislikeProject","description":"Adds disliked projects to a users taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DislikeProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DislikeProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"distributeDigitalAccessResources","description":"Distribute digital access resources like access keys or URLs to backers with digital rewards","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DistributeDigitalAccessResourcesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DistributeDigitalAccessResourcesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"endLatePledges","description":"End late pledges for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EndLatePledgesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EndLatePledgesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"featureReward","description":"Feature a reward for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FeatureRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FeatureRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"followUser","description":"Causes the current user to follow a specified user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FollowUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FollowUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"generateProjectPreview","description":"Enable the preview url for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"GenerateProjectPreviewInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"GenerateProjectPreviewPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"inviteProjectCollaborator","description":"Invite a new collaborator on a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"InviteProjectCollaboratorInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"InviteProjectCollaboratorPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"issueRefund","description":"Issue a refund for a backer. Can include the refunding of both the pledge and the PM transactions.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"IssueRefundInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"IssueRefundPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"launchProject","description":"Launch a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LaunchProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LaunchProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"likePost","description":"Like a specified project update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LikePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LikePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"likeProject","description":"Adds a like for the passed in project to the user's taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LikeProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LikeProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"likeQuizProject","description":"Adds a quiz project and any attributes the user has liked to their taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LikeQuizProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LikeQuizProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"lockAddresses","description":"Locks backer address changes for a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LockAddressesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"LockAddressesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"migrateToFulfillmentStatus","description":"Migrate's a project's eligible backings to new fulfillment status tool.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"MigrateToFulfillmentStatusInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"MigrateToFulfillmentStatusPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optInToPledgeManager","description":"Opt in to a pledge manager","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"OptInToPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"OptInToPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optOutOfPledgeManager","description":"Opt out of a pledge manager","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"OptOutOfPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"OptOutOfPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSourceDelete","description":"Delete a user's payment source","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PaymentSourceDeleteInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PaymentSourceDeletePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pinPost","description":"Pin a project update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PinPostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PinPostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postExcludeReward","description":"Exclude a reward's backers from getting notifications about a post.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostExcludeRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostExcludeRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postIncludeReward","description":"Include a reward's backers in notifications about a post.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostIncludeRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostIncludeRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"processDigitalResourcesCsv","description":"Distribute digital access resources from csv upload","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ProcessDigitalResourcesCsvInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProcessDigitalResourcesCsvPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"processTrackingNumbers","description":"Processes tracking numbers for a given project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ProcessTrackingNumbersInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProcessTrackingNumbersPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"publishEditorialLayout","description":"Publish an Editorial Layout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PublishEditorialLayoutTypeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PublishEditorialLayoutTypePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"publishPost","description":"Publish a project post","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PublishPostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PublishPostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refreshSpreadsheetData","description":"Refreshes the spreadsheet data from the sheet","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshSpreadsheetDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RefreshSpreadsheetDataPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"rejectOrderEdit","description":"Reject the order edit","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RejectOrderEditInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RejectOrderEditPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"removeSheetFromProject","description":"Removes the spreadsheet associated to a project","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RemoveSheetFromProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RemoveSheetFromProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reportSpam","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ReportSpamInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ReportSpamPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"requestAppleIdDisconnectEmail","description":"Requests an Apple ID disconnect email","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RequestAppleIdDisconnectEmailInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RequestAppleIdDisconnectEmailPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"requestPasswordReset","description":"Requests a password reset email.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RequestPasswordResetInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RequestPasswordResetPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"resetBackerSurvey","description":"Reset a backer survey","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetBackerSurveyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ResetBackerSurveyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revertPledgeManagerToDraft","description":"Reverts a pledge manager to draft state","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RevertPledgeManagerToDraftInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RevertPledgeManagerToDraftPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reviewPledgeManager","description":"Sets pledge manager state to approved or denied based on outcome of review","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ReviewPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ReviewPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sendMessage","description":"Send a message","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SendMessageInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SendMessagePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sendSubmissionMessage","description":"Send a message for a project submission","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SendSubmissionMessageInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SendSubmissionMessagePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sendSurvey","description":"Sends a backer survey and creates backer carts","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SendSurveyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SendSurveyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setAddressAsPrimary","description":"Sets an address as the primary/default address for the user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetAddressAsPrimaryInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetAddressAsPrimaryPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setAddressCollectionEnabled","description":"Sets address_collection_enabled","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetAddressCollectionEnabledInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetAddressCollectionEnabledPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setBackingFulfillmentStatuses","description":"Sets the fulfillment status of multiple backings based on various filters.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetBackingFulfillmentStatusesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetBackingFulfillmentStatusesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setBackingNote","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetBackingNoteInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetBackingNotePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setProjectSlug","description":"Set a project slug.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetProjectSlugInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetProjectSlugPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setProjectStatus","description":"Updates the project status","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetProjectStatusInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetProjectStatusPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setShippingConfig","description":"Sets a project's shipping configuration, e.g. weight based or flat rate","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetShippingConfigInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetShippingConfigPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setTaxCategory","description":"Sets tax category for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetTaxCategoryInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetTaxCategoryPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"setUserBadges","description":"Sets the badges for a given user, removes those not present in the list","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetUserBadgesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetUserBadgesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"signInWithApple","description":"Signs in or sign up a user via the Sign in With Apple service","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SignInWithAppleInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SignInWithApplePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitOrderEdit","description":"Submits an OrderEdit when it is done being edited","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitOrderEditInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitOrderEditPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitPledgeManager","description":"Submits a draft pledge manager","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitPledgeManagerInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitPledgeManagerPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitProject","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitRefundCheckout","description":"Refund a backing.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitRefundCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitRefundCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitResponses","description":"Associates backing with an address, updates cart with item preference selections, and creates answers to survey questions.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitResponsesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitResponsesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitVatNumber","description":"Submits the VAT number to rosie","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SubmitVatNumberInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SubmitVatNumberPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"succeedOrder","description":"Confirm payment and complete the order or order edit","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SucceedOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SucceedOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleCommentPin","description":"Toggle whether a comment is pinned.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleCommentPinInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleCommentPinPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleProjectMilestone","description":"Toggles a milestone for a given project and category to completed or not completed","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleProjectMilestoneInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleProjectMilestonePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleProjectPreview","description":"Enable & disable the preview url for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleProjectPreviewInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleProjectPreviewPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleSyncingForShop","description":"Toggles the syncing state for a Shopify shop","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleSyncingForShopInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleSyncingForShopPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"toggleTariffSurchargesEnabled","description":"Toggle whether a project can set up and collect tariff surcharges","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ToggleTariffSurchargesEnabledInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ToggleTariffSurchargesEnabledPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"translateEditorialLayout","description":"Translate an Editorial Layout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"TranslateEditorialLayoutTypeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TranslateEditorialLayoutTypePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"triggerThirdPartyEvent","description":"Triggers third party event","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"TriggerThirdPartyEventInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TriggerThirdPartyEventPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unblockUser","description":"Unblock a user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnblockUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnblockUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"undislikeProject","description":"Removes a like for the passed in project from the user's taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UndislikeProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UndislikeProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unfollowUser","description":"Causes the current user to unfollow a specified user","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnfollowUserInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnfollowUserPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unlikePost","description":"Unlike a specified project update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnlikePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnlikePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unlikeProject","description":"Removes a like for the passed in project from the user's taste profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnlikeProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnlikeProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unpinPost","description":"Unpin a project update","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnpinPostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnpinPostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unpublishEditorialLayout","description":"Unpublish an Editorial Layout.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnpublishEditorialLayoutTypeInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnpublishEditorialLayoutTypePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"untagProject","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UntagProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UntagProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unwatchProject","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UnwatchProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UnwatchProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateAcceptsNewBackers","description":"Updates the pledge manager to enable or disable accepts_new_backers","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAcceptsNewBackersInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateAcceptsNewBackersPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateBackerCompleted","description":"Update the backing completed at field with a backing_completed toggle","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateBackerCompletedInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateBackerCompletedPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateBackerSurveyIntro","description":"Updates backer survey with a rich text intro","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateBackerSurveyIntroInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateBackerSurveyIntroPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateBacking","description":"Update an existing backing for a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateBackingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateBackingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateBackingPaymentSource","description":"Update a backing's payment source","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateBackingPaymentSourceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateBackingPaymentSourcePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateConsent","description":"Handle a user's updated consent for data collection purposes.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateConsentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateConsentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateCreatorInterview","description":"Update a creator interview","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateCreatorInterviewInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateCreatorInterviewPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateCrossSellsOnOrder","description":"Creates, updates, or destroys associations between an Order and a backer's selected Cross Sells","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateCrossSellsOnOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateCrossSellsOnOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateFulfillmentModalDismissedAt","description":"Update a project's fulfillment_modal_dismissed_at timestamp.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateFulfillmentModalDismissedAtInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateFulfillmentModalDismissedAtPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateFulfillmentStatus","description":"Update a project's fulfillment_status.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateFulfillmentStatusInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateFulfillmentStatusPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateItemVariants","description":"Updates an array of ItemVariant","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateItemVariantsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateItemVariantsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateItemWeights","description":"Updates item weights given a set of item ids and weights","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateItemWeightsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateItemWeightsPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateOption","description":"Updates an option type and values for an item","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOptionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateOptionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrderAdjustment","description":"Update an order adjustment success state and error message","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrderAdjustmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateOrderAdjustmentPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrderableConfig","description":"Update OrderableConfig for an Orderable","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrderableConfigInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateOrderableConfigPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePledgeManagementReward","description":"update a reward to be made available in Pledge Management.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePledgeManagementRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePledgeManagementRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePledgeManagerState","description":"Update state for a Pledge Manager","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePledgeManagerStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePledgeManagerStatePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePost","description":"Update a project post","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":"Update an existing Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProjectCollaborator","description":"Update a collaborator on a project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectCollaboratorInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectCollaboratorPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProjectPaymentSource","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectPaymentSourceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectPaymentSourcePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProjectRiskStrategies","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectRiskStrategiesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectRiskStrategiesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateProjectVerifiedCreatorName","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectVerifiedCreatorNameInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateProjectVerifiedCreatorNamePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateQuestion","description":"Updates a question","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateQuestionPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateRefundCheckout","description":"Update a refund checkout state and error message","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateRefundCheckoutInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateRefundCheckoutPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateResourceAudience","description":"Updates audience for a specified resource","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateResourceAudienceInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateResourceAudiencePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateReward","description":"Update a reward on a Kickstarter project.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateRewardInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateRewardPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateRewardItem","description":"Update an item which is available through the project's backer rewards.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateRewardItemInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateRewardItemPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateRewardShippingRates","description":"Update ShippingRates for a BackerReward","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateRewardShippingRatesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateRewardShippingRatesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateSpreadsheetToggles","description":"Updates the toggle-able options of the spreadsheet graph","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateSpreadsheetTogglesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateSpreadsheetTogglesPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserAccount","description":"Update user account","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserAccountPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserNotification","description":"Update user notification for a topic","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserNotificationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserNotificationPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserNotificationFrequency","description":"Update user notification frequency for a topic","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserNotificationFrequencyInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserNotificationFrequencyPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserProfile","description":"Update user's profile","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserProfileInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserProfilePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updateUserSetting","description":"Creates a valid user setting","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateUserSettingInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserSettingPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"upgradeRewardOnOrder","description":"Updates the backer's order with the new reward they're upgrading to, or resets the order","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpgradeRewardOnOrderInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpgradeRewardOnOrderPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"userSendEmailVerification","description":"send email verification","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UserSendEmailVerificationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UserSendEmailVerificationPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"watchProject","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"WatchProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"WatchProjectPayload","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RequestPasswordResetPayload","description":"Autogenerated return type of RequestPasswordReset","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"Email","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Email","description":"An email address.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RequestPasswordResetInput","description":"Autogenerated input type of RequestPasswordReset","fields":null,"inputFields":[{"name":"email","description":null,"type":{"kind":"SCALAR","name":"Email","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FollowUserPayload","description":"Autogenerated return type of FollowUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FollowUserInput","description":"Autogenerated input type of FollowUser","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnfollowUserPayload","description":"Autogenerated return type of UnfollowUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnfollowUserInput","description":"Autogenerated input type of UnfollowUser","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BlockUserPayload","description":"Autogenerated return type of BlockUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentUser","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"BlockUserInput","description":"Autogenerated input type of BlockUser","fields":null,"inputFields":[{"name":"blockUserId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnblockUserPayload","description":"Autogenerated return type of UnblockUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentUser","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnblockUserInput","description":"Autogenerated input type of UnblockUser","fields":null,"inputFields":[{"name":"blockUserId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RequestAppleIdDisconnectEmailPayload","description":"Autogenerated return type of RequestAppleIdDisconnectEmail","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RequestAppleIdDisconnectEmailInput","description":"Autogenerated input type of RequestAppleIdDisconnectEmail","fields":null,"inputFields":[{"name":"email","description":null,"type":{"kind":"SCALAR","name":"Email","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConfirmAppleIdDisconnectPayload","description":"Autogenerated return type of ConfirmAppleIdDisconnect","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ConfirmAppleIdDisconnectInput","description":"Autogenerated input type of ConfirmAppleIdDisconnect","fields":null,"inputFields":[{"name":"email","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Email","ofType":null}},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"passwordConfirmation","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateFreeformPostPayload","description":"Autogenerated return type of CreateFreeformPost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"OBJECT","name":"FreeformPost","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateFreeformPostInput","description":"Autogenerated input type of CreateFreeformPost","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateCreatorInterviewPayload","description":"Autogenerated return type of CreateCreatorInterview","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creatorInterview","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreatorInterview","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateCreatorInterviewInput","description":"Autogenerated input type of CreateCreatorInterview","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePostPayload","description":"Autogenerated return type of UpdatePost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"OBJECT","name":"FreeformPost","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePostInput","description":"Autogenerated input type of UpdatePost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"title","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"HTML","ofType":null},"defaultValue":null},{"name":"public","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateCreatorInterviewPayload","description":"Autogenerated return type of UpdateCreatorInterview","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creatorInterview","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreatorInterview","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateCreatorInterviewInput","description":"Autogenerated input type of UpdateCreatorInterview","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"title","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"public","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"answers","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"InterviewAnswerInput","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"InterviewAnswerInput","description":"Interview answer input for updating creator interviews","fields":null,"inputFields":[{"name":"interviewQuestionId","description":"The associated interview question id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":"The body of the interview answer","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"skip","description":"True if the creator chose to skip the question","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PublishPostPayload","description":"Autogenerated return type of PublishPost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PublishPostInput","description":"Autogenerated input type of PublishPost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePostPayload","description":"Autogenerated return type of DeletePost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeletePostInput","description":"Autogenerated input type of DeletePost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LikePostPayload","description":"Autogenerated return type of LikePost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LikePostInput","description":"Autogenerated input type of LikePost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnlikePostPayload","description":"Autogenerated return type of UnlikePost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnlikePostInput","description":"Autogenerated input type of UnlikePost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PinPostPayload","description":"Autogenerated return type of PinPost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PinPostInput","description":"Autogenerated input type of PinPost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnpinPostPayload","description":"Autogenerated return type of UnpinPost","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnpinPostInput","description":"Autogenerated input type of UnpinPost","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostExcludeRewardPayload","description":"Autogenerated return type of PostExcludeReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostExcludeRewardInput","description":"Autogenerated input type of PostExcludeReward","fields":null,"inputFields":[{"name":"rewardId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"postId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostIncludeRewardPayload","description":"Autogenerated return type of PostIncludeReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"INTERFACE","name":"Postable","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostIncludeRewardInput","description":"Autogenerated input type of PostIncludeReward","fields":null,"inputFields":[{"name":"rewardId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"postId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated return type of CreateProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated input type of CreateProject","fields":null,"inputFields":[{"name":"categoryId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"additionalSubcategoryId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"countryCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"tag","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitProjectPayload","description":"Autogenerated return type of SubmitProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitProjectInput","description":"Autogenerated input type of SubmitProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CancelProjectPayload","description":"Autogenerated return type of CancelProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CancelProjectInput","description":"Autogenerated input type of CancelProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CancelBackingPayload","description":"Autogenerated return type of CancelBacking","fields":[{"name":"backing","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Backing","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CancelBackingInput","description":"Autogenerated input type of CancelBacking","fields":null,"inputFields":[{"name":"id","description":"ID of the backing being canceled","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"note","description":"Optional cancellation note","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"aiDisclosure","description":null,"type":{"kind":"INPUT_OBJECT","name":"AiDisclosureInput","ofType":null},"defaultValue":null},{"name":"deadline","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"duration","description":"Duration of campaign, in days.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"environmentalCommitments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EnvironmentalCommitmentInput","ofType":null}},"defaultValue":null},{"name":"story","description":null,"type":{"kind":"SCALAR","name":"HTML","ofType":null},"defaultValue":null},{"name":"risks","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"storyRteVersion","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"goal","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"googleAnalyticsTrackingId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"googleAnalyticsApiSecret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"metaPixelId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"metaCapiAccessToken","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"categoryId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"additionalSubcategoryId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"targetLaunchDate","description":null,"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"defaultValue":null},{"name":"currency","description":null,"type":{"kind":"ENUM","name":"CurrencyCode","ofType":null},"defaultValue":null},{"name":"faqs","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FaqInput","ofType":null}}},"defaultValue":null},{"name":"postCampaignPledgesEnabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"pledgeOverTimeEnabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"chargeShippingInPledgeManager","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"prelaunchStory","description":null,"type":{"kind":"SCALAR","name":"HTML","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AiDisclosureInput","description":null,"fields":null,"inputFields":[{"name":"fundingForAiAttribution","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"fundingForAiConsent","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"fundingForAiOption","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"generatedByAiConsent","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"generatedByAiDetails","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"otherAiDetails","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EnvironmentalCommitmentInput","description":"An environmental commitment for a project.","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"commitmentCategory","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentalCommitmentCategory","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FaqInput","description":"A FAQ question and answer for a project.","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"position","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"question","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"answer","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LaunchProjectPayload","description":"Autogenerated return type of LaunchProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LaunchProjectInput","description":"Autogenerated input type of LaunchProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UntagProjectPayload","description":"Autogenerated return type of UntagProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UntagProjectInput","description":"Autogenerated input type of UntagProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"tag","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetProjectSlugPayload","description":"Autogenerated return type of SetProjectSlug","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetProjectSlugInput","description":"Autogenerated input type of SetProjectSlug","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectVerifiedCreatorNamePayload","description":"Autogenerated return type of UpdateProjectVerifiedCreatorName","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectVerifiedCreatorNameInput","description":"Autogenerated input type of UpdateProjectVerifiedCreatorName","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetProjectStatusPayload","description":"Autogenerated return type of SetProjectStatus","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectStatus","description":null,"args":[],"type":{"kind":"OBJECT","name":"ProjectStatus","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetProjectStatusInput","description":"Autogenerated input type of SetProjectStatus","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"nowStatus","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nextStatus","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nextDueDate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"defaultValue":null},{"name":"enabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"true"},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ActivateProjectPrelaunchPayload","description":"Autogenerated return type of ActivateProjectPrelaunch","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ActivateProjectPrelaunchInput","description":"Autogenerated input type of ActivateProjectPrelaunch","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeactivateProjectPrelaunchPayload","description":"Autogenerated return type of DeactivateProjectPrelaunch","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeactivateProjectPrelaunchInput","description":"Autogenerated input type of DeactivateProjectPrelaunch","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectRiskStrategiesPayload","description":"Autogenerated return type of UpdateProjectRiskStrategies","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedRiskStrategies","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RiskStrategy","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectRiskStrategiesInput","description":"Autogenerated input type of UpdateProjectRiskStrategies","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"riskStrategies","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RiskStrategyInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RiskStrategyInput","description":"Inputs required to create a risk strategy for a project.","fields":null,"inputFields":[{"name":"riskCategory","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RiskCategoryType","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateSheetForProjectPayload","description":"Autogenerated return type of CreateSheetForProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sheetsUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spreadsheetData","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SpreadsheetDatum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateSheetForProjectInput","description":"Autogenerated input type of CreateSheetForProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RemoveSheetFromProjectPayload","description":"Autogenerated return type of RemoveSheetFromProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sheetsUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RemoveSheetFromProjectInput","description":"Autogenerated input type of RemoveSheetFromProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshSpreadsheetDataPayload","description":"Autogenerated return type of RefreshSpreadsheetData","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spreadsheet","description":null,"args":[],"type":{"kind":"OBJECT","name":"Spreadsheet","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshSpreadsheetDataInput","description":"Autogenerated input type of RefreshSpreadsheetData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateSpreadsheetTogglesPayload","description":"Autogenerated return type of UpdateSpreadsheetToggles","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"spreadsheet","description":null,"args":[],"type":{"kind":"OBJECT","name":"Spreadsheet","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateSpreadsheetTogglesInput","description":"Autogenerated input type of UpdateSpreadsheetToggles","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"public","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"displayMode","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AnswerProjectFeedbackQuestionPayload","description":"Autogenerated return type of AnswerProjectFeedbackQuestion","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"feedback","description":null,"args":[],"type":{"kind":"OBJECT","name":"ProjectFeedback","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AnswerProjectFeedbackQuestionInput","description":"Autogenerated input type of AnswerProjectFeedbackQuestion","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"questionName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"questionAnswer","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleProjectMilestonePayload","description":"Autogenerated return type of ToggleProjectMilestone","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"milestone","description":null,"args":[],"type":{"kind":"OBJECT","name":"ProjectMilestone","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleProjectMilestoneInput","description":"Autogenerated input type of ToggleProjectMilestone","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"milestoneCategory","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeactivateProjectCollaboratorPayload","description":"Autogenerated return type of DeactivateProjectCollaborator","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeactivateProjectCollaboratorInput","description":"Autogenerated input type of DeactivateProjectCollaborator","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"userId","description":"The collaborator's user id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InviteProjectCollaboratorPayload","description":"Autogenerated return type of InviteProjectCollaborator","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"InviteProjectCollaboratorInput","description":"Autogenerated input type of InviteProjectCollaborator","fields":null,"inputFields":[{"name":"projectId","description":"ID of project getting the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"userEmail","description":"Email of the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"Title of the collaborator","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"permissions","description":"Permissions granted to the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorPermission","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectCollaboratorPayload","description":"Autogenerated return type of UpdateProjectCollaborator","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectCollaboratorInput","description":"Autogenerated input type of UpdateProjectCollaborator","fields":null,"inputFields":[{"name":"projectId","description":"ID of project updating the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"userId","description":"ID of the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"title","description":"Title of the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"permissions","description":"Updated permissions granted to the collaborator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CollaboratorPermission","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GenerateProjectPreviewPayload","description":"Autogenerated return type of GenerateProjectPreview","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"GenerateProjectPreviewInput","description":"Autogenerated input type of GenerateProjectPreview","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleProjectPreviewPayload","description":"Autogenerated return type of ToggleProjectPreview","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleProjectPreviewInput","description":"Autogenerated input type of ToggleProjectPreview","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateVideoTrackPayload","description":"Autogenerated return type of CreateVideoTrack","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"videoTrack","description":null,"args":[],"type":{"kind":"OBJECT","name":"VideoTrack","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateVideoTrackInput","description":"Autogenerated input type of CreateVideoTrack","fields":null,"inputFields":[{"name":"videoId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"languageCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CaptionLanguageCode","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteVideoTrackPayload","description":"Autogenerated return type of DeleteVideoTrack","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"video","description":null,"args":[],"type":{"kind":"OBJECT","name":"Video","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteVideoTrackInput","description":"Autogenerated input type of DeleteVideoTrack","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SendMessagePayload","description":"Autogenerated return type of SendMessage","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"conversation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Conversation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"OBJECT","name":"Message","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SendMessageInput","description":"Autogenerated input type of SendMessage","fields":null,"inputFields":[{"name":"recipientId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"gRecaptchaResponse","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SendSubmissionMessagePayload","description":"Autogenerated return type of SendSubmissionMessage","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"OBJECT","name":"Message","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SendSubmissionMessageInput","description":"Autogenerated input type of SendSubmissionMessage","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ReportSpamPayload","description":"Autogenerated return type of ReportSpam","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Message","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"spam","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ReportSpamInput","description":"Autogenerated input type of ReportSpam","fields":null,"inputFields":[{"name":"messageId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateCountrySignupPayload","description":"Autogenerated return type of CreateCountrySignup","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isSuccessful","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateCountrySignupInput","description":"Autogenerated input type of CreateCountrySignup","fields":null,"inputFields":[{"name":"email","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Email","ofType":null}},"defaultValue":null},{"name":"country","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"WatchProjectPayload","description":"Autogenerated return type of WatchProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"WatchProjectInput","description":"Autogenerated input type of WatchProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnwatchProjectPayload","description":"Autogenerated return type of UnwatchProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnwatchProjectInput","description":"Autogenerated input type of UnwatchProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectImagePayload","description":"Autogenerated return type of CreateProjectImage","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"image","description":null,"args":[],"type":{"kind":"OBJECT","name":"Photo","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectImageInput","description":"Autogenerated input type of CreateProjectImage","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"contentType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"fileSize","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectImagePayload","description":"Autogenerated return type of DeleteProjectImage","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectImageInput","description":"Autogenerated input type of DeleteProjectImage","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectVideoPayload","description":"Autogenerated return type of CreateProjectVideo","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"video","description":null,"args":[],"type":{"kind":"OBJECT","name":"Video","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectVideoInput","description":"Autogenerated input type of CreateProjectVideo","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"contentType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"fileSize","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectVideoPayload","description":"Autogenerated return type of DeleteProjectVideo","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectVideoInput","description":"Autogenerated input type of DeleteProjectVideo","fields":null,"inputFields":[{"name":"id","description":"The project ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostCommentPayload","description":"Autogenerated return type of PostComment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Comment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostCommentInput","description":"Autogenerated input type of PostComment","fields":null,"inputFields":[{"name":"commentableId","description":"The ID of the object you are commenting on","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":"The body of the comment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"parentId","description":"The ID of the comment you are replying to","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteCommentPayload","description":"Autogenerated return type of DeleteComment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"commentable","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteCommentInput","description":"Autogenerated input type of DeleteComment","fields":null,"inputFields":[{"name":"id","description":"The comment ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleCommentPinPayload","description":"Autogenerated return type of ToggleCommentPin","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Comment","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleCommentPinInput","description":"Autogenerated input type of ToggleCommentPin","fields":null,"inputFields":[{"name":"commentId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"pinned","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostProjectCommentPayload","description":"Autogenerated return type of PostProjectComment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"comment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Comment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostProjectCommentInput","description":"Autogenerated input type of PostProjectComment","fields":null,"inputFields":[{"name":"projectId","description":"The ID of the project you are commenting on","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":"The body of the comment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"parentId","description":"The ID of the comment you are replying to","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectCommentPayload","description":"Autogenerated return type of DeleteProjectComment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectCommentInput","description":"Autogenerated input type of DeleteProjectComment","fields":null,"inputFields":[{"name":"id","description":"The comment ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAssetPayload","description":"Autogenerated return type of CreateAsset","fields":[{"name":"asset","description":null,"args":[],"type":{"kind":"UNION","name":"AttachedMedia","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"AttachedMedia","description":"Attached Media","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AttachedAudio","ofType":null},{"kind":"OBJECT","name":"AttachedVideo","ofType":null},{"kind":"OBJECT","name":"Photo","ofType":null}]},{"kind":"INPUT_OBJECT","name":"CreateAssetInput","description":"Autogenerated input type of CreateAsset","fields":null,"inputFields":[{"name":"id","description":"ID of the object to attach the asset to","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"contentType","description":"mime type. ex: 'image/png'","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"attachableAssoc","description":"attachable attribute. ex: 'hero_media', 'avatar', ...","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileSize","description":"File size of asset in bytes.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAssetPayload","description":"Autogenerated return type of DeleteAsset","fields":[{"name":"attachable","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"Attachable","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"Attachable","description":"An object that can be associated with uploaded assets","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"FreeformPost","ofType":null},{"kind":"OBJECT","name":"InterviewAnswer","ofType":null},{"kind":"OBJECT","name":"Survey","ofType":null}]},{"kind":"OBJECT","name":"Survey","description":"A survey","fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAssetInput","description":"Autogenerated input type of DeleteAsset","fields":null,"inputFields":[{"name":"attachable_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"asset_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAddressPayload","description":"Autogenerated return type of CreateAddress","fields":[{"name":"address","description":"Address that was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Address","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"associatedObject","description":"Object associated with the address","args":[],"type":{"kind":"UNION","name":"AddressAssociatedObject","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"suggestedAddress","description":"Address suggestion","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validationStatus","description":"Validation status for created address","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ValidationStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ValidationStatus","description":"Status returned from an address validation","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"exact","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"suggestion","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"not_found","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"error","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"UNION","name":"AddressAssociatedObject","description":"Objects that can be associated with an address","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Order","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"StockLocation","ofType":null},{"kind":"OBJECT","name":"Backing","ofType":null}]},{"kind":"INPUT_OBJECT","name":"CreateAddressInput","description":"Autogenerated input type of CreateAddress","fields":null,"inputFields":[{"name":"recipientName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"referenceName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"addressLine1","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"addressLine2","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"city","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"region","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"postalCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"countryCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CountryCode","ofType":null}},"defaultValue":null},{"name":"phoneNumber","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"primary","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"associatedObjectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"source","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AddressCreationSource","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AddressCreationSource","description":"Source of address creation","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"stock_location_create","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"stock_location_edit","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"user_settings","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"survey","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_redemption","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pledge_redemption_edit","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"BatchUpdateSurveyResponseAddressesPayload","description":"Autogenerated return type of BatchUpdateSurveyResponseAddresses","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedSurveyResponsesCount","description":"The count of SurveyResponses that were successfully updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"BatchUpdateSurveyResponseAddressesInput","description":"Autogenerated input type of BatchUpdateSurveyResponseAddresses","fields":null,"inputFields":[{"name":"fulfillmentAddressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AcceptOrRejectAddressSuggestionPayload","description":"Autogenerated return type of AcceptOrRejectAddressSuggestion","fields":[{"name":"associatedObject","description":"Object associated with the address","args":[],"type":{"kind":"UNION","name":"AddressAssociatedObject","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AcceptOrRejectAddressSuggestionInput","description":"Autogenerated input type of AcceptOrRejectAddressSuggestion","fields":null,"inputFields":[{"name":"fulfillmentAddressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"suggestionAccepted","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"associatedObjectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"source","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AddressCreationSource","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAddressPayload","description":"Autogenerated return type of DeleteAddress","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Success if address was deleted successfully","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAddressInput","description":"Autogenerated input type of DeleteAddress","fields":null,"inputFields":[{"name":"fulfillmentAddressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetAddressAsPrimaryPayload","description":"Autogenerated return type of SetAddressAsPrimary","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Success if address was updated successfully","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetAddressAsPrimaryInput","description":"Autogenerated input type of SetAddressAsPrimary","fields":null,"inputFields":[{"name":"fulfillmentAddressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateBackingAddressPayload","description":"Autogenerated return type of CreateOrUpdateBackingAddress","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateBackingAddressInput","description":"Autogenerated input type of CreateOrUpdateBackingAddress","fields":null,"inputFields":[{"name":"backingId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"addressId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetBackingFulfillmentStatusesPayload","description":"Autogenerated return type of SetBackingFulfillmentStatuses","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedBackingCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetBackingFulfillmentStatusesInput","description":"Autogenerated input type of SetBackingFulfillmentStatuses","fields":null,"inputFields":[{"name":"backingIds","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"selectAll","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"newFulfillmentStatus","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FulfillmentStatusSelectOptions","ofType":null}},"defaultValue":null},{"name":"rewards","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"addons","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterAddons","description":null,"type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterItems","description":null,"type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"skus","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"sqlFilterSkus","description":null,"type":{"kind":"ENUM","name":"SqlFilterOperator","ofType":null},"defaultValue":null},{"name":"locations","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"amountMin","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"amountMax","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pledgedAtMin","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pledgedAtMax","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"fulfillmentStatus","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"surveyAnswered","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"isLatePledge","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"term","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"status","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pledgeRedemptionState","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"actionsTaken","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pledgeOverTime","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"backerEntryPoint","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"pmCompletedAtMin","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pmCompletedAtMax","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FulfillmentStatusSelectOptions","description":"Values for backing fulfillment status","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"not_started","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"in_progress","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"shipped","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"delayed","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"MigrateToFulfillmentStatusPayload","description":"Autogenerated return type of MigrateToFulfillmentStatus","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if backings are being updated in backend.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"MigrateToFulfillmentStatusInput","description":"Autogenerated input type of MigrateToFulfillmentStatus","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateFulfillmentModalDismissedAtPayload","description":"Autogenerated return type of UpdateFulfillmentModalDismissedAt","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateFulfillmentModalDismissedAtInput","description":"Autogenerated input type of UpdateFulfillmentModalDismissedAt","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateFulfillmentStatusPayload","description":"Autogenerated return type of UpdateFulfillmentStatus","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateFulfillmentStatusInput","description":"Autogenerated input type of UpdateFulfillmentStatus","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"fulfillmentStatus","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FulfillmentStatus","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserSettingPayload","description":"Autogenerated return type of UpdateUserSetting","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserSettingInput","description":"Autogenerated input type of UpdateUserSetting","fields":null,"inputFields":[{"name":"setting","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserSetting","ofType":null}},"defaultValue":null},{"name":"enable","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserSetting","description":"Possible user settings","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"manual_play_videos","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"superbacker_not_visible","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_apple_id_disconnect_token","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"expired_apple_id_disconnect_token","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_watch_notice","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"confirmed_signal_notice","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"opted_out_of_recommendations","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"viz_notification","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"opt_in_ksr_research","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"show_public_profile","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dismissed_taste_profile_toast","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dismissed_pyl_toast","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dismissed_reward_images_toast","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"admin_message_badge","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserAccountPayload","description":"Autogenerated return type of UpdateUserAccount","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserAccountInput","description":"Autogenerated input type of UpdateUserAccount","fields":null,"inputFields":[{"name":"currentPassword","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"passwordConfirmation","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"SCALAR","name":"Email","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserProfilePayload","description":"Autogenerated return type of UpdateUserProfile","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserProfileInput","description":"Autogenerated input type of UpdateUserProfile","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"biography","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"chosenCurrency","description":null,"type":{"kind":"ENUM","name":"CurrencyCode","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserNotificationPayload","description":"Autogenerated return type of UpdateUserNotification","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"userNotification","description":null,"args":[],"type":{"kind":"OBJECT","name":"Notification","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserNotificationInput","description":"Autogenerated input type of UpdateUserNotification","fields":null,"inputFields":[{"name":"topic","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationTopic","ofType":null}},"defaultValue":null},{"name":"kind","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationKind","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserNotificationKind","description":"User notification kind","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"email","description":"Email","isDeprecated":false,"deprecationReason":null},{"name":"mobile","description":"Mobile","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserNotificationFrequencyPayload","description":"Autogenerated return type of UpdateUserNotificationFrequency","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"userNotification","description":null,"args":[],"type":{"kind":"OBJECT","name":"Notification","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateUserNotificationFrequencyInput","description":"Autogenerated input type of UpdateUserNotificationFrequency","fields":null,"inputFields":[{"name":"topic","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationTopic","ofType":null}},"defaultValue":null},{"name":"frequency","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"UserNotificationFrequency","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateUserUrlsPayload","description":"Autogenerated return type of CreateUserUrls","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateUserUrlsInput","description":"Autogenerated input type of CreateUserUrls","fields":null,"inputFields":[{"name":"url","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteUserUrlsPayload","description":"Autogenerated return type of DeleteUserUrls","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteUserUrlsInput","description":"Autogenerated input type of DeleteUserUrls","fields":null,"inputFields":[{"name":"urlId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateUserSlugPayload","description":"Autogenerated return type of CreateUserSlug","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateUserSlugInput","description":"Autogenerated input type of CreateUserSlug","fields":null,"inputFields":[{"name":"slug","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ClearUserUnseenActivityPayload","description":"Autogenerated return type of ClearUserUnseenActivity","fields":[{"name":"activityIndicatorCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ClearUserUnseenActivityInput","description":"Autogenerated input type of ClearUserUnseenActivity","fields":null,"inputFields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateUserPayload","description":"Autogenerated return type of CreateUser","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateUserInput","description":"Autogenerated input type of CreateUser","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"emailConfirmation","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"optIntoNewsletters","description":"If the user agrees to opt into weekly newsletters","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"},{"name":"optIntoUserResearch","description":"If the user agrees to opt into receiving surveys for user research","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"projectPid","description":"Supply if creating an account via backing flow -- used for tracking purposes","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"recaptchaV2Token","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"recaptchaV3Token","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"checkoutId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"n","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SignInWithApplePayload","description":"Autogenerated return type of SignInWithApple","fields":[{"name":"apiAccessToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SignInWithAppleInput","description":"Autogenerated input type of SignInWithApple","fields":null,"inputFields":[{"name":"firstName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"lastName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"authCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"iosAppId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectDepositAccountPayload","description":"Autogenerated return type of CreateProjectDepositAccount","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectDepositAccountInput","description":"Autogenerated input type of CreateProjectDepositAccount","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"accountBusinessType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitVatNumberPayload","description":"Autogenerated return type of SubmitVatNumber","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitVatNumberInput","description":"Autogenerated input type of SubmitVatNumber","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"vatNumber","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateSetupIntentPayload","description":"Autogenerated return type of CreateSetupIntent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateSetupIntentInput","description":"Autogenerated input type of CreateSetupIntent","fields":null,"inputFields":[{"name":"setupIntentContext","description":"Context in which this stripe intent is created","type":{"kind":"ENUM","name":"StripeIntentContextTypes","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"sepaEligible","description":"If sepa should be added to the payment method types","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"StripeIntentContextTypes","description":"Different contexts for which stripe intents can be created","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CROWDFUNDING_CHECKOUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"POST_CAMPAIGN_CHECKOUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROJECT_BUILD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROFILE_SETTINGS","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreatePaymentIntentPayload","description":"Autogenerated return type of CreatePaymentIntent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"the stripe payment intent client secret used to complete a payment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePaymentIntentInput","description":"Autogenerated input type of CreatePaymentIntent","fields":null,"inputFields":[{"name":"projectId","description":"kickstarter project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":"total amount to be paid (eg. 10.55)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentIntentContext","description":"Context in which this stripe intent is created","type":{"kind":"ENUM","name":"StripeIntentContextTypes","ofType":null},"defaultValue":null},{"name":"digitalMarketingAttributed","description":"if the payment is attributed to digital marketing (default: false)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"backingId","description":"Current backing id for tracking purposes","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"checkoutId","description":"Current checkout id for tracking purposes","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePaymentSourcePayload","description":"Autogenerated return type of CreatePaymentSource","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errorMessage","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":true,"deprecationReason":"inconsistent use of GraphQL errors"},{"name":"isSuccessful","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePaymentSourceInput","description":"Autogenerated input type of CreatePaymentSource","fields":null,"inputFields":[{"name":"paymentType","description":null,"type":{"kind":"ENUM","name":"PaymentTypes","ofType":null},"defaultValue":null},{"name":"stripeToken","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"stripeCardId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"reusable","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"intentClientSecret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PaymentTypes","description":"Payment types","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CREDIT_CARD","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPaymentSourcePayload","description":"Autogenerated return type of CreateProjectPaymentSource","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectPaymentSourceInput","description":"Autogenerated input type of CreateProjectPaymentSource","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"paymentType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CreditCardPaymentType","ofType":null}},"defaultValue":null},{"name":"token","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"reusable","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPaymentSourcePayload","description":"Autogenerated return type of UpdateProjectPaymentSource","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"paymentSource","description":null,"args":[],"type":{"kind":"OBJECT","name":"CreditCard","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectPaymentSourceInput","description":"Autogenerated input type of UpdateProjectPaymentSource","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"paymentSourceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PaymentSourceDeletePayload","description":"Autogenerated return type of PaymentSourceDelete","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PaymentSourceDeleteInput","description":"Autogenerated input type of PaymentSourceDelete","fields":null,"inputFields":[{"name":"paymentSourceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitRefundCheckoutPayload","description":"Autogenerated return type of SubmitRefundCheckout","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"redirectUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckout","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefundCheckout","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitRefundCheckoutInput","description":"Autogenerated input type of SubmitRefundCheckout","fields":null,"inputFields":[{"name":"paymentSourceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"refundCheckoutId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateRewardPayload","description":"Autogenerated return type of CreateReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateRewardInput","description":"Autogenerated input type of CreateReward","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"estimatedDeliveryOn","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"latePledgeAmount","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limitPerBacker","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"rewardType","description":null,"type":{"kind":"ENUM","name":"RewardType","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RewardItemInput","ofType":null}},"defaultValue":null},{"name":"shippingPreference","description":null,"type":{"kind":"ENUM","name":"ShippingPreference","ofType":null},"defaultValue":null},{"name":"shippingRates","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRateInput","ofType":null}},"defaultValue":null},{"name":"shippingRules","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","ofType":null}},"defaultValue":null},{"name":"startsAt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"endsAt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"localReceiptLocationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"startCondition","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"endCondition","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"audienceData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AudienceInput","ofType":null},"defaultValue":null},{"name":"vatInclusivePricing","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"S3AssetInput","description":"S3 information for an asset.","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"fileName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"contentType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"fileSize","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RewardItemInput","description":"Item for a reward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"position","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"quantity","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ShippingRateInput","description":"Shipping rule for a reward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"cost","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","description":"Shipping rule for a reward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"cost","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"estimatedMin","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"estimatedMax","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AudienceInput","description":"Input related to setting the resource audience","fields":null,"inputFields":[{"name":"audience","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AudienceEnum","ofType":null}},"defaultValue":null},{"name":"token","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteRewardPayload","description":"Autogenerated return type of DeleteReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteRewardInput","description":"Autogenerated input type of DeleteReward","fields":null,"inputFields":[{"name":"id","description":"The reward ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FeatureRewardPayload","description":"Autogenerated return type of FeatureReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FeatureRewardInput","description":"Autogenerated input type of FeatureReward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"featured","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateRewardPayload","description":"Autogenerated return type of UpdateReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateRewardInput","description":"Autogenerated input type of UpdateReward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"estimatedDeliveryOn","description":null,"type":{"kind":"SCALAR","name":"Date","ofType":null},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"latePledgeAmount","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"deleteAsset","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limitPerBacker","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"rewardType","description":null,"type":{"kind":"ENUM","name":"RewardType","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RewardItemInput","ofType":null}},"defaultValue":null},{"name":"shippingPreference","description":null,"type":{"kind":"ENUM","name":"ShippingPreference","ofType":null},"defaultValue":null},{"name":"shippingRules","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","ofType":null}},"defaultValue":null},{"name":"startsAt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"endsAt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"localReceiptLocationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"startCondition","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"endCondition","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"audienceData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AudienceInput","ofType":null},"defaultValue":null},{"name":"vatInclusivePricing","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CopyRewardItemsPayload","description":"Autogenerated return type of CopyRewardItems","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CopyRewardItemsInput","description":"Autogenerated input type of CopyRewardItems","fields":null,"inputFields":[{"name":"rewardId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EndLatePledgesPayload","description":"Autogenerated return type of EndLatePledges","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EndLatePledgesInput","description":"Autogenerated input type of EndLatePledges","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateFlaggingPayload","description":"Autogenerated return type of CreateFlagging","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"flagging","description":null,"args":[],"type":{"kind":"OBJECT","name":"Flagging","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateFlaggingInput","description":"Autogenerated input type of CreateFlagging","fields":null,"inputFields":[{"name":"contentId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"kind","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"NonDeprecatedFlaggingKind","ofType":null}},"defaultValue":null},{"name":"details","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"NonDeprecatedFlaggingKind","description":"The bucket for a flagging (general reason). Does not included deprecated kinds.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PROHIBITED_ITEMS","description":"prohibited-items","isDeprecated":false,"deprecationReason":null},{"name":"CHARITY","description":"charity","isDeprecated":false,"deprecationReason":null},{"name":"RESALE","description":"resale","isDeprecated":false,"deprecationReason":null},{"name":"FALSE_CLAIMS","description":"false-claims","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT","description":"misrep-support","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT","description":"not-project","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_VIOLATION","description":"guidelines-violation","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_ISSUES","description":"post-funding-issues","isDeprecated":false,"deprecationReason":null},{"name":"SPAM","description":"spam","isDeprecated":false,"deprecationReason":null},{"name":"VICES_DRUGS","description":"vices-drugs","isDeprecated":false,"deprecationReason":null},{"name":"VICES_ALCOHOL","description":"vices-alcohol","isDeprecated":false,"deprecationReason":null},{"name":"VICES_WEAPONS","description":"vices-weapons","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_CLAIMS","description":"health-claims","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_REGULATIONS","description":"health-regulations","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_GMOS","description":"health-gmos","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_LIVE_ANIMALS","description":"health-live-animals","isDeprecated":false,"deprecationReason":null},{"name":"HEALTH_ENERGY_FOOD_AND_DRINK","description":"health-energy-food-and-drink","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_CONTESTS_COUPONS","description":"financial-contests-coupons","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_SERVICES","description":"financial-services","isDeprecated":false,"deprecationReason":null},{"name":"FINANCIAL_POLITICAL_DONATIONS","description":"financial-political-donations","isDeprecated":false,"deprecationReason":null},{"name":"OFFENSIVE_CONTENT_HATE","description":"offensive-content-hate","isDeprecated":false,"deprecationReason":null},{"name":"OFFENSIVE_CONTENT_PORN","description":"offensive-content-porn","isDeprecated":false,"deprecationReason":null},{"name":"RESELLING","description":"reselling","isDeprecated":false,"deprecationReason":null},{"name":"PLAGIARISM","description":"plagiarism","isDeprecated":false,"deprecationReason":null},{"name":"PROTOTYPE_MISREPRESENTATION","description":"prototype-misrepresentation","isDeprecated":false,"deprecationReason":null},{"name":"UNDISCLOSED_AI_USE","description":"undisclosed-ai-use","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_IMPERSONATION","description":"misrep-support-impersonation","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_OUTSTANDING_FULFILLMENT","description":"misrep-support-outstanding-fulfillment","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_SUSPICIOUS_PLEDGING","description":"misrep-support-suspicious-pledging","isDeprecated":false,"deprecationReason":null},{"name":"MISREP_SUPPORT_OTHER","description":"misrep-support-other","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_CHARITY","description":"not-project-charity","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_STUNT_OR_HOAX","description":"not-project-stunt-or-hoax","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_PERSONAL_EXPENSES","description":"not-project-personal-expenses","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_BAREBONES","description":"not-project-barebones","isDeprecated":false,"deprecationReason":null},{"name":"NOT_PROJECT_OTHER","description":"not-project-other","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_SPAM","description":"guidelines-spam","isDeprecated":false,"deprecationReason":null},{"name":"GUIDELINES_ABUSE","description":"guidelines-abuse","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_REWARD_NOT_AS_DESCRIBED","description":"post-funding-reward-not-as-described","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_REWARD_DELAYED","description":"post-funding-reward-delayed","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_SHIPPED_NEVER_RECEIVED","description":"post-funding-shipped-never-received","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_SELLING_ELSEWHERE","description":"post-funding-creator-selling-elsewhere","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_UNCOMMUNICATIVE","description":"post-funding-creator-uncommunicative","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_CREATOR_INAPPROPRIATE","description":"post-funding-creator-inappropriate","isDeprecated":false,"deprecationReason":null},{"name":"POST_FUNDING_SUSPICIOUS_THIRD_PARTY","description":"post-funding-suspicious-third-party","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_ABUSE","description":"comment-abuse","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_DOXXING","description":"comment-doxxing","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_OFFTOPIC","description":"comment-offtopic","isDeprecated":false,"deprecationReason":null},{"name":"COMMENT_SPAM","description":"comment-spam","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_ABUSE","description":"backing-abuse","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_DOXXING","description":"backing-doxxing","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_FRAUD","description":"backing-fraud","isDeprecated":false,"deprecationReason":null},{"name":"BACKING_SPAM","description":"backing-spam","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreateRewardItemPayload","description":"Autogenerated return type of CreateRewardItem","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"OBJECT","name":"RewardItem","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateRewardItemInput","description":"Autogenerated input type of CreateRewardItem","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"deliveryType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteRewardItemPayload","description":"Autogenerated return type of DeleteRewardItem","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteRewardItemInput","description":"Autogenerated input type of DeleteRewardItem","fields":null,"inputFields":[{"name":"id","description":"The reward item ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateRewardItemPayload","description":"Autogenerated return type of UpdateRewardItem","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"OBJECT","name":"RewardItem","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateRewardItemInput","description":"Autogenerated input type of UpdateRewardItem","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"deliveryType","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"deleteAsset","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateEditorialLayoutTypePayload","description":"Autogenerated return type of CreateEditorialLayoutType","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Layout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Layout","description":"An Editorial Layout","fields":[{"name":"createdAt","description":"When this editorial layout was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The description of the editorial layout","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"modules","description":"All the modules for an editorial layout","args":[{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EditorialConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"published","description":"Is the editorial layout published?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"revision","description":"The revision of the editorial layout","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sequence","description":"The sequence number of the currently published revision of the editorial","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The slug for the url of the editorial layout oage","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of the editorial layout","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateEditorialLayoutTypeInput","description":"Autogenerated input type of CreateEditorialLayoutType","fields":null,"inputFields":[{"name":"slug","description":"Slug for the Editorial Layout url","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"Title for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":"Short description for the Editorial Layout","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"modules","description":"All the Editorial Modules for this layout","type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EditorialModuleInput","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EditorialModuleInput","description":"Editorial Module.","fields":null,"inputFields":[{"name":"type","description":"Module type","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EditorialModuleType","ofType":null}},"defaultValue":null},{"name":"id","description":"Module GraphQL id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"sequence","description":"Order of the Module","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"data","description":"Module data","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EditorialModuleType","description":"Different types of Editorial modules.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ProjectCollection","description":"ProjectCollection","isDeprecated":false,"deprecationReason":null},{"name":"NewsletterSignUp","description":"NewsletterSignUp","isDeprecated":false,"deprecationReason":null},{"name":"PromoCollection","description":"PromoCollection","isDeprecated":false,"deprecationReason":null},{"name":"NewsCollection","description":"NewsCollection","isDeprecated":false,"deprecationReason":null},{"name":"FeaturedProjectCollection","description":"FeaturedProjectCollection","isDeprecated":false,"deprecationReason":null},{"name":"SingleProjectContainer","description":"SingleProjectContainer","isDeprecated":false,"deprecationReason":null},{"name":"BespokeComponent","description":"BespokeComponent","isDeprecated":false,"deprecationReason":null},{"name":"Header","description":"Header","isDeprecated":false,"deprecationReason":null},{"name":"MastheadImage","description":"MastheadImage","isDeprecated":false,"deprecationReason":null},{"name":"ExploreSubcategories","description":"ExploreSubcategories","isDeprecated":false,"deprecationReason":null},{"name":"Article","description":"Article","isDeprecated":false,"deprecationReason":null},{"name":"ShortText","description":"ShortText","isDeprecated":false,"deprecationReason":null},{"name":"EditorialRichText","description":"EditorialRichText","isDeprecated":false,"deprecationReason":null},{"name":"SurveyEmbed","description":"SurveyEmbed","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"PublishEditorialLayoutTypePayload","description":"Autogenerated return type of PublishEditorialLayoutType","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Layout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PublishEditorialLayoutTypeInput","description":"Autogenerated input type of PublishEditorialLayoutType","fields":null,"inputFields":[{"name":"slug","description":"Slug for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"revision","description":"Revision for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnpublishEditorialLayoutTypePayload","description":"Autogenerated return type of UnpublishEditorialLayoutType","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Layout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnpublishEditorialLayoutTypeInput","description":"Autogenerated input type of UnpublishEditorialLayoutType","fields":null,"inputFields":[{"name":"slug","description":"Slug for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"revision","description":"Revision for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TranslateEditorialLayoutTypePayload","description":"Autogenerated return type of TranslateEditorialLayoutType","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Layout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TranslateEditorialLayoutTypeInput","description":"Autogenerated input type of TranslateEditorialLayoutType","fields":null,"inputFields":[{"name":"slug","description":"Slug for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"revision","description":"Revision for the Editorial Layout","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserSendEmailVerificationPayload","description":"Autogenerated return type of UserSendEmailVerification","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UserSendEmailVerificationInput","description":"Autogenerated input type of UserSendEmailVerification","fields":null,"inputFields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ApplyPaymentSourceToCheckoutPayload","description":"Autogenerated return type of ApplyPaymentSourceToCheckout","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Checkout","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ApplyPaymentSourceToCheckoutInput","description":"Autogenerated input type of ApplyPaymentSourceToCheckout","fields":null,"inputFields":[{"name":"checkoutId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentSourceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"incremental","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"intentClientSecret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateCheckoutPayload","description":"Autogenerated return type of CreateCheckout","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateCheckoutInput","description":"Autogenerated input type of CreateCheckout","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardIds","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"refParam","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CompleteOnSessionCheckoutPayload","description":"Autogenerated return type of CompleteOnSessionCheckout","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CompleteOnSessionCheckoutInput","description":"Autogenerated input type of CompleteOnSessionCheckout","fields":null,"inputFields":[{"name":"checkoutId","description":"The graphql relay id of the checkout (base64 encoded)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"paymentIntentClientSecret","description":"the client_secret returned by createPaymentIntent, starts with `pi_` (the same secret passed to stripe)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentSourceId","description":"Kickstarter internal payment source id. Expects a number (not the stripe id starting with `pm_`). Pass in when using a saved card (optional)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceReusable","description":"If the payment source can be reused for future payments (optional)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"applePay","description":"Apple pay attributes for creating a payment source (optional)","type":{"kind":"INPUT_OBJECT","name":"ApplePayInput","ofType":null},"defaultValue":null},{"name":"refParam","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ApplePayInput","description":"Necessary fields for Apple Pay","fields":null,"inputFields":[{"name":"token","description":"Stripe token","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentInstrumentName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentNetwork","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"transactionIdentifier","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateBackingPayload","description":"Autogenerated return type of CreateBacking","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateBackingInput","description":"Autogenerated input type of CreateBacking","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":"Optional, will default to combined reward minimums + shipping","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardId","description":"Relay encoded Reward ID - legacy - mutually exclusive with reward_ids","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"rewardIds","description":"List of Relay encoded Reward/Add-on IDs - mutually exclusive with reward_id","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"paymentType","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"refParam","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"setupIntentClientSecret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"applePay","description":null,"type":{"kind":"INPUT_OBJECT","name":"ApplePayInput","ofType":null},"defaultValue":null},{"name":"incremental","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateBackingPayload","description":"Autogenerated return type of UpdateBacking","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateBackingInput","description":"Autogenerated input type of UpdateBacking","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardId","description":"Relay encoded Reward ID - legacy","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"rewardIds","description":"List of Relay encoded Reward/Add-on IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":"new payment source id","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"intentClientSecret","description":"Stripe SetupIntent client secret","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"applePay","description":null,"type":{"kind":"INPUT_OBJECT","name":"ApplePayInput","ofType":null},"defaultValue":null},{"name":"incremental","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateBackingPaymentSourcePayload","description":"Autogenerated return type of UpdateBackingPaymentSource","fields":[{"name":"backing","description":null,"args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateBackingPaymentSourceInput","description":"Autogenerated input type of UpdateBackingPaymentSource","fields":null,"inputFields":[{"name":"id","description":"ID of the backing being updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"paymentSourceId","description":"new payment source id","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"applePay","description":null,"type":{"kind":"INPUT_OBJECT","name":"ApplePayInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateBackerCompletedPayload","description":"Autogenerated return type of UpdateBackerCompleted","fields":[{"name":"backing","description":null,"args":[],"type":{"kind":"OBJECT","name":"Backing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateBackerCompletedInput","description":"Autogenerated input type of UpdateBackerCompleted","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"backerCompleted","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetBackingNotePayload","description":"Autogenerated return type of SetBackingNote","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"noteBody","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetBackingNoteInput","description":"Autogenerated input type of SetBackingNote","fields":null,"inputFields":[{"name":"backingId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"noteBody","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"noteType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BackingNoteType","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BackingNoteType","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CreatorBackingNote","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BackerBackingNote","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"CreateApplePayBackingPayload","description":"Autogenerated return type of CreateApplePayBacking","fields":[{"name":"checkout","description":null,"args":[],"type":{"kind":"OBJECT","name":"Checkout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateApplePayBackingInput","description":"Autogenerated input type of CreateApplePayBacking","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locationId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"token","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentInstrumentName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"paymentNetwork","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"transactionIdentifier","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"refParam","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LikeQuizProjectPayload","description":"Autogenerated return type of LikeQuizProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LikeQuizProjectInput","description":"Autogenerated input type of LikeQuizProject","fields":null,"inputFields":[{"name":"selectedLikeableAttributeIds","description":"A list of selected likeable attribute ids associated to the quiz project","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"quizProjectId","description":"The id of the quiz project that the user has liked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"likedSomethingElse","description":"Whether or not the user has indicated that they like something else about the project other than the attributes presented","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LikeProjectPayload","description":"Autogenerated return type of LikeProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LikeProjectInput","description":"Autogenerated input type of LikeProject","fields":null,"inputFields":[{"name":"id","description":"The id of the project that the user has liked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":"The context or page that the user liked this project from. Used for tracking","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnlikeProjectPayload","description":"Autogenerated return type of UnlikeProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UnlikeProjectInput","description":"Autogenerated input type of UnlikeProject","fields":null,"inputFields":[{"name":"id","description":"The id of the project that the user has unliked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":"The context or page that the user unliked this project from. Used for tracking","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DislikeProjectPayload","description":"Autogenerated return type of DislikeProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DislikeProjectInput","description":"Autogenerated input type of DislikeProject","fields":null,"inputFields":[{"name":"id","description":"The id of the project that the user has disliked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":"The context or page that the user disliked this project from. Used for tracking","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UndislikeProjectPayload","description":"Autogenerated return type of UndislikeProject","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UndislikeProjectInput","description":"Autogenerated input type of UndislikeProject","fields":null,"inputFields":[{"name":"id","description":"The id of the project that the user has un-disliked","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingContext","description":"The context or page that the user undisliked this project from. Used for tracking","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectUpdateRequestPayload","description":"Autogenerated return type of CreateProjectUpdateRequest","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectUpdateRequestInput","description":"Autogenerated input type of CreateProjectUpdateRequest","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"location","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ProjectUpdateRequestLocation","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ProjectUpdateRequestLocation","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"updates","description":"Project Update Request from the prompt at the top of Project Updates","isDeprecated":false,"deprecationReason":null},{"name":"backer_bar","description":"Project Update Request from the Backer Bar flow","isDeprecated":false,"deprecationReason":null},{"name":"comment","description":"Project Update Request from the inline prompt on a comment","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"TriggerThirdPartyEventPayload","description":"Autogenerated return type of TriggerThirdPartyEvent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TriggerThirdPartyEventInput","description":"Autogenerated input type of TriggerThirdPartyEvent","fields":null,"inputFields":[{"name":"deviceId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"eventName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"firebaseScreen","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"null"},{"name":"firebasePreviousScreen","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"null"},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ThirdPartyEventItemInput","ofType":null}}},"defaultValue":"[]"},{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"pledgeAmount","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":"null"},{"name":"shipping","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":"null"},{"name":"transactionId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"null"},{"name":"userId","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"null"},{"name":"appData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AppDataInput","ofType":null},"defaultValue":"{}"},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ThirdPartyEventItemInput","description":null,"fields":null,"inputFields":[{"name":"itemId","description":"The ID of the item.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"itemName","description":"The name of the item.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"price","description":"The monetary price of the item, in units of the specified currency parameter.","type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":"null"}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AppDataInput","description":"Parameters for sharing app data and device information with the Conversions API","fields":null,"inputFields":[{"name":"advertiserTrackingEnabled","description":"Use this field to specify ATT permission on an iOS 14.5+ device.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"applicationTrackingEnabled","description":"A person can choose to enable ad tracking on an app level. Your SDK should allow an app developer to put an opt-out setting into their app. Use this field to specify the person's choice.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"extinfo","description":"Extended device information, such as screen width and height. Required only for native.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTrackEventPayload","description":"Autogenerated return type of CreateTrackEvent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"successful","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTrackEventInput","description":"Autogenerated input type of CreateTrackEvent","fields":null,"inputFields":[{"name":"eventName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"eventProperties","description":null,"type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateConsentPayload","description":"Autogenerated return type of UpdateConsent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateConsentInput","description":"Autogenerated input type of UpdateConsent","fields":null,"inputFields":[{"name":"consentJson","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"userIdentifier","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAttributionEventPayload","description":"Autogenerated return type of CreateAttributionEvent","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"successful","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAttributionEventInput","description":"Autogenerated input type of CreateAttributionEvent","fields":null,"inputFields":[{"name":"eventName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"eventProperties","description":null,"type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OptOutOfPledgeManagerPayload","description":"Autogenerated return type of OptOutOfPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManager","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeManager","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"OptOutOfPledgeManagerInput","description":"Autogenerated input type of OptOutOfPledgeManager","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"The pledge manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"optOutReason","description":"The reason for opting out","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OptOutReasonEnum","ofType":null}},"defaultValue":null},{"name":"optOutDetails","description":"Additional details for opting out","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OptInToPledgeManagerPayload","description":"Autogenerated return type of OptInToPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Success if opted in to pledge manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"OptInToPledgeManagerInput","description":"Autogenerated input type of OptInToPledgeManager","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitPledgeManagerPayload","description":"Autogenerated return type of SubmitPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitPledgeManagerInput","description":"Autogenerated input type of SubmitPledgeManager","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"The pledge manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ReviewPledgeManagerPayload","description":"Autogenerated return type of ReviewPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ReviewPledgeManagerInput","description":"Autogenerated input type of ReviewPledgeManager","fields":null,"inputFields":[{"name":"pledgeManagerId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"approved","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"reviewNote","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RevertPledgeManagerToDraftPayload","description":"Autogenerated return type of RevertPledgeManagerToDraft","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RevertPledgeManagerToDraftInput","description":"Autogenerated input type of RevertPledgeManagerToDraft","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"The pledge manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AssignPledgeManagerPayload","description":"Autogenerated return type of AssignPledgeManager","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AssignPledgeManagerInput","description":"Autogenerated input type of AssignPledgeManager","fields":null,"inputFields":[{"name":"pledgeManagerId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"userId","description":"(optional) assigns a user to a pledge manager to review","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":"null"},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleTariffSurchargesEnabledPayload","description":"Autogenerated return type of ToggleTariffSurchargesEnabled","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleTariffSurchargesEnabledInput","description":"Autogenerated input type of ToggleTariffSurchargesEnabled","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"The pledge manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CompleteOrderPayload","description":"Autogenerated return type of CompleteOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"The stripe payment intent client secret used to complete a payment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"The stripe payment intent status (if requires_action, it will be)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OnSessionPaymentIntentStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OnSessionPaymentIntentStatus","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUIRES_ACTION","description":"If the setup requires additional actions, such as authenticating with 3D Secure","isDeprecated":false,"deprecationReason":null},{"name":"SUCCEEDED","description":"Setup of payment source was successful.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CompleteOrderInput","description":"Autogenerated input type of CompleteOrder","fields":null,"inputFields":[{"name":"orderId","description":"The order id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"stripeConfirmationTokenId","description":"The stripe confirmation token used to complete a payment (web only)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"stripePaymentMethodId","description":"The stripe payment method id, starting with either `card_` or `pm_` (mobile only)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":"Kickstarter internal payment source id. Expects a number (not the stripe id starting with `pm_`). Pass in when using a saved card (optional)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceReusable","description":"If the new payment source can be reused for future payments (optional)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"paymentMethodTypes","description":"List of accepted stripe payment method types","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CompleteZeroDollarOrderPayload","description":"Autogenerated return type of CompleteZeroDollarOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Whether the state transition succeeded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CompleteZeroDollarOrderInput","description":"Autogenerated input type of CompleteZeroDollarOrder","fields":null,"inputFields":[{"name":"orderId","description":"The order id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SucceedOrderPayload","description":"Autogenerated return type of SucceedOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Whether the state transition succeeded","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SucceedOrderInput","description":"Autogenerated input type of SucceedOrder","fields":null,"inputFields":[{"name":"orderId","description":"The order id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"orderEditId","description":"The order edit id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConfirmOrderAddressPayload","description":"Autogenerated return type of ConfirmOrderAddress","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ConfirmOrderAddressInput","description":"Autogenerated input type of ConfirmOrderAddress","fields":null,"inputFields":[{"name":"orderId","description":"The order id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"addressId","description":"The address id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePledgeManagementRewardPayload","description":"Autogenerated return type of CreatePledgeManagementReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePledgeManagementRewardInput","description":"Autogenerated input type of CreatePledgeManagementReward","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"enabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"shippingPreference","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ShippingPreference","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limitPerOrder","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"rewardType","description":null,"type":{"kind":"ENUM","name":"RewardType","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RewardItemInput","ofType":null}},"defaultValue":null},{"name":"shippingRules","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","ofType":null}},"defaultValue":null},{"name":"localReceiptLocationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"audienceData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AudienceInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePledgeManagementRewardPayload","description":"Autogenerated return type of UpdatePledgeManagementReward","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePledgeManagementRewardInput","description":"Autogenerated input type of UpdatePledgeManagementReward","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"enabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"amount","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"shippingPreference","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ShippingPreference","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limitPerOrder","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"image","description":null,"type":{"kind":"INPUT_OBJECT","name":"S3AssetInput","ofType":null},"defaultValue":null},{"name":"altText","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"deleteAsset","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"items","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RewardItemInput","ofType":null}},"defaultValue":null},{"name":"shippingRules","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRuleInput","ofType":null}},"defaultValue":null},{"name":"localReceiptLocationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"audienceData","description":null,"type":{"kind":"INPUT_OBJECT","name":"AudienceInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateWavePayload","description":"Autogenerated return type of CreateWave","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateWaveInput","description":"Autogenerated input type of CreateWave","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CloseWavePayload","description":"Autogenerated return type of CloseWave","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CloseWaveInput","description":"Autogenerated input type of CloseWave","fields":null,"inputFields":[{"name":"checkoutWaveId","description":"The checkout wave id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetTaxCategoryPayload","description":"Autogenerated return type of SetTaxCategory","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"itemTaxConfig","description":"The updated item tax config","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemTaxConfig","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetTaxCategoryInput","description":"Autogenerated input type of SetTaxCategory","fields":null,"inputFields":[{"name":"itemId","description":"The item id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"taxCategoryId","description":"The tax category id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"taxCategoryInput","description":"Input for creating or updating a tax category","type":{"kind":"INPUT_OBJECT","name":"TaxCategoryInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TaxCategoryInput","description":"Input to create or update a tax category","fields":null,"inputFields":[{"name":"userLabel","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"taxCode","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateItemTaxConfigPayload","description":"Autogenerated return type of CreateOrUpdateItemTaxConfig","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item for the ID that was passed in","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateItemTaxConfigInput","description":"Autogenerated input type of CreateOrUpdateItemTaxConfig","fields":null,"inputFields":[{"name":"itemId","description":"The item id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"itemIsTaxExempt","description":"If the item is taxable","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"marketValue","description":"The market value of the item","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"surchargeCost","description":"The surcharge cost for the item","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateRewardShippingRatesPayload","description":"Autogenerated return type of UpdateRewardShippingRates","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reward","description":"The updated BackerReward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateRewardShippingRatesInput","description":"Autogenerated input type of UpdateRewardShippingRates","fields":null,"inputFields":[{"name":"rewardId","description":"Kickstarter BackerReward (base or addon) id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"shippingRates","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ShippingRateInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrderableConfigPayload","description":"Autogenerated return type of UpdateOrderableConfig","fields":[{"name":"addOn","description":"The updated BackerReward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reward","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project associated with the reward","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrderableConfigInput","description":"Autogenerated input type of UpdateOrderableConfig","fields":null,"inputFields":[{"name":"orderableId","description":"Kickstarter BackerReward id (for now)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"enabled","description":"Available for cross-sells or not","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"crossSellPrice","description":"Price for cross-sells","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limit","description":"How many are cross-sellable total","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"limitPerOrder","description":"How many a backer can add to their order","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateCrossSellsOnOrderPayload","description":"Autogenerated return type of UpdateCrossSellsOnOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The Order that has been updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateCrossSellsOnOrderInput","description":"Autogenerated input type of UpdateCrossSellsOnOrder","fields":null,"inputFields":[{"name":"orderId","description":"Order ID that the Cross Sells are being added onto","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"crossSells","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SelectedCrossSellInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SelectedCrossSellInput","description":"Cross Sell selection to add to an Order","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"quantity","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpgradeRewardOnOrderPayload","description":"Autogenerated return type of UpgradeRewardOnOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order that has been updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpgradeRewardOnOrderInput","description":"Autogenerated input type of UpgradeRewardOnOrder","fields":null,"inputFields":[{"name":"orderId","description":"ID of the order that the upgrade is being applied to","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"rewardUpgradeId","description":"ID of the reward to upgrade to","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"locationId","description":"ID of the location the backer selected","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AcknowledgeUpgradesPayload","description":"Autogenerated return type of AcknowledgeUpgrades","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order that has been updated","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AcknowledgeUpgradesInput","description":"Autogenerated input type of AcknowledgeUpgrades","fields":null,"inputFields":[{"name":"orderId","description":"ID of the order to acknowledge upgrades on","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteStockLocationPayload","description":"Autogenerated return type of DeleteStockLocation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project associated with the stock location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteStockLocationInput","description":"Autogenerated input type of DeleteStockLocation","fields":null,"inputFields":[{"name":"stockLocationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BulkEditStockLocationMappingsPayload","description":"Autogenerated return type of BulkEditStockLocationMappings","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stockLocation","description":"The updated stock location","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StockLocation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"BulkEditStockLocationMappingsInput","description":"Autogenerated input type of BulkEditStockLocationMappings","fields":null,"inputFields":[{"name":"stockLocationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"locationIds","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateVatConfigPayload","description":"Autogenerated return type of CreateOrUpdateVatConfig","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project associated with the VAT Config","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateVatConfigInput","description":"Autogenerated input type of CreateOrUpdateVatConfig","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"locationVatNumbers","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LocationVatNumberInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LocationVatNumberInput","description":"Input to create or update a VAT number for a location.","fields":null,"inputFields":[{"name":"locationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"vatNumber","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"optOut","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetShippingConfigPayload","description":"Autogenerated return type of SetShippingConfig","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Updated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetShippingConfigInput","description":"Autogenerated input type of SetShippingConfig","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"shippingType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ShippingTypeEnum","ofType":null}},"defaultValue":null},{"name":"shippingUnit","description":null,"type":{"kind":"ENUM","name":"ShippingUnitEnum","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateShippingZonePayload","description":"Autogenerated return type of CreateOrUpdateShippingZone","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"The project with updated shipping zones","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateShippingZoneInput","description":"Autogenerated input type of CreateOrUpdateShippingZone","fields":null,"inputFields":[{"name":"shippingZoneId","description":"The existing shipping zone id, if updating","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"projectId","description":"The id of the project the shipping zone is under","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"locationIds","description":"IDs of locations included in the shipping zone","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"weightRanges","description":"Weight ranges and cost data for the shipping zone","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"WeightRangeInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"WeightRangeInput","description":"Input to create or update weight ranges","fields":null,"inputFields":[{"name":"min","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"cost","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteShippingZonePayload","description":"Autogenerated return type of DeleteShippingZone","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteShippingZoneInput","description":"Autogenerated input type of DeleteShippingZone","fields":null,"inputFields":[{"name":"shippingZoneId","description":"The id of the to be deleted shipping","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateItemWeightsPayload","description":"Autogenerated return type of UpdateItemWeights","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Updated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateItemWeightsInput","description":"Autogenerated input type of UpdateItemWeights","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"itemWeightInputs","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemWeightInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemWeightInput","description":"Input to create or update weight ranges","fields":null,"inputFields":[{"name":"itemId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"weight","description":null,"type":{"kind":"SCALAR","name":"Float","ofType":null},"defaultValue":null},{"name":"exclude","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateTrackingNumberPayload","description":"Autogenerated return type of CreateOrUpdateTrackingNumber","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shipment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Shipment","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateTrackingNumberInput","description":"Autogenerated input type of CreateOrUpdateTrackingNumber","fields":null,"inputFields":[{"name":"shipmentId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"trackingNumber","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProcessTrackingNumbersPayload","description":"Autogenerated return type of ProcessTrackingNumbers","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ProcessTrackingNumbersInput","description":"Autogenerated input type of ProcessTrackingNumbers","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProcessDigitalResourcesCsvPayload","description":"Autogenerated return type of ProcessDigitalResourcesCsv","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ProcessDigitalResourcesCsvInput","description":"Autogenerated input type of ProcessDigitalResourcesCsv","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"s3Key","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"searchQuery","description":null,"type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateAcceptsNewBackersPayload","description":"Autogenerated return type of UpdateAcceptsNewBackers","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Updated project","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateAcceptsNewBackersInput","description":"Autogenerated input type of UpdateAcceptsNewBackers","fields":null,"inputFields":[{"name":"projectId","description":"ID of the project related to the pledge manager","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"acceptsNewBackers","description":"Whether the pledge manager accepts new backers or not","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePledgeManagerStatePayload","description":"Autogenerated return type of UpdatePledgeManagerState","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pledgeManager","description":"The updated Pledge Manager","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PledgeManager","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePledgeManagerStateInput","description":"Autogenerated input type of UpdatePledgeManagerState","fields":null,"inputFields":[{"name":"pledgeManagerId","description":"Pledge Manager id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"state","description":"New state for the Pledge Manager","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateEligibilityQuestionnairePayload","description":"Autogenerated return type of CreateEligibilityQuestionnaire","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateEligibilityQuestionnaireInput","description":"Autogenerated input type of CreateEligibilityQuestionnaire","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"chargedUsSalesTax","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"chargedUkVat","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"chargedEuVat","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"chargedGstOrHst","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"backersReceivingGoodsFromMultiplePlaces","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"tableAcknowledged","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdatePreviewOrderPayload","description":"Autogenerated return type of CreateOrUpdatePreviewOrder","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The preview order","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdatePreviewOrderInput","description":"Autogenerated input type of CreateOrUpdatePreviewOrder","fields":null,"inputFields":[{"name":"projectId","description":"The id of the project the order should belong to","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"existingOrderId","description":"The id of an existing order to update (optional)","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"locationId","description":"The id of the location for the order","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"entryPoint","description":"The type of order you are trying to preview, e.g. one with a crowdfunding backing","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PreviewEntryPointEnum","ofType":null}},"defaultValue":null},{"name":"baseRewardId","description":"The id of the crowdfunding base reward for the order (optional)","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"addonIds","description":"The ids of the crowdfunding add-ons for the order (optional)","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitOrderEditPayload","description":"Autogenerated return type of SubmitOrderEdit","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderEdit","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEdit","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitOrderEditInput","description":"Autogenerated input type of SubmitOrderEdit","fields":null,"inputFields":[{"name":"orderEditId","description":"The OrderEdit id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateDraftOrderEditPayload","description":"Autogenerated return type of CreateOrUpdateDraftOrderEdit","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":"The order the edit will apply to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateDraftOrderEditInput","description":"Autogenerated input type of CreateOrUpdateDraftOrderEdit","fields":null,"inputFields":[{"name":"orderId","description":"The id of the order that is being edited","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"existingAdditionId","description":"The id of the existing addition to be updated","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"additions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"NewRewardInput","ofType":null}}},"defaultValue":null},{"name":"edits","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EditInput","ofType":null}}},"defaultValue":null},{"name":"upgrade","description":null,"type":{"kind":"INPUT_OBJECT","name":"NewRewardInput","ofType":null},"defaultValue":null},{"name":"removalIds","description":"The ids of additions or upgrades to remove from the order edit","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"NewRewardInput","description":"Data necessary to create an order edit addition or upgrade","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"answers","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AnswerInput","ofType":null}},"defaultValue":null},{"name":"lineItemUpdates","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LineItemInput","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AnswerInput","description":"Answer associated with a particular question and answerable.","fields":null,"inputFields":[{"name":"questionId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"response","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"answerableId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LineItemInput","description":"Line item belonging to a cart","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"optionValueIds","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"answers","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AnswerInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EditInput","description":"Data necessary to create an order edit line item edit","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"optionValueIds","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"answers","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"EditAnswerInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"EditAnswerInput","description":null,"fields":null,"inputFields":[{"name":"response","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"answerId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RejectOrderEditPayload","description":"Autogenerated return type of RejectOrderEdit","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderEdit","description":"The rejected order edit","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrderEdit","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RejectOrderEditInput","description":"Autogenerated input type of RejectOrderEdit","fields":null,"inputFields":[{"name":"orderEditId","description":"The order edit id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CalculateOrderEditTotalsPayload","description":"Autogenerated return type of CalculateOrderEditTotals","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"order","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Order","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CalculateOrderEditTotalsInput","description":"Autogenerated input type of CalculateOrderEditTotals","fields":null,"inputFields":[{"name":"orderEditId","description":"The OrderEdit id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AcceptOrderEditPayload","description":"Autogenerated return type of AcceptOrderEdit","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"The stripe payment intent client secret used to complete a payment","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"The stripe payment intent status (if requires_action, it will be)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"OnSessionPaymentIntentStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AcceptOrderEditInput","description":"Autogenerated input type of AcceptOrderEdit","fields":null,"inputFields":[{"name":"orderEditId","description":"The order edit id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"stripeConfirmationTokenId","description":"The stripe confirmation token used to complete a payment (web only)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"stripePaymentMethodId","description":"The stripe payment method id, starting with either `card_` or `pm_` (mobile only)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceId","description":"Kickstarter internal payment source id. Expects a number (not the stripe id starting with `pm_`). Pass in when using a saved card (optional)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"paymentSourceReusable","description":"If the new payment source can be reused for future payments (optional)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"paymentMethodTypes","description":"List of accepted stripe payment method types","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOptionPayload","description":"Autogenerated return type of CreateOption","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optionType","description":null,"args":[],"type":{"kind":"OBJECT","name":"OptionType","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOptionInput","description":"Autogenerated input type of CreateOption","fields":null,"inputFields":[{"name":"itemId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"values","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOptionPayload","description":"Autogenerated return type of UpdateOption","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optionType","description":null,"args":[],"type":{"kind":"OBJECT","name":"OptionType","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOptionInput","description":"Autogenerated input type of UpdateOption","fields":null,"inputFields":[{"name":"optionTypeId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"values","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteOptionPayload","description":"Autogenerated return type of DeleteOption","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item that the deleted option type was associated with","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RewardItem","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if option_type is deleted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteOptionInput","description":"Autogenerated input type of DeleteOption","fields":null,"inputFields":[{"name":"optionTypeId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateQuestionPayload","description":"Autogenerated return type of CreateQuestion","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":null,"args":[],"type":{"kind":"OBJECT","name":"Question","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateQuestionInput","description":"Autogenerated input type of CreateQuestion","fields":null,"inputFields":[{"name":"questionableId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"questionableType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionableType","ofType":null}},"defaultValue":null},{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionType","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"choices","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"choiceSelectionLimit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"optional","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"QuestionableType","description":"Types that can be associated with a Question","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Project","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"RewardItem","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Reward","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UpdateQuestionPayload","description":"Autogenerated return type of UpdateQuestion","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"question","description":null,"args":[],"type":{"kind":"OBJECT","name":"Question","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateQuestionInput","description":"Autogenerated input type of UpdateQuestion","fields":null,"inputFields":[{"name":"questionId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionType","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"choices","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"choiceSelectionLimit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"optional","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteQuestionPayload","description":"Autogenerated return type of DeleteQuestion","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if question is deleted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteQuestionInput","description":"Autogenerated input type of DeleteQuestion","fields":null,"inputFields":[{"name":"questionId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BulkEditQuestionsPayload","description":"Autogenerated return type of BulkEditQuestions","fields":[{"name":"backerSurvey","description":"The updated backer survey.","args":[],"type":{"kind":"OBJECT","name":"BackerSurvey","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"BulkEditQuestionsInput","description":"Autogenerated input type of BulkEditQuestions","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"questions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"QuestionInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"QuestionInput","description":"Question associated with a particular questionable.","fields":null,"inputFields":[{"name":"type","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionType","ofType":null}},"defaultValue":null},{"name":"prompt","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"questionableId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"questionableType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"QuestionableType","ofType":null}},"defaultValue":null},{"name":"choices","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"choiceSelectionLimit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"optional","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateItemVariantsPayload","description":"Autogenerated return type of UpdateItemVariants","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"itemVariants","description":"The updated item variants","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemVariant","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateItemVariantsInput","description":"Autogenerated input type of UpdateItemVariants","fields":null,"inputFields":[{"name":"itemVariants","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemVariantInput","ofType":null}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemVariantInput","description":"Input for updating an Item Variant","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteBackerSurveyPayload","description":"Autogenerated return type of DeleteBackerSurvey","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if backer survey is deleted.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteBackerSurveyInput","description":"Autogenerated input type of DeleteBackerSurvey","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetBackerSurveyPayload","description":"Autogenerated return type of ResetBackerSurvey","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if backer survey responses are reset.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetBackerSurveyInput","description":"Autogenerated input type of ResetBackerSurvey","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubmitResponsesPayload","description":"Autogenerated return type of SubmitResponses","fields":[{"name":"cart","description":"The finalized cart, if submission is successful.","args":[],"type":{"kind":"OBJECT","name":"Cart","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deliveryAddress","description":"The delivery address attached to backing.","args":[],"type":{"kind":"OBJECT","name":"Address","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Succeeds if cart is finalized.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SubmitResponsesInput","description":"Autogenerated input type of SubmitResponses","fields":null,"inputFields":[{"name":"cartId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"addressId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"lineItemUpdates","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"LineItemInput","ofType":null}}}},"defaultValue":null},{"name":"backerQuestionAnswers","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AnswerInput","ofType":null}}}},"defaultValue":null},{"name":"finalizeOnSubmit","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateBackerSurveyPayload","description":"Autogenerated return type of CreateBackerSurvey","fields":[{"name":"backerSurvey","description":"The backer survey if creation was successful.","args":[],"type":{"kind":"OBJECT","name":"BackerSurvey","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateBackerSurveyInput","description":"Autogenerated input type of CreateBackerSurvey","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetAddressCollectionEnabledPayload","description":"Autogenerated return type of SetAddressCollectionEnabled","fields":[{"name":"addressCollectionEnabled","description":"Whether or not the creator has enabled address collection for this project.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"addressCollectionForDigitalReward","description":"Whether or not addresses should be collected for digital reward backers.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetAddressCollectionEnabledInput","description":"Autogenerated input type of SetAddressCollectionEnabled","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"addressCollectionEnabled","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"addressCollectionForDigitalReward","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LockAddressesPayload","description":"Autogenerated return type of LockAddresses","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Returns the updated project if successful.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"LockAddressesInput","description":"Autogenerated input type of LockAddresses","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SendSurveyPayload","description":"Autogenerated return type of SendSurvey","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"survey","description":"The updated survey.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackerSurvey","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SendSurveyInput","description":"Autogenerated input type of SendSurvey","fields":null,"inputFields":[{"name":"surveyId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateBackerSurveyIntroPayload","description":"Autogenerated return type of UpdateBackerSurveyIntro","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"survey","description":"The updated survey.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BackerSurvey","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateBackerSurveyIntroInput","description":"Autogenerated input type of UpdateBackerSurveyIntro","fields":null,"inputFields":[{"name":"surveyId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"intro","description":null,"type":{"kind":"SCALAR","name":"HTML","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateResourceAudiencePayload","description":"Autogenerated return type of UpdateResourceAudience","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"resource","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"SecretResource","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateResourceAudienceInput","description":"Autogenerated input type of UpdateResourceAudience","fields":null,"inputFields":[{"name":"resourceId","description":"The resource id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"removeRestrictions","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AddUserToSecretRewardGroupPayload","description":"Autogenerated return type of AddUserToSecretRewardGroup","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project data","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AddUserToSecretRewardGroupInput","description":"Autogenerated input type of AddUserToSecretRewardGroup","fields":null,"inputFields":[{"name":"projectId","description":"ID of the project with secret rewards","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"secretRewardToken","description":"Secret reward token shared by the creator","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IssueRefundPayload","description":"Autogenerated return type of IssueRefund","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"refund","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Refund","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckout","description":"The in-memory refund checkout instance","args":[],"type":{"kind":"OBJECT","name":"RefundCheckout","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"IssueRefundInput","description":"Autogenerated input type of IssueRefund","fields":null,"inputFields":[{"name":"backingId","description":"ID of associated backing","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"reason","description":"Reason for adjustment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"RefundReasonType","ofType":null}},"defaultValue":null},{"name":"message","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"intentClientSecret","description":"Stripe SetupIntent client secret","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"refundChargeId","description":"Refund charge id if a refund charge was issued prior to issuing refund","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"creatorPaymentSourceId","description":"Stripe Payment Source ID","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"refundPledgeInput","description":"Parameters to refund a pledge. Leave blank to not refund the pledge.","type":{"kind":"INPUT_OBJECT","name":"RefundPledgeInput","ofType":null},"defaultValue":null},{"name":"refundOrderInput","description":"Parameters to refund a order.","type":{"kind":"INPUT_OBJECT","name":"RefundOrderInput","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateRefundChargePayload","description":"Autogenerated return type of CreateRefundCharge","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientSecret","description":"If `requires_action` is true, `client_secret` should be used to initiate additional client-side authentication steps","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundChargeId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"requiresAction","description":"Whether this refund charge requires additional client-side authentication steps","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateRefundChargeInput","description":"Autogenerated input type of CreateRefundCharge","fields":null,"inputFields":[{"name":"backingId","description":"ID of associated backing","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"refundAmountCents","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"creatorPaymentSourceId","description":"Stripe Payment Source ID","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"confirmationTokenId","description":"Stripe confirmation token ID","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"reusable","description":"Whether to reuse the saved payment source","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateRefundCheckoutPayload","description":"Autogenerated return type of UpdateRefundCheckout","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refundCheckout","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefundCheckout","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateRefundCheckoutInput","description":"Autogenerated input type of UpdateRefundCheckout","fields":null,"inputFields":[{"name":"refundCheckoutId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"state","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"stateReason","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrderAdjustmentPayload","description":"Autogenerated return type of UpdateOrderAdjustment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"orderAdjustment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefundAdjustmentData","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrderAdjustmentInput","description":"Autogenerated input type of UpdateOrderAdjustment","fields":null,"inputFields":[{"name":"refundId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"success","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"stateReason","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateShopPayload","description":"Autogenerated return type of CreateOrUpdateShop","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":"Project associated with the Shopify shop","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateShopInput","description":"Autogenerated input type of CreateOrUpdateShop","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"shopifyDomain","description":"The Shopify domain","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"token","description":"The Shopify access token","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateVariantMappingsPayload","description":"Autogenerated return type of CreateVariantMappings","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateVariantMappingsInput","description":"Autogenerated input type of CreateVariantMappings","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"mappings","description":"Array of variant mappings to have records created for","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"VariantMappingInput","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"VariantMappingInput","description":"A kickstarter item variant id and a shopify variant id","fields":null,"inputFields":[{"name":"itemVariantId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"shopifyVariantId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ToggleSyncingForShopPayload","description":"Autogenerated return type of ToggleSyncingForShop","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ToggleSyncingForShopInput","description":"Autogenerated input type of ToggleSyncingForShop","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteVariantMappingsPayload","description":"Autogenerated return type of DeleteVariantMappings","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteVariantMappingsInput","description":"Autogenerated input type of DeleteVariantMappings","fields":null,"inputFields":[{"name":"projectId","description":"The project id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateBackerReportSegmentPayload","description":"Autogenerated return type of CreateBackerReportSegment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":null,"args":[],"type":{"kind":"OBJECT","name":"SavedSearchSegment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateBackerReportSegmentInput","description":"Autogenerated input type of CreateBackerReportSegment","fields":null,"inputFields":[{"name":"name","description":"The name of saved segment","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":"The project ID of the request","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"segmentId","description":"The ID of the segment to update. If null, a new segment will be created","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"segmentBody","description":"A set of search parameters to save for reëxecution","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"duplicate","description":"If true, the segment will be duplicated","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteBackerReportSegmentPayload","description":"Autogenerated return type of DeleteBackerReportSegment","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Indicates if the deletion was successful","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteBackerReportSegmentInput","description":"Autogenerated input type of DeleteBackerReportSegment","fields":null,"inputFields":[{"name":"segmentId","description":"The ID of the segment to delete","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrUpdateRecentSearchPayload","description":"Autogenerated return type of CreateOrUpdateRecentSearch","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":null,"args":[],"type":{"kind":"OBJECT","name":"RecentSearch","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrUpdateRecentSearchInput","description":"Autogenerated input type of CreateOrUpdateRecentSearch","fields":null,"inputFields":[{"name":"name","description":"The name of the search","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"body","description":"The search query as URL params","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteRecentSearchPayload","description":"Autogenerated return type of DeleteRecentSearch","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Indicates if the deletion was successful","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteRecentSearchInput","description":"Autogenerated input type of DeleteRecentSearch","fields":null,"inputFields":[{"name":"id","description":"The ID of the recent search to delete","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DistributeDigitalAccessResourcesPayload","description":"Autogenerated return type of DistributeDigitalAccessResources","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DistributeDigitalAccessResourcesInput","description":"Autogenerated input type of DistributeDigitalAccessResources","fields":null,"inputFields":[{"name":"projectId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"resources","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"resourcesType","description":"Type of resource distribution: 'unique' or 'shared'","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ResourcesTypeEnum","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"searchQuery","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ResourcesTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"UNIQUE","description":"Each backer gets a unique resource","isDeprecated":false,"deprecationReason":null},{"name":"SHARED","description":"All backers share the same resource","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SetUserBadgesPayload","description":"Autogenerated return type of SetUserBadges","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetUserBadgesInput","description":"Autogenerated input type of SetUserBadges","fields":null,"inputFields":[{"name":"badgeNames","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null},{"name":"userId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A list of all directives supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Directive","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":"If this server supports mutation, the type that mutation operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":"The type that query operations will be rooted at.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":"If this server support subscription, the type that subscription operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"types","description":"A list of all types supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Indicates this type is a union. `possibleTypes` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Indicates this type is an enum. `enumValues` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Indicates this type is an input object. `inputFields` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":"Indicates this type is a list. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":"Indicates this type is a non-null. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"QUERY","description":"Location adjacent to a query operation.","isDeprecated":false,"deprecationReason":null},{"name":"MUTATION","description":"Location adjacent to a mutation operation.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIPTION","description":"Location adjacent to a subscription operation.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD","description":"Location adjacent to a field.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_DEFINITION","description":"Location adjacent to a fragment definition.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_SPREAD","description":"Location adjacent to a fragment spread.","isDeprecated":false,"deprecationReason":null},{"name":"INLINE_FRAGMENT","description":"Location adjacent to an inline fragment.","isDeprecated":false,"deprecationReason":null},{"name":"SCHEMA","description":"Location adjacent to a schema definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":"Location adjacent to a scalar definition.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Location adjacent to an object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_DEFINITION","description":"Location adjacent to a field definition.","isDeprecated":false,"deprecationReason":null},{"name":"ARGUMENT_DEFINITION","description":"Location adjacent to an argument definition.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Location adjacent to an interface definition.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Location adjacent to a union definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Location adjacent to an enum definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM_VALUE","description":"Location adjacent to an enum value definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Location adjacent to an input object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_FIELD_DEFINITION","description":"Location adjacent to an input object field definition.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null}],"directives":[{"name":"include","description":"Directs the executor to include this field or fragment only when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Included when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}} \ No newline at end of file diff --git a/graphql/queries/ShippableLocationsQuery.graphql b/graphql/queries/ShippableLocationsQuery.graphql new file mode 100644 index 0000000000..1ff745e806 --- /dev/null +++ b/graphql/queries/ShippableLocationsQuery.graphql @@ -0,0 +1,5 @@ +query ShippableLocations { + shippingCountryLocations { + ...LocationFragment + } +}