declare type ZEUS_INTERFACES = never; declare type ZEUS_UNIONS = never; export declare type ValueTypes = { /** Defines user's account type */ ["AccountType"]: AccountType; ["ChangeSubscriptionInput"]: { subscriptionID: number; subscriptionPlanID?: number; }; /** Checkout data needed to begin payment process */ ["CheckoutDataInput"]: { /** An id of a chosen subscription plan */ planID: string; /** Quantity of subscriptions that user wants */ quantity?: number; /** Customer data */ customer?: ValueTypes["CustomerInput"]; /** Vat data */ vat?: ValueTypes["VatInput"]; /** Optional discount coupon */ coupon?: string; /** URL to which user should be redirected after successful transaction */ successURL?: string; /** URL to which user should be redirected after failed transaction */ cancelURL?: string; }; /** Customer data for checkout information */ ["CustomerInput"]: { /** User's post code */ postCode?: string; /** Must be true for marketing to be allowed */ marketingConsent?: boolean; /** User's email address */ email?: string; /** User's country */ country?: string; }; /** Amount is a number that gives precise representation of real numbers */ ["Decimal"]: unknown; /** Endpoint returnes a full path to the project without host */ ["Endpoint"]: AliasType<{ /** Full project uri without host */ uri?: true; __typename?: true; }>; /** A source object */ ["FakerSource"]: AliasType<{ /** File checksum */ checksum?: true; contents?: true; /** Name of source file */ filename?: true; /** Return an url by which source file can be accessed */ getUrl?: true; __typename?: true; }>; /** Connection object containing list of faker sources */ ["FakerSourceConnection"]: AliasType<{ /** Connection pageInfo */ pageInfo?: ValueTypes["PageInfo"]; /** List of sources returned by connection */ sources?: ValueTypes["FakerSource"]; __typename?: true; }>; ["FileServerCredentials"]: unknown; /** Request header */ ["Header"]: AliasType<{ /** Header name */ key?: true; /** Header value */ value?: true; __typename?: true; }>; /** Team member */ ["Member"]: AliasType<{ /** Member email */ email?: true; /** Member role */ role?: true; /** Member username */ username?: true; __typename?: true; }>; /** Paginated members list */ ["MemberConnection"]: AliasType<{ /** List of members in this connection */ members?: ValueTypes["Member"]; /** pageInfo for member connection */ pageInfo?: ValueTypes["PageInfo"]; __typename?: true; }>; /** Team member ops */ ["MemberOps"]: AliasType<{ /** Boolean object node */ delete?: true; update?: [{ role?: ValueTypes["Role"]; }, true]; __typename?: true; }>; ["Mutation"]: AliasType<{ changeSubscription?: [{ in: ValueTypes["ChangeSubscriptionInput"]; }, true]; createProject?: [{ name: string; public?: boolean; }, ValueTypes["Project"]]; createTeam?: [{ namespace: string; name: string; }, ValueTypes["TeamOps"]]; createUser?: [{ namespace: string; public?: boolean; }, ValueTypes["User"]]; deployToFaker?: [{ id: string; }, true]; removeProject?: [{ project: string; }, true]; sync?: [{ source: string; target: string; }, true]; team?: [{ id: string; }, ValueTypes["TeamOps"]]; updateProject?: [{ in?: ValueTypes["UpdateProject"]; }, true]; updateSources?: [{ project: string; sources?: ValueTypes["NewSource"][]; }, ValueTypes["SourceUploadInfo"]]; __typename?: true; }>; /** Namespace is a root object containing projects belonging to a team or user */ ["Namespace"]: AliasType<{ project?: [{ name: string; }, ValueTypes["Project"]]; projects?: [{ limit?: number; last?: string; }, ValueTypes["ProjectConnection"]]; /** True if namespace is public */ public?: true; /** Namespace part of the slug */ slug?: true; __typename?: true; }>; /** New source payload */ ["NewSource"]: { /** source file name */ filename?: string; /** Length of source in bytes */ contentLength?: number; /** Source mime type */ contentType?: string; /** Source checksum */ checksum?: string; }; /** PageInfo contains information about connection page */ ["PageInfo"]: AliasType<{ /** last element in connection */ last?: true; /** limit set while quering */ limit?: true; /** if next is false then client recieved all available data */ next?: true; __typename?: true; }>; ["Payment"]: AliasType<{ /** Amount paid */ amount?: true; /** Currency in which payment was made */ currency?: true; /** Date indicates a when the payment was made */ date?: true; /** URL from which user can download invoice */ receiptURL?: true; /** ID of subscription for which payment was made */ subscriptionID?: true; __typename?: true; }>; /** PaymentDate is a string in a format 'YYYY-MM-DD' */ ["PaymentDate"]: unknown; /** PredictCheckout represents payment prediction for checkout data */ ["PredictCheckout"]: AliasType<{ /** Predicted checkout price */ price?: true; /** Predicted number of trial days */ trialDays?: true; __typename?: true; }>; /** Checkout data needed to begin payment process */ ["PredictCheckoutInput"]: { /** Quantity of subscriptions that user wants */ quantity?: number; /** Optional discount coupon */ coupon?: string; /** An id of a chosen subscription plan */ planID: string; }; /** Project type */ ["Project"]: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true; /** Project description */ description?: true; /** Is project enabled */ enabled?: true; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: ValueTypes["Endpoint"]; /** Unique project id */ id?: true; /** Is project mocked by faker backend */ mocked?: true; /** Project name */ name?: true; /** Project owner Can be null if project belongs to a team */ owner?: ValueTypes["User"]; /** True if project is public */ public?: true; /** Project part of the slug */ slug?: true; sources?: [{ last?: string; limit?: number; }, ValueTypes["FakerSourceConnection"]]; /** Project tags */ tags?: true; /** Team to which project belongs Can be null if project belongs to a user */ team?: ValueTypes["Team"]; __typename?: true; }>; /** Project connection object Used with paginated listing of projects */ ["ProjectConnection"]: AliasType<{ /** Current connection page info */ pageInfo?: ValueTypes["PageInfo"]; /** List of projects in connection */ projects?: ValueTypes["Project"]; __typename?: true; }>; /** type object node */ ["ProjectOps"]: AliasType<{ /** Boolean object node */ delete?: true; /** deploy project to faker */ deployToFaker?: true; update?: [{ in?: ValueTypes["UpdateProject"]; }, true]; __typename?: true; }>; /** ProjectsSortInput defines how projects from listProjects should be sorted. */ ["ProjectsSortInput"]: { /** Sorts projects by team. Sort behaviour for projects by team is implemenation depednant. */ team?: ValueTypes["SortOrder"]; /** Sort projects by creation date */ createdAt?: ValueTypes["SortOrder"]; /** Sort by name */ name?: ValueTypes["SortOrder"]; /** Sort by id */ id?: ValueTypes["SortOrder"]; /** Sort by owner */ owner?: ValueTypes["SortOrder"]; /** Sort by visisbility */ public?: ValueTypes["SortOrder"]; /** Sort by slug */ slug?: ValueTypes["SortOrder"]; /** Sort by tag */ tags?: ValueTypes["SortOrder"]; }; /** Root query type */ ["Query"]: AliasType<{ checkoutData?: [{ data: ValueTypes["CheckoutDataInput"]; }, true]; fileServerCredentials?: [{ project?: string; }, true]; findProjects?: [{ query: string; last?: string; limit?: number; }, ValueTypes["ProjectConnection"]]; findProjectsByTag?: [{ limit?: number; tag: string; last?: string; }, ValueTypes["ProjectConnection"]]; getNamespace?: [{ slug: string; }, ValueTypes["Namespace"]]; getProject?: [{ project: string; }, ValueTypes["Project"]]; getTeam?: [{ name: string; }, ValueTypes["Team"]]; getUser?: [{ username: string; }, ValueTypes["User"]]; listProjects?: [{ sort?: (ValueTypes["ProjectsSortInput"] | undefined)[]; owned?: boolean; last?: string; limit?: number; }, ValueTypes["ProjectConnection"]]; myTeams?: [{ last?: string; limit?: number; }, ValueTypes["TeamConnection"]]; /** List user payments */ payments?: ValueTypes["Payment"]; predictCheckout?: [{ data: ValueTypes["PredictCheckoutInput"]; }, ValueTypes["PredictCheckout"]]; __typename?: true; }>; /** RFC3339Date is a RFC3339 formated date-time string */ ["RFC3339Date"]: unknown; /** Team member role */ ["Role"]: Role; /** Sort order defines possible ordering of sorted outputs */ ["SortOrder"]: SortOrder; /** Source upload info object */ ["SourceUploadInfo"]: AliasType<{ /** Source file name */ filename?: true; /** List of headers that must be included in PUT request */ headers?: ValueTypes["Header"]; /** String with url used in PUT request */ putUrl?: true; __typename?: true; }>; ["Subscription"]: AliasType<{ /** Cancel subscription URL */ cancelURL?: true; /** Subscription expiration date */ expiration?: true; /** Number of seats in subscription */ quantity?: true; /** List of seats in subscription */ seats?: ValueTypes["UserConnection"]; /** Status of subscription */ status?: true; /** Subscription unique id */ subscriptionID?: true; /** Subscription plan unique id */ subscriptionPlanID?: true; /** Update subscription URL */ updateURL?: true; __typename?: true; }>; ["SubscriptionConnection"]: AliasType<{ /** Current conenction page info */ pageInfo?: ValueTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: ValueTypes["Subscription"]; __typename?: true; }>; /** Team object */ ["Team"]: AliasType<{ /** Unique team id */ id?: true; member?: [{ username: string; }, ValueTypes["Member"]]; members?: [{ last?: string; limit?: number; }, ValueTypes["MemberConnection"]]; /** Team name */ name?: true; /** Team's namespace */ namespace?: ValueTypes["Namespace"]; __typename?: true; }>; /** Teams connection */ ["TeamConnection"]: AliasType<{ /** Pagination info used in next fetch */ pageInfo?: ValueTypes["PageInfo"]; /** List of teams returned by current page in connection */ teams?: ValueTypes["Team"]; __typename?: true; }>; /** Team operations */ ["TeamOps"]: AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string; username: string; }, ValueTypes["Member"]]; createProject?: [{ public?: boolean; name: string; }, ValueTypes["Project"]]; /** Delete team */ delete?: true; /** Unique team id */ id?: true; member?: [{ username: string; }, ValueTypes["MemberOps"]]; members?: [{ last?: string; limit?: number; }, ValueTypes["MemberConnection"]]; /** Team name */ name?: true; /** Team's namespace */ namespace?: ValueTypes["Namespace"]; project?: [{ id: string; }, ValueTypes["ProjectOps"]]; __typename?: true; }>; /** Update project payload */ ["UpdateProject"]: { /** Set project visiblity */ public?: boolean; /** ID of project to be updated */ project?: string; /** New description for project */ description?: string; /** List of tags for project */ tags?: string[]; }; /** Editor user */ ["User"]: AliasType<{ /** User's account type */ accountType?: true; /** Unique user id */ id?: true; /** User's namespace */ namespace?: ValueTypes["Namespace"]; /** User's subscriptions */ subscriptions?: ValueTypes["SubscriptionConnection"]; /** Unique username */ username?: true; __typename?: true; }>; ["UserConnection"]: AliasType<{ /** Current connection page info */ pageInfo?: ValueTypes["PageInfo"]; /** List of projects in connection */ users?: ValueTypes["User"]; __typename?: true; }>; /** Vat information of a user */ ["VatInput"]: { /** Vat company street address */ street?: string; /** Vat company city address */ city?: string; /** Vat company state address. Optional. */ state?: string; /** Vat company country address. */ country?: string; /** Vat company post code address. */ postCode?: string; /** Vat number */ number?: string; /** Vat company name */ companyName?: string; }; }; export declare type PartialObjects = { /** Defines user's account type */ ["AccountType"]: AccountType; ["ChangeSubscriptionInput"]: { subscriptionID: number; subscriptionPlanID?: number; }; /** Checkout data needed to begin payment process */ ["CheckoutDataInput"]: { /** An id of a chosen subscription plan */ planID: string; /** Quantity of subscriptions that user wants */ quantity?: number; /** Customer data */ customer?: PartialObjects["CustomerInput"]; /** Vat data */ vat?: PartialObjects["VatInput"]; /** Optional discount coupon */ coupon?: string; /** URL to which user should be redirected after successful transaction */ successURL?: string; /** URL to which user should be redirected after failed transaction */ cancelURL?: string; }; /** Customer data for checkout information */ ["CustomerInput"]: { /** User's post code */ postCode?: string; /** Must be true for marketing to be allowed */ marketingConsent?: boolean; /** User's email address */ email?: string; /** User's country */ country?: string; }; /** Amount is a number that gives precise representation of real numbers */ ["Decimal"]: any; /** Endpoint returnes a full path to the project without host */ ["Endpoint"]: { __typename?: "Endpoint"; /** Full project uri without host */ uri?: string; }; /** A source object */ ["FakerSource"]: { __typename?: "FakerSource"; /** File checksum */ checksum?: string; contents?: string; /** Name of source file */ filename?: string; /** Return an url by which source file can be accessed */ getUrl?: string; }; /** Connection object containing list of faker sources */ ["FakerSourceConnection"]: { __typename?: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo?: PartialObjects["PageInfo"]; /** List of sources returned by connection */ sources?: PartialObjects["FakerSource"][]; }; ["FileServerCredentials"]: any; /** Request header */ ["Header"]: { __typename?: "Header"; /** Header name */ key?: string; /** Header value */ value?: string; }; /** Team member */ ["Member"]: { __typename?: "Member"; /** Member email */ email?: string; /** Member role */ role?: PartialObjects["Role"]; /** Member username */ username?: string; }; /** Paginated members list */ ["MemberConnection"]: { __typename?: "MemberConnection"; /** List of members in this connection */ members?: PartialObjects["Member"][]; /** pageInfo for member connection */ pageInfo?: PartialObjects["PageInfo"]; }; /** Team member ops */ ["MemberOps"]: { __typename?: "MemberOps"; /** Boolean object node */ delete?: boolean; /** Boolean object node */ update?: boolean; }; ["Mutation"]: { __typename?: "Mutation"; /** Changes subscription settings for user */ changeSubscription?: boolean; /** Create new user project public if true project is public name is project name */ createProject?: PartialObjects["Project"]; /** Create new team */ createTeam?: PartialObjects["TeamOps"]; /** Create new user namespace name for a user public is user namespace public */ createUser?: PartialObjects["User"]; /** deploy project to faker */ deployToFaker?: boolean; /** Remove project by id */ removeProject?: boolean; /** Synhronises the target project with source. It overrides existing files of target with files of sources. It does not remove files from target that do not exist in source. */ sync?: boolean; /** type object node */ team?: PartialObjects["TeamOps"]; /** Modify project */ updateProject?: boolean; /** Add sources to the project */ updateSources?: (PartialObjects["SourceUploadInfo"] | undefined)[]; }; /** Namespace is a root object containing projects belonging to a team or user */ ["Namespace"]: { __typename?: "Namespace"; /** Return project by name from namespace */ project?: PartialObjects["Project"]; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: PartialObjects["ProjectConnection"]; /** True if namespace is public */ public?: boolean; /** Namespace part of the slug */ slug?: string; }; /** New source payload */ ["NewSource"]: { /** source file name */ filename?: string; /** Length of source in bytes */ contentLength?: number; /** Source mime type */ contentType?: string; /** Source checksum */ checksum?: string; }; /** PageInfo contains information about connection page */ ["PageInfo"]: { __typename?: "PageInfo"; /** last element in connection */ last?: string; /** limit set while quering */ limit?: number; /** if next is false then client recieved all available data */ next?: boolean; }; ["Payment"]: { __typename?: "Payment"; /** Amount paid */ amount?: PartialObjects["Decimal"]; /** Currency in which payment was made */ currency?: string; /** Date indicates a when the payment was made */ date?: PartialObjects["PaymentDate"]; /** URL from which user can download invoice */ receiptURL?: string; /** ID of subscription for which payment was made */ subscriptionID?: number; }; /** PaymentDate is a string in a format 'YYYY-MM-DD' */ ["PaymentDate"]: any; /** PredictCheckout represents payment prediction for checkout data */ ["PredictCheckout"]: { __typename?: "PredictCheckout"; /** Predicted checkout price */ price?: number; /** Predicted number of trial days */ trialDays?: number; }; /** Checkout data needed to begin payment process */ ["PredictCheckoutInput"]: { /** Quantity of subscriptions that user wants */ quantity?: number; /** Optional discount coupon */ coupon?: string; /** An id of a chosen subscription plan */ planID: string; }; /** Project type */ ["Project"]: { __typename?: "Project"; /** Return creation time stamp of a project */ createdAt?: PartialObjects["RFC3339Date"]; /** Project description */ description?: string; /** Is project enabled */ enabled?: boolean; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: PartialObjects["Endpoint"]; /** Unique project id */ id?: string; /** Is project mocked by faker backend */ mocked?: boolean; /** Project name */ name?: string; /** Project owner Can be null if project belongs to a team */ owner?: PartialObjects["User"]; /** True if project is public */ public?: boolean; /** Project part of the slug */ slug?: string; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: PartialObjects["FakerSourceConnection"]; /** Project tags */ tags?: string[]; /** Team to which project belongs Can be null if project belongs to a user */ team?: PartialObjects["Team"]; }; /** Project connection object Used with paginated listing of projects */ ["ProjectConnection"]: { __typename?: "ProjectConnection"; /** Current connection page info */ pageInfo?: PartialObjects["PageInfo"]; /** List of projects in connection */ projects?: PartialObjects["Project"][]; }; /** type object node */ ["ProjectOps"]: { __typename?: "ProjectOps"; /** Boolean object node */ delete?: boolean; /** deploy project to faker */ deployToFaker?: boolean; /** Boolean object node */ update?: boolean; }; /** ProjectsSortInput defines how projects from listProjects should be sorted. */ ["ProjectsSortInput"]: { /** Sorts projects by team. Sort behaviour for projects by team is implemenation depednant. */ team?: PartialObjects["SortOrder"]; /** Sort projects by creation date */ createdAt?: PartialObjects["SortOrder"]; /** Sort by name */ name?: PartialObjects["SortOrder"]; /** Sort by id */ id?: PartialObjects["SortOrder"]; /** Sort by owner */ owner?: PartialObjects["SortOrder"]; /** Sort by visisbility */ public?: PartialObjects["SortOrder"]; /** Sort by slug */ slug?: PartialObjects["SortOrder"]; /** Sort by tag */ tags?: PartialObjects["SortOrder"]; }; /** Root query type */ ["Query"]: { __typename?: "Query"; /** Data needed by the current user to start payment flow */ checkoutData?: string; /** Returns credentials to file server. If project ID is not provided returns a credentials that grants access to all projects owned by user, otherwise creates a credentials that grants access to one project only if the project is public or belongs to a user. */ fileServerCredentials?: PartialObjects["FileServerCredentials"]; /** Returns a project connection query is a regular expresion matched agains project slug last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjects?: PartialObjects["ProjectConnection"]; /** Find projects which contain tag tag is a string last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjectsByTag?: PartialObjects["ProjectConnection"]; /** Return namespace matching slug */ getNamespace?: PartialObjects["Namespace"]; /** Return project by id */ getProject?: PartialObjects["Project"]; /** Return team by name */ getTeam?: PartialObjects["Team"]; /** Return user by name */ getUser?: PartialObjects["User"]; /** Returns a project connection If owned is true, returns only project belonging to currently logged user last is an id of the last project returned by previous call limit limits the number of returned projects */ listProjects?: PartialObjects["ProjectConnection"]; /** List of current user teams */ myTeams?: PartialObjects["TeamConnection"]; /** List user payments */ payments?: (PartialObjects["Payment"] | undefined)[]; /** Calculate checkout information */ predictCheckout?: PartialObjects["PredictCheckout"]; }; /** RFC3339Date is a RFC3339 formated date-time string */ ["RFC3339Date"]: any; /** Team member role */ ["Role"]: Role; /** Sort order defines possible ordering of sorted outputs */ ["SortOrder"]: SortOrder; /** Source upload info object */ ["SourceUploadInfo"]: { __typename?: "SourceUploadInfo"; /** Source file name */ filename?: string; /** List of headers that must be included in PUT request */ headers?: (PartialObjects["Header"] | undefined)[]; /** String with url used in PUT request */ putUrl?: string; }; ["Subscription"]: { __typename?: "Subscription"; /** Cancel subscription URL */ cancelURL?: string; /** Subscription expiration date */ expiration?: string; /** Number of seats in subscription */ quantity?: number; /** List of seats in subscription */ seats?: PartialObjects["UserConnection"]; /** Status of subscription */ status?: string; /** Subscription unique id */ subscriptionID?: number; /** Subscription plan unique id */ subscriptionPlanID?: number; /** Update subscription URL */ updateURL?: string; }; ["SubscriptionConnection"]: { __typename?: "SubscriptionConnection"; /** Current conenction page info */ pageInfo?: PartialObjects["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: PartialObjects["Subscription"][]; }; /** Team object */ ["Team"]: { __typename?: "Team"; /** Unique team id */ id?: string; /** type object node */ member?: PartialObjects["Member"]; /** Paginated list of members in team */ members?: PartialObjects["MemberConnection"]; /** Team name */ name?: string; /** Team's namespace */ namespace?: PartialObjects["Namespace"]; }; /** Teams connection */ ["TeamConnection"]: { __typename?: "TeamConnection"; /** Pagination info used in next fetch */ pageInfo?: PartialObjects["PageInfo"]; /** List of teams returned by current page in connection */ teams?: PartialObjects["Team"][]; }; /** Team operations */ ["TeamOps"]: { __typename?: "TeamOps"; /** Add member to the team */ addMember?: PartialObjects["Member"]; /** Create new team project */ createProject?: PartialObjects["Project"]; /** Delete team */ delete?: boolean; /** Unique team id */ id?: string; /** type object node */ member?: PartialObjects["MemberOps"]; /** Paginated list of members in team */ members?: PartialObjects["MemberConnection"]; /** Team name */ name?: string; /** Team's namespace */ namespace?: PartialObjects["Namespace"]; /** type object node */ project?: PartialObjects["ProjectOps"]; }; /** Update project payload */ ["UpdateProject"]: { /** Set project visiblity */ public?: boolean; /** ID of project to be updated */ project?: string; /** New description for project */ description?: string; /** List of tags for project */ tags?: string[]; }; /** Editor user */ ["User"]: { __typename?: "User"; /** User's account type */ accountType?: PartialObjects["AccountType"]; /** Unique user id */ id?: string; /** User's namespace */ namespace?: PartialObjects["Namespace"]; /** User's subscriptions */ subscriptions?: PartialObjects["SubscriptionConnection"]; /** Unique username */ username?: string; }; ["UserConnection"]: { __typename?: "UserConnection"; /** Current connection page info */ pageInfo?: PartialObjects["PageInfo"]; /** List of projects in connection */ users?: PartialObjects["User"][]; }; /** Vat information of a user */ ["VatInput"]: { /** Vat company street address */ street?: string; /** Vat company city address */ city?: string; /** Vat company state address. Optional. */ state?: string; /** Vat company country address. */ country?: string; /** Vat company post code address. */ postCode?: string; /** Vat number */ number?: string; /** Vat company name */ companyName?: string; }; }; export declare type GraphQLTypes = { /** Defines user's account type */ ["AccountType"]: AccountType; ["ChangeSubscriptionInput"]: { subscriptionID: number; subscriptionPlanID?: number; }; /** Checkout data needed to begin payment process */ ["CheckoutDataInput"]: { /** An id of a chosen subscription plan */ planID: string; /** Quantity of subscriptions that user wants */ quantity?: number; /** Customer data */ customer?: GraphQLTypes["CustomerInput"]; /** Vat data */ vat?: GraphQLTypes["VatInput"]; /** Optional discount coupon */ coupon?: string; /** URL to which user should be redirected after successful transaction */ successURL?: string; /** URL to which user should be redirected after failed transaction */ cancelURL?: string; }; /** Customer data for checkout information */ ["CustomerInput"]: { /** User's post code */ postCode?: string; /** Must be true for marketing to be allowed */ marketingConsent?: boolean; /** User's email address */ email?: string; /** User's country */ country?: string; }; /** Amount is a number that gives precise representation of real numbers */ ["Decimal"]: any; /** Endpoint returnes a full path to the project without host */ ["Endpoint"]: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string; }; /** A source object */ ["FakerSource"]: { __typename: "FakerSource"; /** File checksum */ checksum?: string; contents?: string; /** Name of source file */ filename?: string; /** Return an url by which source file can be accessed */ getUrl?: string; }; /** Connection object containing list of faker sources */ ["FakerSourceConnection"]: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: GraphQLTypes["FakerSource"][]; }; ["FileServerCredentials"]: any; /** Request header */ ["Header"]: { __typename: "Header"; /** Header name */ key: string; /** Header value */ value?: string; }; /** Team member */ ["Member"]: { __typename: "Member"; /** Member email */ email?: string; /** Member role */ role?: GraphQLTypes["Role"]; /** Member username */ username?: string; }; /** Paginated members list */ ["MemberConnection"]: { __typename: "MemberConnection"; /** List of members in this connection */ members?: GraphQLTypes["Member"][]; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; }; /** Team member ops */ ["MemberOps"]: { __typename: "MemberOps"; /** Boolean object node */ delete?: boolean; /** Boolean object node */ update?: boolean; }; ["Mutation"]: { __typename: "Mutation"; /** Changes subscription settings for user */ changeSubscription?: boolean; /** Create new user project public if true project is public name is project name */ createProject: GraphQLTypes["Project"]; /** Create new team */ createTeam?: GraphQLTypes["TeamOps"]; /** Create new user namespace name for a user public is user namespace public */ createUser: GraphQLTypes["User"]; /** deploy project to faker */ deployToFaker?: boolean; /** Remove project by id */ removeProject?: boolean; /** Synhronises the target project with source. It overrides existing files of target with files of sources. It does not remove files from target that do not exist in source. */ sync?: boolean; /** type object node */ team?: GraphQLTypes["TeamOps"]; /** Modify project */ updateProject?: boolean; /** Add sources to the project */ updateSources?: (GraphQLTypes["SourceUploadInfo"] | undefined)[]; }; /** Namespace is a root object containing projects belonging to a team or user */ ["Namespace"]: { __typename: "Namespace"; /** Return project by name from namespace */ project?: GraphQLTypes["Project"]; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: GraphQLTypes["ProjectConnection"]; /** True if namespace is public */ public?: boolean; /** Namespace part of the slug */ slug?: string; }; /** New source payload */ ["NewSource"]: { /** source file name */ filename?: string; /** Length of source in bytes */ contentLength?: number; /** Source mime type */ contentType?: string; /** Source checksum */ checksum?: string; }; /** PageInfo contains information about connection page */ ["PageInfo"]: { __typename: "PageInfo"; /** last element in connection */ last?: string; /** limit set while quering */ limit?: number; /** if next is false then client recieved all available data */ next?: boolean; }; ["Payment"]: { __typename: "Payment"; /** Amount paid */ amount?: GraphQLTypes["Decimal"]; /** Currency in which payment was made */ currency?: string; /** Date indicates a when the payment was made */ date?: GraphQLTypes["PaymentDate"]; /** URL from which user can download invoice */ receiptURL?: string; /** ID of subscription for which payment was made */ subscriptionID?: number; }; /** PaymentDate is a string in a format 'YYYY-MM-DD' */ ["PaymentDate"]: any; /** PredictCheckout represents payment prediction for checkout data */ ["PredictCheckout"]: { __typename: "PredictCheckout"; /** Predicted checkout price */ price: number; /** Predicted number of trial days */ trialDays?: number; }; /** Checkout data needed to begin payment process */ ["PredictCheckoutInput"]: { /** Quantity of subscriptions that user wants */ quantity?: number; /** Optional discount coupon */ coupon?: string; /** An id of a chosen subscription plan */ planID: string; }; /** Project type */ ["Project"]: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string; /** Is project enabled */ enabled?: boolean; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: GraphQLTypes["Endpoint"]; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: GraphQLTypes["User"]; /** True if project is public */ public?: boolean; /** Project part of the slug */ slug?: string; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: GraphQLTypes["FakerSourceConnection"]; /** Project tags */ tags?: string[]; /** Team to which project belongs Can be null if project belongs to a user */ team?: GraphQLTypes["Team"]; }; /** Project connection object Used with paginated listing of projects */ ["ProjectConnection"]: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: GraphQLTypes["Project"][]; }; /** type object node */ ["ProjectOps"]: { __typename: "ProjectOps"; /** Boolean object node */ delete?: boolean; /** deploy project to faker */ deployToFaker?: boolean; /** Boolean object node */ update?: boolean; }; /** ProjectsSortInput defines how projects from listProjects should be sorted. */ ["ProjectsSortInput"]: { /** Sorts projects by team. Sort behaviour for projects by team is implemenation depednant. */ team?: GraphQLTypes["SortOrder"]; /** Sort projects by creation date */ createdAt?: GraphQLTypes["SortOrder"]; /** Sort by name */ name?: GraphQLTypes["SortOrder"]; /** Sort by id */ id?: GraphQLTypes["SortOrder"]; /** Sort by owner */ owner?: GraphQLTypes["SortOrder"]; /** Sort by visisbility */ public?: GraphQLTypes["SortOrder"]; /** Sort by slug */ slug?: GraphQLTypes["SortOrder"]; /** Sort by tag */ tags?: GraphQLTypes["SortOrder"]; }; /** Root query type */ ["Query"]: { __typename: "Query"; /** Data needed by the current user to start payment flow */ checkoutData?: string; /** Returns credentials to file server. If project ID is not provided returns a credentials that grants access to all projects owned by user, otherwise creates a credentials that grants access to one project only if the project is public or belongs to a user. */ fileServerCredentials?: GraphQLTypes["FileServerCredentials"]; /** Returns a project connection query is a regular expresion matched agains project slug last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjects?: GraphQLTypes["ProjectConnection"]; /** Find projects which contain tag tag is a string last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjectsByTag?: GraphQLTypes["ProjectConnection"]; /** Return namespace matching slug */ getNamespace?: GraphQLTypes["Namespace"]; /** Return project by id */ getProject?: GraphQLTypes["Project"]; /** Return team by name */ getTeam?: GraphQLTypes["Team"]; /** Return user by name */ getUser?: GraphQLTypes["User"]; /** Returns a project connection If owned is true, returns only project belonging to currently logged user last is an id of the last project returned by previous call limit limits the number of returned projects */ listProjects?: GraphQLTypes["ProjectConnection"]; /** List of current user teams */ myTeams?: GraphQLTypes["TeamConnection"]; /** List user payments */ payments?: (GraphQLTypes["Payment"] | undefined)[]; /** Calculate checkout information */ predictCheckout?: GraphQLTypes["PredictCheckout"]; }; /** RFC3339Date is a RFC3339 formated date-time string */ ["RFC3339Date"]: any; /** Team member role */ ["Role"]: Role; /** Sort order defines possible ordering of sorted outputs */ ["SortOrder"]: SortOrder; /** Source upload info object */ ["SourceUploadInfo"]: { __typename: "SourceUploadInfo"; /** Source file name */ filename?: string; /** List of headers that must be included in PUT request */ headers?: (GraphQLTypes["Header"] | undefined)[]; /** String with url used in PUT request */ putUrl: string; }; ["Subscription"]: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string; /** Subscription expiration date */ expiration?: string; /** Number of seats in subscription */ quantity?: number; /** List of seats in subscription */ seats?: GraphQLTypes["UserConnection"]; /** Status of subscription */ status?: string; /** Subscription unique id */ subscriptionID?: number; /** Subscription plan unique id */ subscriptionPlanID?: number; /** Update subscription URL */ updateURL?: string; }; ["SubscriptionConnection"]: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: GraphQLTypes["Subscription"][]; }; /** Team object */ ["Team"]: { __typename: "Team"; /** Unique team id */ id?: string; /** type object node */ member?: GraphQLTypes["Member"]; /** Paginated list of members in team */ members?: GraphQLTypes["MemberConnection"]; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; }; /** Teams connection */ ["TeamConnection"]: { __typename: "TeamConnection"; /** Pagination info used in next fetch */ pageInfo: GraphQLTypes["PageInfo"]; /** List of teams returned by current page in connection */ teams?: GraphQLTypes["Team"][]; }; /** Team operations */ ["TeamOps"]: { __typename: "TeamOps"; /** Add member to the team */ addMember?: GraphQLTypes["Member"]; /** Create new team project */ createProject?: GraphQLTypes["Project"]; /** Delete team */ delete?: boolean; /** Unique team id */ id?: string; /** type object node */ member?: GraphQLTypes["MemberOps"]; /** Paginated list of members in team */ members?: GraphQLTypes["MemberConnection"]; /** Team name */ name?: string; /** Team's namespace */ namespace?: GraphQLTypes["Namespace"]; /** type object node */ project?: GraphQLTypes["ProjectOps"]; }; /** Update project payload */ ["UpdateProject"]: { /** Set project visiblity */ public?: boolean; /** ID of project to be updated */ project?: string; /** New description for project */ description?: string; /** List of tags for project */ tags?: string[]; }; /** Editor user */ ["User"]: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string; /** User's namespace */ namespace?: GraphQLTypes["Namespace"]; /** User's subscriptions */ subscriptions?: GraphQLTypes["SubscriptionConnection"]; /** Unique username */ username?: string; }; ["UserConnection"]: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: GraphQLTypes["User"][]; }; /** Vat information of a user */ ["VatInput"]: { /** Vat company street address */ street?: string; /** Vat company city address */ city?: string; /** Vat company state address. Optional. */ state?: string; /** Vat company country address. */ country?: string; /** Vat company post code address. */ postCode?: string; /** Vat number */ number?: string; /** Vat company name */ companyName?: string; }; }; /** Defines user's account type */ export declare enum AccountType { FREE = "FREE", PREMIUM = "PREMIUM" } /** Team member role */ export declare enum Role { OWNER = "OWNER", ADMIN = "ADMIN", EDITOR = "EDITOR", VIEWER = "VIEWER", CONTRIBUTOR = "CONTRIBUTOR" } /** Sort order defines possible ordering of sorted outputs */ export declare enum SortOrder { Ascending = "Ascending", Descending = "Descending" } export declare const AllTypesProps: Record; export declare const ReturnTypes: Record; export declare class GraphQLError extends Error { response: GraphQLResponse; constructor(response: GraphQLResponse); toString(): string; } export declare type UnwrapPromise = T extends Promise ? R : T; export declare type ZeusState Promise> = NonNullable>>; export declare type ZeusHook Record Promise>, N extends keyof ReturnType> = ZeusState[N]>; declare type WithTypeNameValue = T & { __typename?: true; }; declare type AliasType = WithTypeNameValue & { __alias?: Record>; }; interface GraphQLResponse { data?: Record; errors?: Array<{ message: string; }>; } declare type DeepAnify = { [P in keyof T]?: any; }; declare type IsPayLoad = T extends [any, infer PayLoad] ? PayLoad : T; declare type IsArray = T extends Array ? InputType[] : InputType; declare type FlattenArray = T extends Array ? R : T; declare type FilterFlags = { [Key in keyof Base]: Base[Key] extends Condition ? Key : never; }; declare type AllowedNames = FilterFlags[keyof Base]; declare type SubType = Pick>; declare type UnionTypes, DST> = { [P in keyof DST]: DST[P] extends true ? never : IsArray; }[keyof DST]; declare type IsInterfaced, DST> = FlattenArray extends ZEUS_INTERFACES | ZEUS_UNIONS ? UnionTypes & { [P in keyof SubType]: SRC[P]; } : { [P in keyof DST]: DST[P] extends true ? SRC[P] : IsArray; }; declare type MapType = SRC extends DeepAnify ? IsInterfaced : never; declare type InputType = IsPayLoad extends { __alias: infer R; } ? { [P in keyof R]: MapType; } & MapType, '__alias'>> : MapType>; declare type Func

= (...args: P) => R; declare type AnyFunc = Func; export declare type ArgsType = F extends Func ? P : never; declare type OperationToGraphQL = (o: Z | V, variables?: Record) => Promise>; declare type CastToGraphQL = (resultOfYourQuery: any) => (o: Z | V) => InputType; declare type SelectionFunction = (t: T | V) => T; declare type FetchFunction = (query: string, variables?: Record) => Promise; declare type NotUndefined = T extends undefined ? never : T; export declare type ResolverType = NotUndefined; export declare const ZeusSelect: () => SelectionFunction; export declare const ScalarResolver: (scalar: string, value: any) => string | false; export declare const TypesPropsResolver: ({ value, type, name, key, blockArrays }: { value: any; type: string; name: string; key?: string | undefined; blockArrays?: boolean | undefined; }) => string; export declare const $: (t: TemplateStringsArray) => any; export declare const resolverFor: [Z] extends [infer Input, any] ? Input : never; source?: unknown; }) => Z extends keyof GraphQLTypes[T] ? Pick> : never>(type: T, field: Z, fn: Y) => Y; export declare const Thunder: (fn: FetchFunction) => { query: OperationToGraphQL | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; findProjectsByTag?: [{ limit?: number | undefined; tag: string; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getNamespace?: [{ slug: string; }, AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }>] | undefined; getProject?: [{ project: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getTeam?: [{ name: string; }, AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getUser?: [{ username: string; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; listProjects?: [{ sort?: ({ /** Sorts projects by team. Sort behaviour for projects by team is implemenation depednant. */ team?: SortOrder | undefined; /** Sort projects by creation date */ createdAt?: SortOrder | undefined; /** Sort by name */ name?: SortOrder | undefined; /** Sort by id */ id?: SortOrder | undefined; /** Sort by owner */ owner?: SortOrder | undefined; /** Sort by visisbility */ public?: SortOrder | undefined; /** Sort by slug */ slug?: SortOrder | undefined; /** Sort by tag */ tags?: SortOrder | undefined; } | undefined)[] | undefined; owned?: boolean | undefined; last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; myTeams?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Pagination info used in next fetch */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of teams returned by current page in connection */ teams?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** List user payments */ payments?: AliasType<{ /** Amount paid */ amount?: true | undefined; /** Currency in which payment was made */ currency?: true | undefined; /** Date indicates a when the payment was made */ date?: true | undefined; /** URL from which user can download invoice */ receiptURL?: true | undefined; /** ID of subscription for which payment was made */ subscriptionID?: true | undefined; __typename?: true | undefined; }> | undefined; predictCheckout?: [{ data: ValueTypes["PredictCheckoutInput"]; }, AliasType<{ /** Predicted checkout price */ price?: true | undefined; /** Predicted number of trial days */ trialDays?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>, { __typename: "Query"; /** Data needed by the current user to start payment flow */ checkoutData?: string | undefined; /** Returns credentials to file server. If project ID is not provided returns a credentials that grants access to all projects owned by user, otherwise creates a credentials that grants access to one project only if the project is public or belongs to a user. */ fileServerCredentials?: GraphQLTypes["FileServerCredentials"]; /** Returns a project connection query is a regular expresion matched agains project slug last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** Find projects which contain tag tag is a string last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjectsByTag?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** Return namespace matching slug */ getNamespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** Return project by id */ getProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Return team by name */ getTeam?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; /** Return user by name */ getUser?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: any | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: any | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** Returns a project connection If owned is true, returns only project belonging to currently logged user last is an id of the last project returned by previous call limit limits the number of returned projects */ listProjects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** List of current user teams */ myTeams?: { __typename: "TeamConnection"; /** Pagination info used in next fetch */ pageInfo: GraphQLTypes["PageInfo"]; /** List of teams returned by current page in connection */ teams?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; }[] | undefined; } | undefined; /** List user payments */ payments?: ({ __typename: "Payment"; /** Amount paid */ amount?: GraphQLTypes["Decimal"]; /** Currency in which payment was made */ currency?: string | undefined; /** Date indicates a when the payment was made */ date?: GraphQLTypes["PaymentDate"]; /** URL from which user can download invoice */ receiptURL?: string | undefined; /** ID of subscription for which payment was made */ subscriptionID?: number | undefined; } | undefined)[] | undefined; /** Calculate checkout information */ predictCheckout?: { __typename: "PredictCheckout"; /** Predicted checkout price */ price: number; /** Predicted number of trial days */ trialDays?: number | undefined; } | undefined; }>; mutation: OperationToGraphQL | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; createTeam?: [{ namespace: string; name: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; createUser?: [{ namespace: string; public?: boolean | undefined; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; deployToFaker?: [{ id: string; }, true] | undefined; removeProject?: [{ project: string; }, true] | undefined; sync?: [{ source: string; target: string; }, true] | undefined; team?: [{ id: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; updateProject?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; updateSources?: [{ project: string; sources?: { /** source file name */ filename?: string | undefined; /** Length of source in bytes */ contentLength?: number | undefined; /** Source mime type */ contentType?: string | undefined; /** Source checksum */ checksum?: string | undefined; }[] | undefined; }, AliasType<{ /** Source file name */ filename?: true | undefined; /** List of headers that must be included in PUT request */ headers?: AliasType<{ /** Header name */ key?: true | undefined; /** Header value */ value?: true | undefined; __typename?: true | undefined; }> | undefined; /** String with url used in PUT request */ putUrl?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>, { __typename: "Mutation"; /** Changes subscription settings for user */ changeSubscription?: boolean | undefined; /** Create new user project public if true project is public name is project name */ createProject: GraphQLTypes["Project"]; /** Create new team */ createTeam?: { __typename: "TeamOps"; /** Add member to the team */ addMember?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Create new team project */ createProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Delete team */ delete?: boolean | undefined; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "MemberOps"; /** Boolean object node */ delete?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name?: string | undefined; /** Team's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** type object node */ project?: { __typename: "ProjectOps"; /** Boolean object node */ delete?: boolean | undefined; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; } | undefined; /** Create new user namespace name for a user public is user namespace public */ createUser: GraphQLTypes["User"]; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Remove project by id */ removeProject?: boolean | undefined; /** Synhronises the target project with source. It overrides existing files of target with files of sources. It does not remove files from target that do not exist in source. */ sync?: boolean | undefined; /** type object node */ team?: { __typename: "TeamOps"; /** Add member to the team */ addMember?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Create new team project */ createProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Delete team */ delete?: boolean | undefined; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "MemberOps"; /** Boolean object node */ delete?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name?: string | undefined; /** Team's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** type object node */ project?: { __typename: "ProjectOps"; /** Boolean object node */ delete?: boolean | undefined; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; } | undefined; /** Modify project */ updateProject?: boolean | undefined; /** Add sources to the project */ updateSources?: ({ __typename: "SourceUploadInfo"; /** Source file name */ filename?: string | undefined; /** List of headers that must be included in PUT request */ headers?: ({ __typename: "Header"; /** Header name */ key: string; /** Header value */ value?: string | undefined; } | undefined)[] | undefined; /** String with url used in PUT request */ putUrl: string; } | undefined)[] | undefined; }>; }; export declare const Chain: (input: RequestInfo, init?: RequestInit | undefined) => { query: OperationToGraphQL | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; findProjectsByTag?: [{ limit?: number | undefined; tag: string; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getNamespace?: [{ slug: string; }, AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }>] | undefined; getProject?: [{ project: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getTeam?: [{ name: string; }, AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getUser?: [{ username: string; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; listProjects?: [{ sort?: ({ /** Sorts projects by team. Sort behaviour for projects by team is implemenation depednant. */ team?: SortOrder | undefined; /** Sort projects by creation date */ createdAt?: SortOrder | undefined; /** Sort by name */ name?: SortOrder | undefined; /** Sort by id */ id?: SortOrder | undefined; /** Sort by owner */ owner?: SortOrder | undefined; /** Sort by visisbility */ public?: SortOrder | undefined; /** Sort by slug */ slug?: SortOrder | undefined; /** Sort by tag */ tags?: SortOrder | undefined; } | undefined)[] | undefined; owned?: boolean | undefined; last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; myTeams?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Pagination info used in next fetch */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of teams returned by current page in connection */ teams?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** List user payments */ payments?: AliasType<{ /** Amount paid */ amount?: true | undefined; /** Currency in which payment was made */ currency?: true | undefined; /** Date indicates a when the payment was made */ date?: true | undefined; /** URL from which user can download invoice */ receiptURL?: true | undefined; /** ID of subscription for which payment was made */ subscriptionID?: true | undefined; __typename?: true | undefined; }> | undefined; predictCheckout?: [{ data: ValueTypes["PredictCheckoutInput"]; }, AliasType<{ /** Predicted checkout price */ price?: true | undefined; /** Predicted number of trial days */ trialDays?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>, { __typename: "Query"; /** Data needed by the current user to start payment flow */ checkoutData?: string | undefined; /** Returns credentials to file server. If project ID is not provided returns a credentials that grants access to all projects owned by user, otherwise creates a credentials that grants access to one project only if the project is public or belongs to a user. */ fileServerCredentials?: GraphQLTypes["FileServerCredentials"]; /** Returns a project connection query is a regular expresion matched agains project slug last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** Find projects which contain tag tag is a string last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjectsByTag?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** Return namespace matching slug */ getNamespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** Return project by id */ getProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Return team by name */ getTeam?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; /** Return user by name */ getUser?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: any | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: any | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** Returns a project connection If owned is true, returns only project belonging to currently logged user last is an id of the last project returned by previous call limit limits the number of returned projects */ listProjects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** List of current user teams */ myTeams?: { __typename: "TeamConnection"; /** Pagination info used in next fetch */ pageInfo: GraphQLTypes["PageInfo"]; /** List of teams returned by current page in connection */ teams?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; }[] | undefined; } | undefined; /** List user payments */ payments?: ({ __typename: "Payment"; /** Amount paid */ amount?: GraphQLTypes["Decimal"]; /** Currency in which payment was made */ currency?: string | undefined; /** Date indicates a when the payment was made */ date?: GraphQLTypes["PaymentDate"]; /** URL from which user can download invoice */ receiptURL?: string | undefined; /** ID of subscription for which payment was made */ subscriptionID?: number | undefined; } | undefined)[] | undefined; /** Calculate checkout information */ predictCheckout?: { __typename: "PredictCheckout"; /** Predicted checkout price */ price: number; /** Predicted number of trial days */ trialDays?: number | undefined; } | undefined; }>; mutation: OperationToGraphQL | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; createTeam?: [{ namespace: string; name: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; createUser?: [{ namespace: string; public?: boolean | undefined; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; deployToFaker?: [{ id: string; }, true] | undefined; removeProject?: [{ project: string; }, true] | undefined; sync?: [{ source: string; target: string; }, true] | undefined; team?: [{ id: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; updateProject?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; updateSources?: [{ project: string; sources?: { /** source file name */ filename?: string | undefined; /** Length of source in bytes */ contentLength?: number | undefined; /** Source mime type */ contentType?: string | undefined; /** Source checksum */ checksum?: string | undefined; }[] | undefined; }, AliasType<{ /** Source file name */ filename?: true | undefined; /** List of headers that must be included in PUT request */ headers?: AliasType<{ /** Header name */ key?: true | undefined; /** Header value */ value?: true | undefined; __typename?: true | undefined; }> | undefined; /** String with url used in PUT request */ putUrl?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>, { __typename: "Mutation"; /** Changes subscription settings for user */ changeSubscription?: boolean | undefined; /** Create new user project public if true project is public name is project name */ createProject: GraphQLTypes["Project"]; /** Create new team */ createTeam?: { __typename: "TeamOps"; /** Add member to the team */ addMember?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Create new team project */ createProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Delete team */ delete?: boolean | undefined; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "MemberOps"; /** Boolean object node */ delete?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name?: string | undefined; /** Team's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** type object node */ project?: { __typename: "ProjectOps"; /** Boolean object node */ delete?: boolean | undefined; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; } | undefined; /** Create new user namespace name for a user public is user namespace public */ createUser: GraphQLTypes["User"]; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Remove project by id */ removeProject?: boolean | undefined; /** Synhronises the target project with source. It overrides existing files of target with files of sources. It does not remove files from target that do not exist in source. */ sync?: boolean | undefined; /** type object node */ team?: { __typename: "TeamOps"; /** Add member to the team */ addMember?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Create new team project */ createProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Delete team */ delete?: boolean | undefined; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "MemberOps"; /** Boolean object node */ delete?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name?: string | undefined; /** Team's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** type object node */ project?: { __typename: "ProjectOps"; /** Boolean object node */ delete?: boolean | undefined; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; } | undefined; /** Modify project */ updateProject?: boolean | undefined; /** Add sources to the project */ updateSources?: ({ __typename: "SourceUploadInfo"; /** Source file name */ filename?: string | undefined; /** List of headers that must be included in PUT request */ headers?: ({ __typename: "Header"; /** Header name */ key: string; /** Header value */ value?: string | undefined; } | undefined)[] | undefined; /** String with url used in PUT request */ putUrl: string; } | undefined)[] | undefined; }>; }; export declare const Zeus: { query: (o: ValueTypes["Query"]) => string; mutation: (o: ValueTypes["Mutation"]) => string; }; export declare const Cast: { query: CastToGraphQL | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; findProjectsByTag?: [{ limit?: number | undefined; tag: string; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getNamespace?: [{ slug: string; }, AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }>] | undefined; getProject?: [{ project: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getTeam?: [{ name: string; }, AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getUser?: [{ username: string; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; listProjects?: [{ sort?: ({ /** Sorts projects by team. Sort behaviour for projects by team is implemenation depednant. */ team?: SortOrder | undefined; /** Sort projects by creation date */ createdAt?: SortOrder | undefined; /** Sort by name */ name?: SortOrder | undefined; /** Sort by id */ id?: SortOrder | undefined; /** Sort by owner */ owner?: SortOrder | undefined; /** Sort by visisbility */ public?: SortOrder | undefined; /** Sort by slug */ slug?: SortOrder | undefined; /** Sort by tag */ tags?: SortOrder | undefined; } | undefined)[] | undefined; owned?: boolean | undefined; last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; myTeams?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Pagination info used in next fetch */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of teams returned by current page in connection */ teams?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** List user payments */ payments?: AliasType<{ /** Amount paid */ amount?: true | undefined; /** Currency in which payment was made */ currency?: true | undefined; /** Date indicates a when the payment was made */ date?: true | undefined; /** URL from which user can download invoice */ receiptURL?: true | undefined; /** ID of subscription for which payment was made */ subscriptionID?: true | undefined; __typename?: true | undefined; }> | undefined; predictCheckout?: [{ data: ValueTypes["PredictCheckoutInput"]; }, AliasType<{ /** Predicted checkout price */ price?: true | undefined; /** Predicted number of trial days */ trialDays?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>, { __typename: "Query"; /** Data needed by the current user to start payment flow */ checkoutData?: string | undefined; /** Returns credentials to file server. If project ID is not provided returns a credentials that grants access to all projects owned by user, otherwise creates a credentials that grants access to one project only if the project is public or belongs to a user. */ fileServerCredentials?: GraphQLTypes["FileServerCredentials"]; /** Returns a project connection query is a regular expresion matched agains project slug last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** Find projects which contain tag tag is a string last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjectsByTag?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** Return namespace matching slug */ getNamespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** Return project by id */ getProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Return team by name */ getTeam?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; /** Return user by name */ getUser?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: any | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: any | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** Returns a project connection If owned is true, returns only project belonging to currently logged user last is an id of the last project returned by previous call limit limits the number of returned projects */ listProjects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** List of current user teams */ myTeams?: { __typename: "TeamConnection"; /** Pagination info used in next fetch */ pageInfo: GraphQLTypes["PageInfo"]; /** List of teams returned by current page in connection */ teams?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; }[] | undefined; } | undefined; /** List user payments */ payments?: ({ __typename: "Payment"; /** Amount paid */ amount?: GraphQLTypes["Decimal"]; /** Currency in which payment was made */ currency?: string | undefined; /** Date indicates a when the payment was made */ date?: GraphQLTypes["PaymentDate"]; /** URL from which user can download invoice */ receiptURL?: string | undefined; /** ID of subscription for which payment was made */ subscriptionID?: number | undefined; } | undefined)[] | undefined; /** Calculate checkout information */ predictCheckout?: { __typename: "PredictCheckout"; /** Predicted checkout price */ price: number; /** Predicted number of trial days */ trialDays?: number | undefined; } | undefined; }>; mutation: CastToGraphQL | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; createTeam?: [{ namespace: string; name: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; createUser?: [{ namespace: string; public?: boolean | undefined; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; deployToFaker?: [{ id: string; }, true] | undefined; removeProject?: [{ project: string; }, true] | undefined; sync?: [{ source: string; target: string; }, true] | undefined; team?: [{ id: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; updateProject?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; updateSources?: [{ project: string; sources?: { /** source file name */ filename?: string | undefined; /** Length of source in bytes */ contentLength?: number | undefined; /** Source mime type */ contentType?: string | undefined; /** Source checksum */ checksum?: string | undefined; }[] | undefined; }, AliasType<{ /** Source file name */ filename?: true | undefined; /** List of headers that must be included in PUT request */ headers?: AliasType<{ /** Header name */ key?: true | undefined; /** Header value */ value?: true | undefined; __typename?: true | undefined; }> | undefined; /** String with url used in PUT request */ putUrl?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>, { __typename: "Mutation"; /** Changes subscription settings for user */ changeSubscription?: boolean | undefined; /** Create new user project public if true project is public name is project name */ createProject: GraphQLTypes["Project"]; /** Create new team */ createTeam?: { __typename: "TeamOps"; /** Add member to the team */ addMember?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Create new team project */ createProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Delete team */ delete?: boolean | undefined; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "MemberOps"; /** Boolean object node */ delete?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name?: string | undefined; /** Team's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** type object node */ project?: { __typename: "ProjectOps"; /** Boolean object node */ delete?: boolean | undefined; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; } | undefined; /** Create new user namespace name for a user public is user namespace public */ createUser: GraphQLTypes["User"]; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Remove project by id */ removeProject?: boolean | undefined; /** Synhronises the target project with source. It overrides existing files of target with files of sources. It does not remove files from target that do not exist in source. */ sync?: boolean | undefined; /** type object node */ team?: { __typename: "TeamOps"; /** Add member to the team */ addMember?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Create new team project */ createProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Delete team */ delete?: boolean | undefined; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "MemberOps"; /** Boolean object node */ delete?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name?: string | undefined; /** Team's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** type object node */ project?: { __typename: "ProjectOps"; /** Boolean object node */ delete?: boolean | undefined; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; } | undefined; /** Modify project */ updateProject?: boolean | undefined; /** Add sources to the project */ updateSources?: ({ __typename: "SourceUploadInfo"; /** Source file name */ filename?: string | undefined; /** List of headers that must be included in PUT request */ headers?: ({ __typename: "Header"; /** Header name */ key: string; /** Header value */ value?: string | undefined; } | undefined)[] | undefined; /** String with url used in PUT request */ putUrl: string; } | undefined)[] | undefined; }>; }; export declare const Selectors: { query: SelectionFunction | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; findProjectsByTag?: [{ limit?: number | undefined; tag: string; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getNamespace?: [{ slug: string; }, AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }>] | undefined; getProject?: [{ project: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getTeam?: [{ name: string; }, AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getUser?: [{ username: string; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; listProjects?: [{ sort?: ({ /** Sorts projects by team. Sort behaviour for projects by team is implemenation depednant. */ team?: SortOrder | undefined; /** Sort projects by creation date */ createdAt?: SortOrder | undefined; /** Sort by name */ name?: SortOrder | undefined; /** Sort by id */ id?: SortOrder | undefined; /** Sort by owner */ owner?: SortOrder | undefined; /** Sort by visisbility */ public?: SortOrder | undefined; /** Sort by slug */ slug?: SortOrder | undefined; /** Sort by tag */ tags?: SortOrder | undefined; } | undefined)[] | undefined; owned?: boolean | undefined; last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; myTeams?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Pagination info used in next fetch */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of teams returned by current page in connection */ teams?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** List user payments */ payments?: AliasType<{ /** Amount paid */ amount?: true | undefined; /** Currency in which payment was made */ currency?: true | undefined; /** Date indicates a when the payment was made */ date?: true | undefined; /** URL from which user can download invoice */ receiptURL?: true | undefined; /** ID of subscription for which payment was made */ subscriptionID?: true | undefined; __typename?: true | undefined; }> | undefined; predictCheckout?: [{ data: ValueTypes["PredictCheckoutInput"]; }, AliasType<{ /** Predicted checkout price */ price?: true | undefined; /** Predicted number of trial days */ trialDays?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>>; mutation: SelectionFunction | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; createTeam?: [{ namespace: string; name: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; createUser?: [{ namespace: string; public?: boolean | undefined; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; deployToFaker?: [{ id: string; }, true] | undefined; removeProject?: [{ project: string; }, true] | undefined; sync?: [{ source: string; target: string; }, true] | undefined; team?: [{ id: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; updateProject?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; updateSources?: [{ project: string; sources?: { /** source file name */ filename?: string | undefined; /** Length of source in bytes */ contentLength?: number | undefined; /** Source mime type */ contentType?: string | undefined; /** Source checksum */ checksum?: string | undefined; }[] | undefined; }, AliasType<{ /** Source file name */ filename?: true | undefined; /** List of headers that must be included in PUT request */ headers?: AliasType<{ /** Header name */ key?: true | undefined; /** Header value */ value?: true | undefined; __typename?: true | undefined; }> | undefined; /** String with url used in PUT request */ putUrl?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>>; }; export declare const Gql: { query: OperationToGraphQL | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; findProjectsByTag?: [{ limit?: number | undefined; tag: string; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getNamespace?: [{ slug: string; }, AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }>] | undefined; getProject?: [{ project: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getTeam?: [{ name: string; }, AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; getUser?: [{ username: string; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; listProjects?: [{ sort?: ({ /** Sorts projects by team. Sort behaviour for projects by team is implemenation depednant. */ team?: SortOrder | undefined; /** Sort projects by creation date */ createdAt?: SortOrder | undefined; /** Sort by name */ name?: SortOrder | undefined; /** Sort by id */ id?: SortOrder | undefined; /** Sort by owner */ owner?: SortOrder | undefined; /** Sort by visisbility */ public?: SortOrder | undefined; /** Sort by slug */ slug?: SortOrder | undefined; /** Sort by tag */ tags?: SortOrder | undefined; } | undefined)[] | undefined; owned?: boolean | undefined; last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; myTeams?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Pagination info used in next fetch */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of teams returned by current page in connection */ teams?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** List user payments */ payments?: AliasType<{ /** Amount paid */ amount?: true | undefined; /** Currency in which payment was made */ currency?: true | undefined; /** Date indicates a when the payment was made */ date?: true | undefined; /** URL from which user can download invoice */ receiptURL?: true | undefined; /** ID of subscription for which payment was made */ subscriptionID?: true | undefined; __typename?: true | undefined; }> | undefined; predictCheckout?: [{ data: ValueTypes["PredictCheckoutInput"]; }, AliasType<{ /** Predicted checkout price */ price?: true | undefined; /** Predicted number of trial days */ trialDays?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>, { __typename: "Query"; /** Data needed by the current user to start payment flow */ checkoutData?: string | undefined; /** Returns credentials to file server. If project ID is not provided returns a credentials that grants access to all projects owned by user, otherwise creates a credentials that grants access to one project only if the project is public or belongs to a user. */ fileServerCredentials?: GraphQLTypes["FileServerCredentials"]; /** Returns a project connection query is a regular expresion matched agains project slug last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** Find projects which contain tag tag is a string last is an id of the last project returned by previous call limit limits the number of returned projects */ findProjectsByTag?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** Return namespace matching slug */ getNamespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** Return project by id */ getProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Return team by name */ getTeam?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; /** Return user by name */ getUser?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: any | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: any | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** Returns a project connection If owned is true, returns only project belonging to currently logged user last is an id of the last project returned by previous call limit limits the number of returned projects */ listProjects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: any | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** List of current user teams */ myTeams?: { __typename: "TeamConnection"; /** Pagination info used in next fetch */ pageInfo: GraphQLTypes["PageInfo"]; /** List of teams returned by current page in connection */ teams?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; }[] | undefined; } | undefined; /** List user payments */ payments?: ({ __typename: "Payment"; /** Amount paid */ amount?: GraphQLTypes["Decimal"]; /** Currency in which payment was made */ currency?: string | undefined; /** Date indicates a when the payment was made */ date?: GraphQLTypes["PaymentDate"]; /** URL from which user can download invoice */ receiptURL?: string | undefined; /** ID of subscription for which payment was made */ subscriptionID?: number | undefined; } | undefined)[] | undefined; /** Calculate checkout information */ predictCheckout?: { __typename: "PredictCheckout"; /** Predicted checkout price */ price: number; /** Predicted number of trial days */ trialDays?: number | undefined; } | undefined; }>; mutation: OperationToGraphQL | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; createTeam?: [{ namespace: string; name: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; createUser?: [{ namespace: string; public?: boolean | undefined; }, AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; deployToFaker?: [{ id: string; }, true] | undefined; removeProject?: [{ project: string; }, true] | undefined; sync?: [{ source: string; target: string; }, true] | undefined; team?: [{ id: string; }, AliasType<{ addMember?: [{ role: ValueTypes["Role"]; loginCallback?: string | undefined; username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; createProject?: [{ public?: boolean | undefined; name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Delete team */ delete?: true | undefined; /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; update?: [{ role?: Role | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType<{ project?: [{ name: string; }, AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; projects?: [{ limit?: number | undefined; last?: string | undefined; }, AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ projects?: AliasType<{ /** Return creation time stamp of a project */ createdAt?: true | undefined; /** Project description */ description?: true | undefined; /** Is project enabled */ enabled?: true | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: AliasType<{ /** Full project uri without host */ uri?: true | undefined; __typename?: true | undefined; }> | undefined; /** Unique project id */ id?: true | undefined; /** Is project mocked by faker backend */ mocked?: true | undefined; /** Project name */ name?: true | undefined; /** Project owner Can be null if project belongs to a team */ owner?: AliasType<{ /** User's account type */ accountType?: true | undefined; /** Unique user id */ id?: true | undefined; /** User's namespace */ namespace?: AliasType | undefined; /** User's subscriptions */ subscriptions?: AliasType<{ /** Current conenction page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of subscriptions in connection */ subscriptions?: AliasType<{ /** Cancel subscription URL */ cancelURL?: true | undefined; /** Subscription expiration date */ expiration?: true | undefined; /** Number of seats in subscription */ quantity?: true | undefined; /** List of seats in subscription */ seats?: AliasType<{ /** Current connection page info */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of projects in connection */ users?: AliasType | undefined; __typename?: true | undefined; }> | undefined; /** Status of subscription */ status?: true | undefined; /** Subscription unique id */ subscriptionID?: true | undefined; /** Subscription plan unique id */ subscriptionPlanID?: true | undefined; /** Update subscription URL */ updateURL?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; /** Unique username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** True if project is public */ public?: true | undefined; /** Project part of the slug */ slug?: true | undefined; sources?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** Connection pageInfo */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; /** List of sources returned by connection */ sources?: AliasType<{ /** File checksum */ checksum?: true | undefined; contents?: true | undefined; /** Name of source file */ filename?: true | undefined; /** Return an url by which source file can be accessed */ getUrl?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Project tags */ tags?: true | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: AliasType<{ /** Unique team id */ id?: true | undefined; member?: [{ username: string; }, AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }>] | undefined; members?: [{ last?: string | undefined; limit?: number | undefined; }, AliasType<{ /** List of members in this connection */ members?: AliasType<{ /** Member email */ email?: true | undefined; /** Member role */ role?: true | undefined; /** Member username */ username?: true | undefined; __typename?: true | undefined; }> | undefined; /** pageInfo for member connection */ pageInfo?: AliasType<{ /** last element in connection */ last?: true | undefined; /** limit set while quering */ limit?: true | undefined; /** if next is false then client recieved all available data */ next?: true | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** Team name */ name?: true | undefined; /** Team's namespace */ namespace?: AliasType | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }> | undefined; __typename?: true | undefined; }>] | undefined; /** True if namespace is public */ public?: true | undefined; /** Namespace part of the slug */ slug?: true | undefined; __typename?: true | undefined; }> | undefined; project?: [{ id: string; }, AliasType<{ /** Boolean object node */ delete?: true | undefined; /** deploy project to faker */ deployToFaker?: true | undefined; update?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>] | undefined; updateProject?: [{ in?: { /** Set project visiblity */ public?: boolean | undefined; /** ID of project to be updated */ project?: string | undefined; /** New description for project */ description?: string | undefined; /** List of tags for project */ tags?: string[] | undefined; } | undefined; }, true] | undefined; updateSources?: [{ project: string; sources?: { /** source file name */ filename?: string | undefined; /** Length of source in bytes */ contentLength?: number | undefined; /** Source mime type */ contentType?: string | undefined; /** Source checksum */ checksum?: string | undefined; }[] | undefined; }, AliasType<{ /** Source file name */ filename?: true | undefined; /** List of headers that must be included in PUT request */ headers?: AliasType<{ /** Header name */ key?: true | undefined; /** Header value */ value?: true | undefined; __typename?: true | undefined; }> | undefined; /** String with url used in PUT request */ putUrl?: true | undefined; __typename?: true | undefined; }>] | undefined; __typename?: true | undefined; }>, { __typename: "Mutation"; /** Changes subscription settings for user */ changeSubscription?: boolean | undefined; /** Create new user project public if true project is public name is project name */ createProject: GraphQLTypes["Project"]; /** Create new team */ createTeam?: { __typename: "TeamOps"; /** Add member to the team */ addMember?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Create new team project */ createProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Delete team */ delete?: boolean | undefined; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "MemberOps"; /** Boolean object node */ delete?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name?: string | undefined; /** Team's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** type object node */ project?: { __typename: "ProjectOps"; /** Boolean object node */ delete?: boolean | undefined; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; } | undefined; /** Create new user namespace name for a user public is user namespace public */ createUser: GraphQLTypes["User"]; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Remove project by id */ removeProject?: boolean | undefined; /** Synhronises the target project with source. It overrides existing files of target with files of sources. It does not remove files from target that do not exist in source. */ sync?: boolean | undefined; /** type object node */ team?: { __typename: "TeamOps"; /** Add member to the team */ addMember?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Create new team project */ createProject?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: any | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: any[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Delete team */ delete?: boolean | undefined; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "MemberOps"; /** Boolean object node */ delete?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name?: string | undefined; /** Team's namespace */ namespace?: { __typename: "Namespace"; /** Return project by name from namespace */ project?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; } | undefined; /** Returns a project connection object which contains a projects belonging to namespace last is a string returned by previous call to Namespace.projects limit sets a limit on how many objects can be returned */ projects?: { __typename: "ProjectConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ projects?: { __typename: "Project"; /** Return creation time stamp of a project */ createdAt?: GraphQLTypes["RFC3339Date"]; /** Project description */ description?: string | undefined; /** Is project enabled */ enabled?: boolean | undefined; /** Project endpoint contains a slug under which project can be reached For example https://app.graphqleditor.com/{endpoint.uri}/ */ endpoint?: { __typename: "Endpoint"; /** Full project uri without host */ uri?: string | undefined; } | undefined; /** Unique project id */ id: string; /** Is project mocked by faker backend */ mocked?: boolean | undefined; /** Project name */ name: string; /** Project owner Can be null if project belongs to a team */ owner?: { __typename: "User"; /** User's account type */ accountType: GraphQLTypes["AccountType"]; /** Unique user id */ id?: string | undefined; /** User's namespace */ namespace?: any | undefined; /** User's subscriptions */ subscriptions?: { __typename: "SubscriptionConnection"; /** Current conenction page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of subscriptions in connection */ subscriptions?: { __typename: "Subscription"; /** Cancel subscription URL */ cancelURL?: string | undefined; /** Subscription expiration date */ expiration?: string | undefined; /** Number of seats in subscription */ quantity?: number | undefined; /** List of seats in subscription */ seats?: { __typename: "UserConnection"; /** Current connection page info */ pageInfo: GraphQLTypes["PageInfo"]; /** List of projects in connection */ users?: any[] | undefined; } | undefined; /** Status of subscription */ status?: string | undefined; /** Subscription unique id */ subscriptionID?: number | undefined; /** Subscription plan unique id */ subscriptionPlanID?: number | undefined; /** Update subscription URL */ updateURL?: string | undefined; }[] | undefined; } | undefined; /** Unique username */ username?: string | undefined; } | undefined; /** True if project is public */ public?: boolean | undefined; /** Project part of the slug */ slug?: string | undefined; /** Returns a connection object with source files in project last is a string returned by previous call to Project.sources limit sets a limit on how many objects can be returned */ sources?: { __typename: "FakerSourceConnection"; /** Connection pageInfo */ pageInfo: GraphQLTypes["PageInfo"]; /** List of sources returned by connection */ sources?: { __typename: "FakerSource"; /** File checksum */ checksum?: string | undefined; contents?: string | undefined; /** Name of source file */ filename?: string | undefined; /** Return an url by which source file can be accessed */ getUrl?: string | undefined; }[] | undefined; } | undefined; /** Project tags */ tags?: string[] | undefined; /** Team to which project belongs Can be null if project belongs to a user */ team?: { __typename: "Team"; /** Unique team id */ id?: string | undefined; /** type object node */ member?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; } | undefined; /** Paginated list of members in team */ members?: { __typename: "MemberConnection"; /** List of members in this connection */ members?: { __typename: "Member"; /** Member email */ email?: string | undefined; /** Member role */ role?: Role | undefined; /** Member username */ username?: string | undefined; }[] | undefined; /** pageInfo for member connection */ pageInfo: GraphQLTypes["PageInfo"]; } | undefined; /** Team name */ name: string; /** Team's namespace */ namespace: GraphQLTypes["Namespace"]; } | undefined; }[] | undefined; } | undefined; /** True if namespace is public */ public?: boolean | undefined; /** Namespace part of the slug */ slug?: string | undefined; } | undefined; /** type object node */ project?: { __typename: "ProjectOps"; /** Boolean object node */ delete?: boolean | undefined; /** deploy project to faker */ deployToFaker?: boolean | undefined; /** Boolean object node */ update?: boolean | undefined; } | undefined; } | undefined; /** Modify project */ updateProject?: boolean | undefined; /** Add sources to the project */ updateSources?: ({ __typename: "SourceUploadInfo"; /** Source file name */ filename?: string | undefined; /** List of headers that must be included in PUT request */ headers?: ({ __typename: "Header"; /** Header name */ key: string; /** Header value */ value?: string | undefined; } | undefined)[] | undefined; /** String with url used in PUT request */ putUrl: string; } | undefined)[] | undefined; }>; }; export {};