|
@@ -0,0 +1,9255 @@
|
|
|
|
+export type Maybe<T> = T | null
|
|
|
|
+export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] }
|
|
|
|
+export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> }
|
|
|
|
+export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> }
|
|
|
|
+/** All built-in and custom scalars, mapped to their actual values */
|
|
|
|
+export type Scalars = {
|
|
|
|
+ ID: string
|
|
|
|
+ String: string
|
|
|
|
+ Boolean: boolean
|
|
|
|
+ Int: number
|
|
|
|
+ Float: number
|
|
|
|
+ /** The javascript `Date` as string. Type represents date and time as the ISO Date string. */
|
|
|
|
+ DateTime: any
|
|
|
|
+ /** GraphQL representation of BigInt */
|
|
|
|
+ BigInt: any
|
|
|
|
+ /** The `JSONObject` scalar type represents JSON objects as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
|
|
|
|
+ JSONObject: any
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestion = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ openingMetadata: WorkingGroupOpeningMetadata
|
|
|
|
+ openingMetadataId: Scalars['String']
|
|
|
|
+ /** The question itself */
|
|
|
|
+ question?: Maybe<Scalars['String']>
|
|
|
|
+ /** Type of the question (UI answer input type) */
|
|
|
|
+ type: ApplicationFormQuestionType
|
|
|
|
+ /** Index of the question */
|
|
|
|
+ index: Scalars['Int']
|
|
|
|
+ applicationformquestionanswerquestion?: Maybe<Array<ApplicationFormQuestionAnswer>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionAnswer = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ application: WorkingGroupApplication
|
|
|
|
+ applicationId: Scalars['String']
|
|
|
|
+ question: ApplicationFormQuestion
|
|
|
|
+ questionId: Scalars['String']
|
|
|
|
+ /** Applicant's answer */
|
|
|
|
+ answer: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionAnswerConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<ApplicationFormQuestionAnswerEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionAnswerCreateInput = {
|
|
|
|
+ application: Scalars['ID']
|
|
|
|
+ question: Scalars['ID']
|
|
|
|
+ answer: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionAnswerEdge = {
|
|
|
|
+ node: ApplicationFormQuestionAnswer
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum ApplicationFormQuestionAnswerOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ ApplicationAsc = 'application_ASC',
|
|
|
|
+ ApplicationDesc = 'application_DESC',
|
|
|
|
+ QuestionAsc = 'question_ASC',
|
|
|
|
+ QuestionDesc = 'question_DESC',
|
|
|
|
+ AnswerAsc = 'answer_ASC',
|
|
|
|
+ AnswerDesc = 'answer_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionAnswerUpdateInput = {
|
|
|
|
+ application?: Maybe<Scalars['ID']>
|
|
|
|
+ question?: Maybe<Scalars['ID']>
|
|
|
|
+ answer?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionAnswerWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ application_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ application_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ question_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ question_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ answer_eq?: Maybe<Scalars['String']>
|
|
|
|
+ answer_contains?: Maybe<Scalars['String']>
|
|
|
|
+ answer_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ answer_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ answer_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ application?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ question?: Maybe<ApplicationFormQuestionWhereInput>
|
|
|
|
+ AND?: Maybe<Array<ApplicationFormQuestionAnswerWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<ApplicationFormQuestionAnswerWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionAnswerWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<ApplicationFormQuestionEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionCreateInput = {
|
|
|
|
+ openingMetadata: Scalars['ID']
|
|
|
|
+ question?: Maybe<Scalars['String']>
|
|
|
|
+ type: ApplicationFormQuestionType
|
|
|
|
+ index: Scalars['Float']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionEdge = {
|
|
|
|
+ node: ApplicationFormQuestion
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum ApplicationFormQuestionOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ OpeningMetadataAsc = 'openingMetadata_ASC',
|
|
|
|
+ OpeningMetadataDesc = 'openingMetadata_DESC',
|
|
|
|
+ QuestionAsc = 'question_ASC',
|
|
|
|
+ QuestionDesc = 'question_DESC',
|
|
|
|
+ TypeAsc = 'type_ASC',
|
|
|
|
+ TypeDesc = 'type_DESC',
|
|
|
|
+ IndexAsc = 'index_ASC',
|
|
|
|
+ IndexDesc = 'index_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum ApplicationFormQuestionType {
|
|
|
|
+ Text = 'TEXT',
|
|
|
|
+ Textarea = 'TEXTAREA',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionUpdateInput = {
|
|
|
|
+ openingMetadata?: Maybe<Scalars['ID']>
|
|
|
|
+ question?: Maybe<Scalars['String']>
|
|
|
|
+ type?: Maybe<ApplicationFormQuestionType>
|
|
|
|
+ index?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ openingMetadata_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ openingMetadata_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ question_eq?: Maybe<Scalars['String']>
|
|
|
|
+ question_contains?: Maybe<Scalars['String']>
|
|
|
|
+ question_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ question_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ question_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ type_eq?: Maybe<ApplicationFormQuestionType>
|
|
|
|
+ type_in?: Maybe<Array<ApplicationFormQuestionType>>
|
|
|
|
+ index_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ index_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ index_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ index_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ index_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ index_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ openingMetadata?: Maybe<WorkingGroupOpeningMetadataWhereInput>
|
|
|
|
+ applicationformquestionanswerquestion_none?: Maybe<ApplicationFormQuestionAnswerWhereInput>
|
|
|
|
+ applicationformquestionanswerquestion_some?: Maybe<ApplicationFormQuestionAnswerWhereInput>
|
|
|
|
+ applicationformquestionanswerquestion_every?: Maybe<ApplicationFormQuestionAnswerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<ApplicationFormQuestionWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<ApplicationFormQuestionWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationFormQuestionWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationStatusAccepted = {
|
|
|
|
+ /** Related OpeningFilled event */
|
|
|
|
+ openingFilledEvent?: Maybe<OpeningFilledEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationStatusCancelled = {
|
|
|
|
+ /** Related OpeningCanceled event */
|
|
|
|
+ openingCanceledEvent?: Maybe<OpeningCanceledEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationStatusPending = {
|
|
|
|
+ phantom?: Maybe<Scalars['Int']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationStatusPendingCreateInput = {
|
|
|
|
+ phantom?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationStatusPendingUpdateInput = {
|
|
|
|
+ phantom?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationStatusPendingWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ phantom_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<ApplicationStatusPendingWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<ApplicationStatusPendingWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationStatusPendingWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationStatusRejected = {
|
|
|
|
+ /** Related OpeningFilled event */
|
|
|
|
+ openingFilledEvent?: Maybe<OpeningFilledEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationStatusWithdrawn = {
|
|
|
|
+ /** Related ApplicationWithdrawn event */
|
|
|
|
+ applicationWithdrawnEvent?: Maybe<ApplicationWithdrawnEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationWithdrawnEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ application: WorkingGroupApplication
|
|
|
|
+ applicationId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationWithdrawnEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<ApplicationWithdrawnEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationWithdrawnEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ application: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationWithdrawnEventEdge = {
|
|
|
|
+ node: ApplicationWithdrawnEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum ApplicationWithdrawnEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ ApplicationAsc = 'application_ASC',
|
|
|
|
+ ApplicationDesc = 'application_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationWithdrawnEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ application?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationWithdrawnEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ application_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ application_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ application?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ AND?: Maybe<Array<ApplicationWithdrawnEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<ApplicationWithdrawnEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ApplicationWithdrawnEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type AppliedOnOpeningEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ opening: WorkingGroupOpening
|
|
|
|
+ openingId: Scalars['String']
|
|
|
|
+ application: WorkingGroupApplication
|
|
|
|
+ applicationId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type AppliedOnOpeningEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<AppliedOnOpeningEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type AppliedOnOpeningEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ opening: Scalars['ID']
|
|
|
|
+ application: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type AppliedOnOpeningEventEdge = {
|
|
|
|
+ node: AppliedOnOpeningEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum AppliedOnOpeningEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ OpeningAsc = 'opening_ASC',
|
|
|
|
+ OpeningDesc = 'opening_DESC',
|
|
|
|
+ ApplicationAsc = 'application_ASC',
|
|
|
|
+ ApplicationDesc = 'application_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type AppliedOnOpeningEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ opening?: Maybe<Scalars['ID']>
|
|
|
|
+ application?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type AppliedOnOpeningEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ opening_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ opening_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ application_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ application_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ opening?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ application?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ AND?: Maybe<Array<AppliedOnOpeningEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<AppliedOnOpeningEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type AppliedOnOpeningEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BaseGraphQlObject = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BaseModel = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BaseModelUuid = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BaseWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['String']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['String']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['String']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['String']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['String']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['String']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['String']>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['String']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['String']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['String']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['String']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['String']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['String']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSetEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ /** New working group budget */
|
|
|
|
+ newBudget: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSetEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<BudgetSetEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSetEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ newBudget: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSetEventEdge = {
|
|
|
|
+ node: BudgetSetEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum BudgetSetEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ NewBudgetAsc = 'newBudget_ASC',
|
|
|
|
+ NewBudgetDesc = 'newBudget_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSetEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ newBudget?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSetEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ newBudget_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newBudget_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newBudget_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newBudget_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newBudget_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newBudget_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ AND?: Maybe<Array<BudgetSetEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<BudgetSetEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSetEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSpendingEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ /** Reciever account address */
|
|
|
|
+ reciever: Scalars['String']
|
|
|
|
+ /** Amount beeing spent */
|
|
|
|
+ amount: Scalars['BigInt']
|
|
|
|
+ /** Optional rationale */
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSpendingEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<BudgetSpendingEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSpendingEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ reciever: Scalars['String']
|
|
|
|
+ amount: Scalars['BigInt']
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSpendingEventEdge = {
|
|
|
|
+ node: BudgetSpendingEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum BudgetSpendingEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ RecieverAsc = 'reciever_ASC',
|
|
|
|
+ RecieverDesc = 'reciever_DESC',
|
|
|
|
+ AmountAsc = 'amount_ASC',
|
|
|
|
+ AmountDesc = 'amount_DESC',
|
|
|
|
+ RationaleAsc = 'rationale_ASC',
|
|
|
|
+ RationaleDesc = 'rationale_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSpendingEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ reciever?: Maybe<Scalars['String']>
|
|
|
|
+ amount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSpendingEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ reciever_eq?: Maybe<Scalars['String']>
|
|
|
|
+ reciever_contains?: Maybe<Scalars['String']>
|
|
|
|
+ reciever_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ reciever_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ reciever_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ amount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ rationale_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ AND?: Maybe<Array<BudgetSpendingEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<BudgetSpendingEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type BudgetSpendingEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/** Manages content ids, type and storage provider decision about it */
|
|
|
|
+export type DataObject = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Content owner */
|
|
|
|
+ owner: DataObjectOwner
|
|
|
|
+ /** Content added at */
|
|
|
|
+ addedAt: Scalars['Int']
|
|
|
|
+ /** Content type id */
|
|
|
|
+ typeId: Scalars['Int']
|
|
|
|
+ /** Content size in bytes */
|
|
|
|
+ size: Scalars['BigInt']
|
|
|
|
+ /** Storage provider id of the liaison */
|
|
|
|
+ liaisonId: Scalars['BigInt']
|
|
|
|
+ /** Storage provider as liaison judgment */
|
|
|
|
+ liaisonJudgement: LiaisonJudgement
|
|
|
|
+ /** IPFS content id */
|
|
|
|
+ ipfsContentId: Scalars['String']
|
|
|
|
+ /** Joystream runtime content */
|
|
|
|
+ joystreamContentId: Scalars['String']
|
|
|
|
+ membermetadataavatar?: Maybe<Array<MemberMetadata>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<DataObjectEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectCreateInput = {
|
|
|
|
+ owner: Scalars['JSONObject']
|
|
|
|
+ addedAt: Scalars['Float']
|
|
|
|
+ typeId: Scalars['Float']
|
|
|
|
+ size: Scalars['BigInt']
|
|
|
|
+ liaisonId: Scalars['BigInt']
|
|
|
|
+ liaisonJudgement: LiaisonJudgement
|
|
|
|
+ ipfsContentId: Scalars['String']
|
|
|
|
+ joystreamContentId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectEdge = {
|
|
|
|
+ node: DataObject
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum DataObjectOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ AddedAtAsc = 'addedAt_ASC',
|
|
|
|
+ AddedAtDesc = 'addedAt_DESC',
|
|
|
|
+ TypeIdAsc = 'typeId_ASC',
|
|
|
|
+ TypeIdDesc = 'typeId_DESC',
|
|
|
|
+ SizeAsc = 'size_ASC',
|
|
|
|
+ SizeDesc = 'size_DESC',
|
|
|
|
+ LiaisonIdAsc = 'liaisonId_ASC',
|
|
|
|
+ LiaisonIdDesc = 'liaisonId_DESC',
|
|
|
|
+ LiaisonJudgementAsc = 'liaisonJudgement_ASC',
|
|
|
|
+ LiaisonJudgementDesc = 'liaisonJudgement_DESC',
|
|
|
|
+ IpfsContentIdAsc = 'ipfsContentId_ASC',
|
|
|
|
+ IpfsContentIdDesc = 'ipfsContentId_DESC',
|
|
|
|
+ JoystreamContentIdAsc = 'joystreamContentId_ASC',
|
|
|
|
+ JoystreamContentIdDesc = 'joystreamContentId_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwner =
|
|
|
|
+ | DataObjectOwnerMember
|
|
|
|
+ | DataObjectOwnerChannel
|
|
|
|
+ | DataObjectOwnerDao
|
|
|
|
+ | DataObjectOwnerCouncil
|
|
|
|
+ | DataObjectOwnerWorkingGroup
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerChannel = {
|
|
|
|
+ /** Channel identifier */
|
|
|
|
+ channel: Scalars['BigInt']
|
|
|
|
+ /** Variant needs to have at least one property. This value is not used. */
|
|
|
|
+ dummy?: Maybe<Scalars['Int']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerChannelCreateInput = {
|
|
|
|
+ channel: Scalars['BigInt']
|
|
|
|
+ dummy?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerChannelUpdateInput = {
|
|
|
|
+ channel?: Maybe<Scalars['BigInt']>
|
|
|
|
+ dummy?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerChannelWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ channel_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ channel_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ channel_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ channel_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ channel_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ channel_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ dummy_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<DataObjectOwnerChannelWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<DataObjectOwnerChannelWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerChannelWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerCouncil = {
|
|
|
|
+ /** Variant needs to have at least one property. This value is not used. */
|
|
|
|
+ dummy?: Maybe<Scalars['Int']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerCouncilCreateInput = {
|
|
|
|
+ dummy?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerCouncilUpdateInput = {
|
|
|
|
+ dummy?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerCouncilWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ dummy_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<DataObjectOwnerCouncilWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<DataObjectOwnerCouncilWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerCouncilWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerDao = {
|
|
|
|
+ /** DAO identifier */
|
|
|
|
+ dao: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerDaoCreateInput = {
|
|
|
|
+ dao: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerDaoUpdateInput = {
|
|
|
|
+ dao?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerDaoWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ dao_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ dao_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ dao_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ dao_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ dao_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ dao_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ AND?: Maybe<Array<DataObjectOwnerDaoWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<DataObjectOwnerDaoWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerDaoWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerMember = {
|
|
|
|
+ /** Member identifier */
|
|
|
|
+ member: Scalars['BigInt']
|
|
|
|
+ /** Variant needs to have at least one property. This value is not used. */
|
|
|
|
+ dummy?: Maybe<Scalars['Int']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerMemberCreateInput = {
|
|
|
|
+ member: Scalars['BigInt']
|
|
|
|
+ dummy?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerMemberUpdateInput = {
|
|
|
|
+ member?: Maybe<Scalars['BigInt']>
|
|
|
|
+ dummy?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerMemberWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ member_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ member_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ member_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ member_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ member_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ member_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ dummy_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<DataObjectOwnerMemberWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<DataObjectOwnerMemberWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerMemberWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerWorkingGroup = {
|
|
|
|
+ /** Variant needs to have at least one property. This value is not used. */
|
|
|
|
+ dummy?: Maybe<Scalars['Int']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerWorkingGroupCreateInput = {
|
|
|
|
+ dummy?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerWorkingGroupUpdateInput = {
|
|
|
|
+ dummy?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerWorkingGroupWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ dummy_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ dummy_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<DataObjectOwnerWorkingGroupWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<DataObjectOwnerWorkingGroupWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectOwnerWorkingGroupWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectUpdateInput = {
|
|
|
|
+ owner?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ addedAt?: Maybe<Scalars['Float']>
|
|
|
|
+ typeId?: Maybe<Scalars['Float']>
|
|
|
|
+ size?: Maybe<Scalars['BigInt']>
|
|
|
|
+ liaisonId?: Maybe<Scalars['BigInt']>
|
|
|
|
+ liaisonJudgement?: Maybe<LiaisonJudgement>
|
|
|
|
+ ipfsContentId?: Maybe<Scalars['String']>
|
|
|
|
+ joystreamContentId?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ owner_json?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ addedAt_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ addedAt_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ addedAt_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ addedAt_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ addedAt_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ addedAt_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ typeId_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ typeId_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ typeId_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ typeId_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ typeId_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ typeId_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ size_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ size_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ size_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ size_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ size_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ size_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ liaisonId_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ liaisonId_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ liaisonId_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ liaisonId_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ liaisonId_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ liaisonId_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ liaisonJudgement_eq?: Maybe<LiaisonJudgement>
|
|
|
|
+ liaisonJudgement_in?: Maybe<Array<LiaisonJudgement>>
|
|
|
|
+ ipfsContentId_eq?: Maybe<Scalars['String']>
|
|
|
|
+ ipfsContentId_contains?: Maybe<Scalars['String']>
|
|
|
|
+ ipfsContentId_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ ipfsContentId_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ ipfsContentId_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ joystreamContentId_eq?: Maybe<Scalars['String']>
|
|
|
|
+ joystreamContentId_contains?: Maybe<Scalars['String']>
|
|
|
|
+ joystreamContentId_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ joystreamContentId_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ joystreamContentId_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ membermetadataavatar_none?: Maybe<MemberMetadataWhereInput>
|
|
|
|
+ membermetadataavatar_some?: Maybe<MemberMetadataWhereInput>
|
|
|
|
+ membermetadataavatar_every?: Maybe<MemberMetadataWhereInput>
|
|
|
|
+ AND?: Maybe<Array<DataObjectWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<DataObjectWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DataObjectWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type DeleteResponse = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type Event = {
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type EventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum EventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type EventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type EventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<EventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<EventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type EventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationBalanceUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ /** New initial invitation balance. */
|
|
|
|
+ newInitialBalance: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationBalanceUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<InitialInvitationBalanceUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationBalanceUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ newInitialBalance: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationBalanceUpdatedEventEdge = {
|
|
|
|
+ node: InitialInvitationBalanceUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum InitialInvitationBalanceUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ NewInitialBalanceAsc = 'newInitialBalance_ASC',
|
|
|
|
+ NewInitialBalanceDesc = 'newInitialBalance_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationBalanceUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ newInitialBalance?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationBalanceUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ newInitialBalance_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newInitialBalance_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newInitialBalance_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newInitialBalance_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newInitialBalance_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newInitialBalance_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ AND?: Maybe<Array<InitialInvitationBalanceUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<InitialInvitationBalanceUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationBalanceUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationCountUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ /** New initial invitation count for members. */
|
|
|
|
+ newInitialInvitationCount: Scalars['Int']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationCountUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<InitialInvitationCountUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationCountUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ newInitialInvitationCount: Scalars['Float']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationCountUpdatedEventEdge = {
|
|
|
|
+ node: InitialInvitationCountUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum InitialInvitationCountUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ NewInitialInvitationCountAsc = 'newInitialInvitationCount_ASC',
|
|
|
|
+ NewInitialInvitationCountDesc = 'newInitialInvitationCount_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationCountUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ newInitialInvitationCount?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationCountUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ newInitialInvitationCount_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ newInitialInvitationCount_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ newInitialInvitationCount_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ newInitialInvitationCount_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ newInitialInvitationCount_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ newInitialInvitationCount_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<InitialInvitationCountUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<InitialInvitationCountUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InitialInvitationCountUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvalidActionMetadata = {
|
|
|
|
+ /** Reason why the action metadata was considered invalid */
|
|
|
|
+ reason: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvalidActionMetadataCreateInput = {
|
|
|
|
+ reason: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvalidActionMetadataUpdateInput = {
|
|
|
|
+ reason?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvalidActionMetadataWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ reason_eq?: Maybe<Scalars['String']>
|
|
|
|
+ reason_contains?: Maybe<Scalars['String']>
|
|
|
|
+ reason_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ reason_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ reason_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ AND?: Maybe<Array<InvalidActionMetadataWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<InvalidActionMetadataWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvalidActionMetadataWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvitesTransferredEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ sourceMember: Membership
|
|
|
|
+ sourceMemberId: Scalars['String']
|
|
|
|
+ targetMember: Membership
|
|
|
|
+ targetMemberId: Scalars['String']
|
|
|
|
+ /** Number of invites transferred. */
|
|
|
|
+ numberOfInvites: Scalars['Int']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvitesTransferredEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<InvitesTransferredEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvitesTransferredEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ sourceMember: Scalars['ID']
|
|
|
|
+ targetMember: Scalars['ID']
|
|
|
|
+ numberOfInvites: Scalars['Float']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvitesTransferredEventEdge = {
|
|
|
|
+ node: InvitesTransferredEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum InvitesTransferredEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ SourceMemberAsc = 'sourceMember_ASC',
|
|
|
|
+ SourceMemberDesc = 'sourceMember_DESC',
|
|
|
|
+ TargetMemberAsc = 'targetMember_ASC',
|
|
|
|
+ TargetMemberDesc = 'targetMember_DESC',
|
|
|
|
+ NumberOfInvitesAsc = 'numberOfInvites_ASC',
|
|
|
|
+ NumberOfInvitesDesc = 'numberOfInvites_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvitesTransferredEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ sourceMember?: Maybe<Scalars['ID']>
|
|
|
|
+ targetMember?: Maybe<Scalars['ID']>
|
|
|
|
+ numberOfInvites?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvitesTransferredEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ sourceMember_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ sourceMember_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ targetMember_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ targetMember_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ numberOfInvites_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ numberOfInvites_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ numberOfInvites_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ numberOfInvites_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ numberOfInvites_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ numberOfInvites_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ sourceMember?: Maybe<MembershipWhereInput>
|
|
|
|
+ targetMember?: Maybe<MembershipWhereInput>
|
|
|
|
+ AND?: Maybe<Array<InvitesTransferredEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<InvitesTransferredEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type InvitesTransferredEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderInvitationQuotaUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ /** New quota. */
|
|
|
|
+ newInvitationQuota: Scalars['Int']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderInvitationQuotaUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<LeaderInvitationQuotaUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderInvitationQuotaUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ newInvitationQuota: Scalars['Float']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderInvitationQuotaUpdatedEventEdge = {
|
|
|
|
+ node: LeaderInvitationQuotaUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum LeaderInvitationQuotaUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ NewInvitationQuotaAsc = 'newInvitationQuota_ASC',
|
|
|
|
+ NewInvitationQuotaDesc = 'newInvitationQuota_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderInvitationQuotaUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ newInvitationQuota?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderInvitationQuotaUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ newInvitationQuota_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ newInvitationQuota_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ newInvitationQuota_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ newInvitationQuota_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ newInvitationQuota_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ newInvitationQuota_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<LeaderInvitationQuotaUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<LeaderInvitationQuotaUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderInvitationQuotaUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderSetEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker?: Maybe<Worker>
|
|
|
|
+ workerId?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderSetEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<LeaderSetEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderSetEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderSetEventEdge = {
|
|
|
|
+ node: LeaderSetEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum LeaderSetEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderSetEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderSetEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<LeaderSetEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<LeaderSetEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderSetEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderUnsetEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ leader: Worker
|
|
|
|
+ leaderId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderUnsetEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<LeaderUnsetEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderUnsetEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ leader: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderUnsetEventEdge = {
|
|
|
|
+ node: LeaderUnsetEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum LeaderUnsetEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ LeaderAsc = 'leader_ASC',
|
|
|
|
+ LeaderDesc = 'leader_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderUnsetEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ leader?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderUnsetEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ leader_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ leader_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ leader?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<LeaderUnsetEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<LeaderUnsetEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type LeaderUnsetEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum LiaisonJudgement {
|
|
|
|
+ Pending = 'PENDING',
|
|
|
|
+ Accepted = 'ACCEPTED',
|
|
|
|
+ Rejected = 'REJECTED',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberAccountsUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ member: Membership
|
|
|
|
+ memberId: Scalars['String']
|
|
|
|
+ /** New member root account in SS58 encoding. Null means no new value was provided. */
|
|
|
|
+ newRootAccount?: Maybe<Scalars['String']>
|
|
|
|
+ /** New member controller in SS58 encoding. Null means no new value was provided. */
|
|
|
|
+ newControllerAccount?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberAccountsUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<MemberAccountsUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberAccountsUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ member: Scalars['ID']
|
|
|
|
+ newRootAccount?: Maybe<Scalars['String']>
|
|
|
|
+ newControllerAccount?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberAccountsUpdatedEventEdge = {
|
|
|
|
+ node: MemberAccountsUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum MemberAccountsUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ MemberAsc = 'member_ASC',
|
|
|
|
+ MemberDesc = 'member_DESC',
|
|
|
|
+ NewRootAccountAsc = 'newRootAccount_ASC',
|
|
|
|
+ NewRootAccountDesc = 'newRootAccount_DESC',
|
|
|
|
+ NewControllerAccountAsc = 'newControllerAccount_ASC',
|
|
|
|
+ NewControllerAccountDesc = 'newControllerAccount_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberAccountsUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ member?: Maybe<Scalars['ID']>
|
|
|
|
+ newRootAccount?: Maybe<Scalars['String']>
|
|
|
|
+ newControllerAccount?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberAccountsUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ member_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ member_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ newRootAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ newRootAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ newRootAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newRootAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newRootAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ newControllerAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ newControllerAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ newControllerAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newControllerAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newControllerAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ member?: Maybe<MembershipWhereInput>
|
|
|
|
+ AND?: Maybe<Array<MemberAccountsUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MemberAccountsUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberAccountsUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberInvitedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ invitingMember: Membership
|
|
|
|
+ invitingMemberId: Scalars['String']
|
|
|
|
+ newMember: Membership
|
|
|
|
+ newMemberId: Scalars['String']
|
|
|
|
+ /** New member root account in SS58 encoding. */
|
|
|
|
+ rootAccount: Scalars['String']
|
|
|
|
+ /** New member controller in SS58 encoding. */
|
|
|
|
+ controllerAccount: Scalars['String']
|
|
|
|
+ /** New member handle. */
|
|
|
|
+ handle: Scalars['String']
|
|
|
|
+ metadata: MemberMetadata
|
|
|
|
+ metadataId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberInvitedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<MemberInvitedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberInvitedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ invitingMember: Scalars['ID']
|
|
|
|
+ newMember: Scalars['ID']
|
|
|
|
+ rootAccount: Scalars['String']
|
|
|
|
+ controllerAccount: Scalars['String']
|
|
|
|
+ handle: Scalars['String']
|
|
|
|
+ metadata: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberInvitedEventEdge = {
|
|
|
|
+ node: MemberInvitedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum MemberInvitedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ InvitingMemberAsc = 'invitingMember_ASC',
|
|
|
|
+ InvitingMemberDesc = 'invitingMember_DESC',
|
|
|
|
+ NewMemberAsc = 'newMember_ASC',
|
|
|
|
+ NewMemberDesc = 'newMember_DESC',
|
|
|
|
+ RootAccountAsc = 'rootAccount_ASC',
|
|
|
|
+ RootAccountDesc = 'rootAccount_DESC',
|
|
|
|
+ ControllerAccountAsc = 'controllerAccount_ASC',
|
|
|
|
+ ControllerAccountDesc = 'controllerAccount_DESC',
|
|
|
|
+ HandleAsc = 'handle_ASC',
|
|
|
|
+ HandleDesc = 'handle_DESC',
|
|
|
|
+ MetadataAsc = 'metadata_ASC',
|
|
|
|
+ MetadataDesc = 'metadata_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberInvitedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ invitingMember?: Maybe<Scalars['ID']>
|
|
|
|
+ newMember?: Maybe<Scalars['ID']>
|
|
|
|
+ rootAccount?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount?: Maybe<Scalars['String']>
|
|
|
|
+ handle?: Maybe<Scalars['String']>
|
|
|
|
+ metadata?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberInvitedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ invitingMember_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ invitingMember_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ newMember_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ newMember_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ rootAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ controllerAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ handle_eq?: Maybe<Scalars['String']>
|
|
|
|
+ handle_contains?: Maybe<Scalars['String']>
|
|
|
|
+ handle_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ handle_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ handle_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ metadata_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ metadata_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ invitingMember?: Maybe<MembershipWhereInput>
|
|
|
|
+ newMember?: Maybe<MembershipWhereInput>
|
|
|
|
+ metadata?: Maybe<MemberMetadataWhereInput>
|
|
|
|
+ AND?: Maybe<Array<MemberInvitedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MemberInvitedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberInvitedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberMetadata = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Member's name */
|
|
|
|
+ name?: Maybe<Scalars['String']>
|
|
|
|
+ avatar?: Maybe<DataObject>
|
|
|
|
+ avatarId?: Maybe<Scalars['String']>
|
|
|
|
+ /** Short text chosen by member to share information about themselves */
|
|
|
|
+ about?: Maybe<Scalars['String']>
|
|
|
|
+ memberinvitedeventmetadata?: Maybe<Array<MemberInvitedEvent>>
|
|
|
|
+ memberprofileupdatedeventnewMetadata?: Maybe<Array<MemberProfileUpdatedEvent>>
|
|
|
|
+ membershipmetadata?: Maybe<Array<Membership>>
|
|
|
|
+ membershipboughteventmetadata?: Maybe<Array<MembershipBoughtEvent>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberMetadataConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<MemberMetadataEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberMetadataCreateInput = {
|
|
|
|
+ name?: Maybe<Scalars['String']>
|
|
|
|
+ avatar?: Maybe<Scalars['ID']>
|
|
|
|
+ about?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberMetadataEdge = {
|
|
|
|
+ node: MemberMetadata
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum MemberMetadataOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ NameAsc = 'name_ASC',
|
|
|
|
+ NameDesc = 'name_DESC',
|
|
|
|
+ AvatarAsc = 'avatar_ASC',
|
|
|
|
+ AvatarDesc = 'avatar_DESC',
|
|
|
|
+ AboutAsc = 'about_ASC',
|
|
|
|
+ AboutDesc = 'about_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberMetadataUpdateInput = {
|
|
|
|
+ name?: Maybe<Scalars['String']>
|
|
|
|
+ avatar?: Maybe<Scalars['ID']>
|
|
|
|
+ about?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberMetadataWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ name_eq?: Maybe<Scalars['String']>
|
|
|
|
+ name_contains?: Maybe<Scalars['String']>
|
|
|
|
+ name_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ name_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ name_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ avatar_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ avatar_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ about_eq?: Maybe<Scalars['String']>
|
|
|
|
+ about_contains?: Maybe<Scalars['String']>
|
|
|
|
+ about_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ about_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ about_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ avatar?: Maybe<DataObjectWhereInput>
|
|
|
|
+ memberinvitedeventmetadata_none?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ memberinvitedeventmetadata_some?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ memberinvitedeventmetadata_every?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ memberprofileupdatedeventnewMetadata_none?: Maybe<MemberProfileUpdatedEventWhereInput>
|
|
|
|
+ memberprofileupdatedeventnewMetadata_some?: Maybe<MemberProfileUpdatedEventWhereInput>
|
|
|
|
+ memberprofileupdatedeventnewMetadata_every?: Maybe<MemberProfileUpdatedEventWhereInput>
|
|
|
|
+ membershipmetadata_none?: Maybe<MembershipWhereInput>
|
|
|
|
+ membershipmetadata_some?: Maybe<MembershipWhereInput>
|
|
|
|
+ membershipmetadata_every?: Maybe<MembershipWhereInput>
|
|
|
|
+ membershipboughteventmetadata_none?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ membershipboughteventmetadata_some?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ membershipboughteventmetadata_every?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ AND?: Maybe<Array<MemberMetadataWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MemberMetadataWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberMetadataWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberProfileUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ member: Membership
|
|
|
|
+ memberId: Scalars['String']
|
|
|
|
+ /** New member handle. Null means no new value was provided. */
|
|
|
|
+ newHandle?: Maybe<Scalars['String']>
|
|
|
|
+ newMetadata: MemberMetadata
|
|
|
|
+ newMetadataId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberProfileUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<MemberProfileUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberProfileUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ member: Scalars['ID']
|
|
|
|
+ newHandle?: Maybe<Scalars['String']>
|
|
|
|
+ newMetadata: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberProfileUpdatedEventEdge = {
|
|
|
|
+ node: MemberProfileUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum MemberProfileUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ MemberAsc = 'member_ASC',
|
|
|
|
+ MemberDesc = 'member_DESC',
|
|
|
|
+ NewHandleAsc = 'newHandle_ASC',
|
|
|
|
+ NewHandleDesc = 'newHandle_DESC',
|
|
|
|
+ NewMetadataAsc = 'newMetadata_ASC',
|
|
|
|
+ NewMetadataDesc = 'newMetadata_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberProfileUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ member?: Maybe<Scalars['ID']>
|
|
|
|
+ newHandle?: Maybe<Scalars['String']>
|
|
|
|
+ newMetadata?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberProfileUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ member_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ member_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ newHandle_eq?: Maybe<Scalars['String']>
|
|
|
|
+ newHandle_contains?: Maybe<Scalars['String']>
|
|
|
|
+ newHandle_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newHandle_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newHandle_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ newMetadata_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ newMetadata_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ member?: Maybe<MembershipWhereInput>
|
|
|
|
+ newMetadata?: Maybe<MemberMetadataWhereInput>
|
|
|
|
+ AND?: Maybe<Array<MemberProfileUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MemberProfileUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberProfileUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembersByHandleFtsOutput = {
|
|
|
|
+ item: MembersByHandleSearchResult
|
|
|
|
+ rank: Scalars['Float']
|
|
|
|
+ isTypeOf: Scalars['String']
|
|
|
|
+ highlight: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembersByHandleSearchResult = Membership
|
|
|
|
+
|
|
|
|
+/** Stored information about a registered user */
|
|
|
|
+export type Membership = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** The unique handle chosen by member */
|
|
|
|
+ handle: Scalars['String']
|
|
|
|
+ metadata: MemberMetadata
|
|
|
|
+ metadataId: Scalars['String']
|
|
|
|
+ /** Member's controller account id */
|
|
|
|
+ controllerAccount: Scalars['String']
|
|
|
|
+ /** Member's root account id */
|
|
|
|
+ rootAccount: Scalars['String']
|
|
|
|
+ /** How the member was registered */
|
|
|
|
+ entry: MembershipEntryMethod
|
|
|
|
+ /** Whether member has been verified by membership working group. */
|
|
|
|
+ isVerified: Scalars['Boolean']
|
|
|
|
+ /** Staking accounts bounded to membership. */
|
|
|
|
+ boundAccounts: Array<Scalars['String']>
|
|
|
|
+ /** Current count of invites left to send. */
|
|
|
|
+ inviteCount: Scalars['Int']
|
|
|
|
+ invitees: Array<Membership>
|
|
|
|
+ invitedBy?: Maybe<Membership>
|
|
|
|
+ invitedById?: Maybe<Scalars['String']>
|
|
|
|
+ referredMembers: Array<Membership>
|
|
|
|
+ referredBy?: Maybe<Membership>
|
|
|
|
+ referredById?: Maybe<Scalars['String']>
|
|
|
|
+ /** Whether member is founding member. */
|
|
|
|
+ isFoundingMember: Scalars['Boolean']
|
|
|
|
+ roles: Array<Worker>
|
|
|
|
+ invitestransferredeventsourceMember?: Maybe<Array<InvitesTransferredEvent>>
|
|
|
|
+ invitestransferredeventtargetMember?: Maybe<Array<InvitesTransferredEvent>>
|
|
|
|
+ memberaccountsupdatedeventmember?: Maybe<Array<MemberAccountsUpdatedEvent>>
|
|
|
|
+ memberinvitedeventinvitingMember?: Maybe<Array<MemberInvitedEvent>>
|
|
|
|
+ memberinvitedeventnewMember?: Maybe<Array<MemberInvitedEvent>>
|
|
|
|
+ memberprofileupdatedeventmember?: Maybe<Array<MemberProfileUpdatedEvent>>
|
|
|
|
+ memberverificationstatusupdatedeventmember?: Maybe<Array<MemberVerificationStatusUpdatedEvent>>
|
|
|
|
+ membershipboughteventnewMember?: Maybe<Array<MembershipBoughtEvent>>
|
|
|
|
+ membershipboughteventreferrer?: Maybe<Array<MembershipBoughtEvent>>
|
|
|
|
+ stakingaccountaddedeventmember?: Maybe<Array<StakingAccountAddedEvent>>
|
|
|
|
+ stakingaccountconfirmedeventmember?: Maybe<Array<StakingAccountConfirmedEvent>>
|
|
|
|
+ stakingaccountremovedeventmember?: Maybe<Array<StakingAccountRemovedEvent>>
|
|
|
|
+ workinggroupapplicationapplicant?: Maybe<Array<WorkingGroupApplication>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipBoughtEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ newMember: Membership
|
|
|
|
+ newMemberId: Scalars['String']
|
|
|
|
+ /** New member root account in SS58 encoding. */
|
|
|
|
+ rootAccount: Scalars['String']
|
|
|
|
+ /** New member controller in SS58 encoding. */
|
|
|
|
+ controllerAccount: Scalars['String']
|
|
|
|
+ /** New member handle. */
|
|
|
|
+ handle: Scalars['String']
|
|
|
|
+ metadata: MemberMetadata
|
|
|
|
+ metadataId: Scalars['String']
|
|
|
|
+ referrer?: Maybe<Membership>
|
|
|
|
+ referrerId?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipBoughtEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<MembershipBoughtEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipBoughtEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ newMember: Scalars['ID']
|
|
|
|
+ rootAccount: Scalars['String']
|
|
|
|
+ controllerAccount: Scalars['String']
|
|
|
|
+ handle: Scalars['String']
|
|
|
|
+ metadata: Scalars['ID']
|
|
|
|
+ referrer?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipBoughtEventEdge = {
|
|
|
|
+ node: MembershipBoughtEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum MembershipBoughtEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ NewMemberAsc = 'newMember_ASC',
|
|
|
|
+ NewMemberDesc = 'newMember_DESC',
|
|
|
|
+ RootAccountAsc = 'rootAccount_ASC',
|
|
|
|
+ RootAccountDesc = 'rootAccount_DESC',
|
|
|
|
+ ControllerAccountAsc = 'controllerAccount_ASC',
|
|
|
|
+ ControllerAccountDesc = 'controllerAccount_DESC',
|
|
|
|
+ HandleAsc = 'handle_ASC',
|
|
|
|
+ HandleDesc = 'handle_DESC',
|
|
|
|
+ MetadataAsc = 'metadata_ASC',
|
|
|
|
+ MetadataDesc = 'metadata_DESC',
|
|
|
|
+ ReferrerAsc = 'referrer_ASC',
|
|
|
|
+ ReferrerDesc = 'referrer_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipBoughtEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ newMember?: Maybe<Scalars['ID']>
|
|
|
|
+ rootAccount?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount?: Maybe<Scalars['String']>
|
|
|
|
+ handle?: Maybe<Scalars['String']>
|
|
|
|
+ metadata?: Maybe<Scalars['ID']>
|
|
|
|
+ referrer?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipBoughtEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ newMember_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ newMember_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ rootAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ controllerAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ handle_eq?: Maybe<Scalars['String']>
|
|
|
|
+ handle_contains?: Maybe<Scalars['String']>
|
|
|
|
+ handle_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ handle_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ handle_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ metadata_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ metadata_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ referrer_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ referrer_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ newMember?: Maybe<MembershipWhereInput>
|
|
|
|
+ metadata?: Maybe<MemberMetadataWhereInput>
|
|
|
|
+ referrer?: Maybe<MembershipWhereInput>
|
|
|
|
+ AND?: Maybe<Array<MembershipBoughtEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MembershipBoughtEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipBoughtEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<MembershipEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipCreateInput = {
|
|
|
|
+ handle: Scalars['String']
|
|
|
|
+ metadata: Scalars['ID']
|
|
|
|
+ controllerAccount: Scalars['String']
|
|
|
|
+ rootAccount: Scalars['String']
|
|
|
|
+ entry: Scalars['JSONObject']
|
|
|
|
+ isVerified: Scalars['Boolean']
|
|
|
|
+ boundAccounts: Array<Scalars['String']>
|
|
|
|
+ inviteCount: Scalars['Float']
|
|
|
|
+ invitedBy?: Maybe<Scalars['ID']>
|
|
|
|
+ referredBy?: Maybe<Scalars['ID']>
|
|
|
|
+ isFoundingMember: Scalars['Boolean']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipEdge = {
|
|
|
|
+ node: Membership
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipEntryGenesis = {
|
|
|
|
+ phantom?: Maybe<Scalars['Int']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipEntryGenesisCreateInput = {
|
|
|
|
+ phantom?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipEntryGenesisUpdateInput = {
|
|
|
|
+ phantom?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipEntryGenesisWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ phantom_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<MembershipEntryGenesisWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MembershipEntryGenesisWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipEntryGenesisWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipEntryInvited = {
|
|
|
|
+ /** The event the member was invited in */
|
|
|
|
+ memberInvitedEvent?: Maybe<MemberInvitedEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipEntryMethod = MembershipEntryPaid | MembershipEntryInvited | MembershipEntryGenesis
|
|
|
|
+
|
|
|
|
+export type MembershipEntryPaid = {
|
|
|
|
+ /** The event the membership was bought in */
|
|
|
|
+ membershipBoughtEvent?: Maybe<MembershipBoughtEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum MembershipOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ HandleAsc = 'handle_ASC',
|
|
|
|
+ HandleDesc = 'handle_DESC',
|
|
|
|
+ MetadataAsc = 'metadata_ASC',
|
|
|
|
+ MetadataDesc = 'metadata_DESC',
|
|
|
|
+ ControllerAccountAsc = 'controllerAccount_ASC',
|
|
|
|
+ ControllerAccountDesc = 'controllerAccount_DESC',
|
|
|
|
+ RootAccountAsc = 'rootAccount_ASC',
|
|
|
|
+ RootAccountDesc = 'rootAccount_DESC',
|
|
|
|
+ IsVerifiedAsc = 'isVerified_ASC',
|
|
|
|
+ IsVerifiedDesc = 'isVerified_DESC',
|
|
|
|
+ InviteCountAsc = 'inviteCount_ASC',
|
|
|
|
+ InviteCountDesc = 'inviteCount_DESC',
|
|
|
|
+ InvitedByAsc = 'invitedBy_ASC',
|
|
|
|
+ InvitedByDesc = 'invitedBy_DESC',
|
|
|
|
+ ReferredByAsc = 'referredBy_ASC',
|
|
|
|
+ ReferredByDesc = 'referredBy_DESC',
|
|
|
|
+ IsFoundingMemberAsc = 'isFoundingMember_ASC',
|
|
|
|
+ IsFoundingMemberDesc = 'isFoundingMember_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipPriceUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ /** The new membership price. */
|
|
|
|
+ newPrice: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipPriceUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<MembershipPriceUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipPriceUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ newPrice: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipPriceUpdatedEventEdge = {
|
|
|
|
+ node: MembershipPriceUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum MembershipPriceUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ NewPriceAsc = 'newPrice_ASC',
|
|
|
|
+ NewPriceDesc = 'newPrice_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipPriceUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ newPrice?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipPriceUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ newPrice_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newPrice_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newPrice_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newPrice_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newPrice_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newPrice_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ AND?: Maybe<Array<MembershipPriceUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MembershipPriceUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipPriceUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipSystemSnapshot = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** The snapshot block number */
|
|
|
|
+ snapshotBlock: Scalars['Int']
|
|
|
|
+ /** Initial invitation count of a new member. */
|
|
|
|
+ defaultInviteCount: Scalars['Int']
|
|
|
|
+ /** Current price to buy a membership. */
|
|
|
|
+ membershipPrice: Scalars['BigInt']
|
|
|
|
+ /** Percentage of tokens diverted to invitor. */
|
|
|
|
+ referralCut: Scalars['Int']
|
|
|
|
+ /** The initial, locked, balance credited to controller account of invitee. */
|
|
|
|
+ invitedInitialBalance: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipSystemSnapshotConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<MembershipSystemSnapshotEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipSystemSnapshotCreateInput = {
|
|
|
|
+ snapshotBlock: Scalars['Float']
|
|
|
|
+ defaultInviteCount: Scalars['Float']
|
|
|
|
+ membershipPrice: Scalars['BigInt']
|
|
|
|
+ referralCut: Scalars['Float']
|
|
|
|
+ invitedInitialBalance: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipSystemSnapshotEdge = {
|
|
|
|
+ node: MembershipSystemSnapshot
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum MembershipSystemSnapshotOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ SnapshotBlockAsc = 'snapshotBlock_ASC',
|
|
|
|
+ SnapshotBlockDesc = 'snapshotBlock_DESC',
|
|
|
|
+ DefaultInviteCountAsc = 'defaultInviteCount_ASC',
|
|
|
|
+ DefaultInviteCountDesc = 'defaultInviteCount_DESC',
|
|
|
|
+ MembershipPriceAsc = 'membershipPrice_ASC',
|
|
|
|
+ MembershipPriceDesc = 'membershipPrice_DESC',
|
|
|
|
+ ReferralCutAsc = 'referralCut_ASC',
|
|
|
|
+ ReferralCutDesc = 'referralCut_DESC',
|
|
|
|
+ InvitedInitialBalanceAsc = 'invitedInitialBalance_ASC',
|
|
|
|
+ InvitedInitialBalanceDesc = 'invitedInitialBalance_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipSystemSnapshotUpdateInput = {
|
|
|
|
+ snapshotBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ defaultInviteCount?: Maybe<Scalars['Float']>
|
|
|
|
+ membershipPrice?: Maybe<Scalars['BigInt']>
|
|
|
|
+ referralCut?: Maybe<Scalars['Float']>
|
|
|
|
+ invitedInitialBalance?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipSystemSnapshotWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ snapshotBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ snapshotBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ snapshotBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ snapshotBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ snapshotBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ snapshotBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ defaultInviteCount_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ defaultInviteCount_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ defaultInviteCount_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ defaultInviteCount_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ defaultInviteCount_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ defaultInviteCount_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ membershipPrice_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ membershipPrice_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ membershipPrice_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ membershipPrice_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ membershipPrice_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ membershipPrice_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ referralCut_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ referralCut_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ referralCut_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ referralCut_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ referralCut_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ referralCut_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ invitedInitialBalance_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ invitedInitialBalance_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ invitedInitialBalance_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ invitedInitialBalance_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ invitedInitialBalance_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ invitedInitialBalance_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ AND?: Maybe<Array<MembershipSystemSnapshotWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MembershipSystemSnapshotWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipSystemSnapshotWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipUpdateInput = {
|
|
|
|
+ handle?: Maybe<Scalars['String']>
|
|
|
|
+ metadata?: Maybe<Scalars['ID']>
|
|
|
|
+ controllerAccount?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount?: Maybe<Scalars['String']>
|
|
|
|
+ entry?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ isVerified?: Maybe<Scalars['Boolean']>
|
|
|
|
+ boundAccounts?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inviteCount?: Maybe<Scalars['Float']>
|
|
|
|
+ invitedBy?: Maybe<Scalars['ID']>
|
|
|
|
+ referredBy?: Maybe<Scalars['ID']>
|
|
|
|
+ isFoundingMember?: Maybe<Scalars['Boolean']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ handle_eq?: Maybe<Scalars['String']>
|
|
|
|
+ handle_contains?: Maybe<Scalars['String']>
|
|
|
|
+ handle_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ handle_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ handle_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ metadata_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ metadata_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ controllerAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ controllerAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ rootAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rootAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ entry_json?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ isVerified_eq?: Maybe<Scalars['Boolean']>
|
|
|
|
+ isVerified_in?: Maybe<Array<Scalars['Boolean']>>
|
|
|
|
+ inviteCount_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inviteCount_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inviteCount_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inviteCount_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inviteCount_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inviteCount_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ invitedBy_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ invitedBy_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ referredBy_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ referredBy_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ isFoundingMember_eq?: Maybe<Scalars['Boolean']>
|
|
|
|
+ isFoundingMember_in?: Maybe<Array<Scalars['Boolean']>>
|
|
|
|
+ metadata?: Maybe<MemberMetadataWhereInput>
|
|
|
|
+ invitees_none?: Maybe<MembershipWhereInput>
|
|
|
|
+ invitees_some?: Maybe<MembershipWhereInput>
|
|
|
|
+ invitees_every?: Maybe<MembershipWhereInput>
|
|
|
|
+ invitedBy?: Maybe<MembershipWhereInput>
|
|
|
|
+ referredMembers_none?: Maybe<MembershipWhereInput>
|
|
|
|
+ referredMembers_some?: Maybe<MembershipWhereInput>
|
|
|
|
+ referredMembers_every?: Maybe<MembershipWhereInput>
|
|
|
|
+ referredBy?: Maybe<MembershipWhereInput>
|
|
|
|
+ roles_none?: Maybe<WorkerWhereInput>
|
|
|
|
+ roles_some?: Maybe<WorkerWhereInput>
|
|
|
|
+ roles_every?: Maybe<WorkerWhereInput>
|
|
|
|
+ invitestransferredeventsourceMember_none?: Maybe<InvitesTransferredEventWhereInput>
|
|
|
|
+ invitestransferredeventsourceMember_some?: Maybe<InvitesTransferredEventWhereInput>
|
|
|
|
+ invitestransferredeventsourceMember_every?: Maybe<InvitesTransferredEventWhereInput>
|
|
|
|
+ invitestransferredeventtargetMember_none?: Maybe<InvitesTransferredEventWhereInput>
|
|
|
|
+ invitestransferredeventtargetMember_some?: Maybe<InvitesTransferredEventWhereInput>
|
|
|
|
+ invitestransferredeventtargetMember_every?: Maybe<InvitesTransferredEventWhereInput>
|
|
|
|
+ memberaccountsupdatedeventmember_none?: Maybe<MemberAccountsUpdatedEventWhereInput>
|
|
|
|
+ memberaccountsupdatedeventmember_some?: Maybe<MemberAccountsUpdatedEventWhereInput>
|
|
|
|
+ memberaccountsupdatedeventmember_every?: Maybe<MemberAccountsUpdatedEventWhereInput>
|
|
|
|
+ memberinvitedeventinvitingMember_none?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ memberinvitedeventinvitingMember_some?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ memberinvitedeventinvitingMember_every?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ memberinvitedeventnewMember_none?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ memberinvitedeventnewMember_some?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ memberinvitedeventnewMember_every?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ memberprofileupdatedeventmember_none?: Maybe<MemberProfileUpdatedEventWhereInput>
|
|
|
|
+ memberprofileupdatedeventmember_some?: Maybe<MemberProfileUpdatedEventWhereInput>
|
|
|
|
+ memberprofileupdatedeventmember_every?: Maybe<MemberProfileUpdatedEventWhereInput>
|
|
|
|
+ memberverificationstatusupdatedeventmember_none?: Maybe<MemberVerificationStatusUpdatedEventWhereInput>
|
|
|
|
+ memberverificationstatusupdatedeventmember_some?: Maybe<MemberVerificationStatusUpdatedEventWhereInput>
|
|
|
|
+ memberverificationstatusupdatedeventmember_every?: Maybe<MemberVerificationStatusUpdatedEventWhereInput>
|
|
|
|
+ membershipboughteventnewMember_none?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ membershipboughteventnewMember_some?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ membershipboughteventnewMember_every?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ membershipboughteventreferrer_none?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ membershipboughteventreferrer_some?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ membershipboughteventreferrer_every?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ stakingaccountaddedeventmember_none?: Maybe<StakingAccountAddedEventWhereInput>
|
|
|
|
+ stakingaccountaddedeventmember_some?: Maybe<StakingAccountAddedEventWhereInput>
|
|
|
|
+ stakingaccountaddedeventmember_every?: Maybe<StakingAccountAddedEventWhereInput>
|
|
|
|
+ stakingaccountconfirmedeventmember_none?: Maybe<StakingAccountConfirmedEventWhereInput>
|
|
|
|
+ stakingaccountconfirmedeventmember_some?: Maybe<StakingAccountConfirmedEventWhereInput>
|
|
|
|
+ stakingaccountconfirmedeventmember_every?: Maybe<StakingAccountConfirmedEventWhereInput>
|
|
|
|
+ stakingaccountremovedeventmember_none?: Maybe<StakingAccountRemovedEventWhereInput>
|
|
|
|
+ stakingaccountremovedeventmember_some?: Maybe<StakingAccountRemovedEventWhereInput>
|
|
|
|
+ stakingaccountremovedeventmember_every?: Maybe<StakingAccountRemovedEventWhereInput>
|
|
|
|
+ workinggroupapplicationapplicant_none?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ workinggroupapplicationapplicant_some?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ workinggroupapplicationapplicant_every?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ AND?: Maybe<Array<MembershipWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MembershipWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MembershipWhereUniqueInput = {
|
|
|
|
+ id?: Maybe<Scalars['ID']>
|
|
|
|
+ handle?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberVerificationStatusUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ member: Membership
|
|
|
|
+ memberId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** New status. */
|
|
|
|
+ isVerified: Scalars['Boolean']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberVerificationStatusUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<MemberVerificationStatusUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberVerificationStatusUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ member: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ isVerified: Scalars['Boolean']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberVerificationStatusUpdatedEventEdge = {
|
|
|
|
+ node: MemberVerificationStatusUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum MemberVerificationStatusUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ MemberAsc = 'member_ASC',
|
|
|
|
+ MemberDesc = 'member_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ IsVerifiedAsc = 'isVerified_ASC',
|
|
|
|
+ IsVerifiedDesc = 'isVerified_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberVerificationStatusUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ member?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ isVerified?: Maybe<Scalars['Boolean']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberVerificationStatusUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ member_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ member_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ isVerified_eq?: Maybe<Scalars['Boolean']>
|
|
|
|
+ isVerified_in?: Maybe<Array<Scalars['Boolean']>>
|
|
|
|
+ member?: Maybe<MembershipWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<MemberVerificationStatusUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<MemberVerificationStatusUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type MemberVerificationStatusUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum Network {
|
|
|
|
+ Babylon = 'BABYLON',
|
|
|
|
+ Alexandria = 'ALEXANDRIA',
|
|
|
|
+ Rome = 'ROME',
|
|
|
|
+ Olympia = 'OLYMPIA',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type NewMissedRewardLevelReachedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** New missed reward amount */
|
|
|
|
+ newMissedRewardAmount: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type NewMissedRewardLevelReachedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<NewMissedRewardLevelReachedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type NewMissedRewardLevelReachedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ newMissedRewardAmount: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type NewMissedRewardLevelReachedEventEdge = {
|
|
|
|
+ node: NewMissedRewardLevelReachedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum NewMissedRewardLevelReachedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ NewMissedRewardAmountAsc = 'newMissedRewardAmount_ASC',
|
|
|
|
+ NewMissedRewardAmountDesc = 'newMissedRewardAmount_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type NewMissedRewardLevelReachedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ newMissedRewardAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type NewMissedRewardLevelReachedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ newMissedRewardAmount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newMissedRewardAmount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newMissedRewardAmount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newMissedRewardAmount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newMissedRewardAmount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newMissedRewardAmount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<NewMissedRewardLevelReachedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<NewMissedRewardLevelReachedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type NewMissedRewardLevelReachedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningAddedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ opening: WorkingGroupOpening
|
|
|
|
+ openingId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningAddedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<OpeningAddedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningAddedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ opening: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningAddedEventEdge = {
|
|
|
|
+ node: OpeningAddedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum OpeningAddedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ OpeningAsc = 'opening_ASC',
|
|
|
|
+ OpeningDesc = 'opening_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningAddedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ opening?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningAddedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ opening_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ opening_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ opening?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ AND?: Maybe<Array<OpeningAddedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<OpeningAddedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningAddedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningCanceledEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ opening: WorkingGroupOpening
|
|
|
|
+ openingId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningCanceledEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<OpeningCanceledEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningCanceledEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ opening: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningCanceledEventEdge = {
|
|
|
|
+ node: OpeningCanceledEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum OpeningCanceledEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ OpeningAsc = 'opening_ASC',
|
|
|
|
+ OpeningDesc = 'opening_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningCanceledEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ opening?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningCanceledEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ opening_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ opening_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ opening?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ AND?: Maybe<Array<OpeningCanceledEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<OpeningCanceledEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningCanceledEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningFilledEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ opening: WorkingGroupOpening
|
|
|
|
+ openingId: Scalars['String']
|
|
|
|
+ workersHired: Array<Worker>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningFilledEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<OpeningFilledEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningFilledEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ opening: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningFilledEventEdge = {
|
|
|
|
+ node: OpeningFilledEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum OpeningFilledEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ OpeningAsc = 'opening_ASC',
|
|
|
|
+ OpeningDesc = 'opening_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningFilledEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ opening?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningFilledEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ opening_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ opening_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ opening?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ workersHired_none?: Maybe<WorkerWhereInput>
|
|
|
|
+ workersHired_some?: Maybe<WorkerWhereInput>
|
|
|
|
+ workersHired_every?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<OpeningFilledEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<OpeningFilledEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningFilledEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningStatusCancelled = {
|
|
|
|
+ /** Related event emitted on opening cancellation */
|
|
|
|
+ openingCanceledEvent?: Maybe<OpeningCanceledEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningStatusFilled = {
|
|
|
|
+ /** Related event emitted after filling the opening */
|
|
|
|
+ openingFilledEvent?: Maybe<OpeningFilledEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningStatusOpen = {
|
|
|
|
+ phantom?: Maybe<Scalars['Int']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningStatusOpenCreateInput = {
|
|
|
|
+ phantom?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningStatusOpenUpdateInput = {
|
|
|
|
+ phantom?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningStatusOpenWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ phantom_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<OpeningStatusOpenWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<OpeningStatusOpenWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type OpeningStatusOpenWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type PageInfo = {
|
|
|
|
+ hasNextPage: Scalars['Boolean']
|
|
|
|
+ hasPreviousPage: Scalars['Boolean']
|
|
|
|
+ startCursor?: Maybe<Scalars['String']>
|
|
|
|
+ endCursor?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ProcessorState = {
|
|
|
|
+ lastCompleteBlock: Scalars['Float']
|
|
|
|
+ lastProcessedEvent: Scalars['String']
|
|
|
|
+ indexerHead: Scalars['Float']
|
|
|
|
+ chainHead: Scalars['Float']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type Query = {
|
|
|
|
+ applicationFormQuestionAnswers: Array<ApplicationFormQuestionAnswer>
|
|
|
|
+ applicationFormQuestionAnswerByUniqueInput?: Maybe<ApplicationFormQuestionAnswer>
|
|
|
|
+ applicationFormQuestionAnswersConnection: ApplicationFormQuestionAnswerConnection
|
|
|
|
+ applicationFormQuestions: Array<ApplicationFormQuestion>
|
|
|
|
+ applicationFormQuestionByUniqueInput?: Maybe<ApplicationFormQuestion>
|
|
|
|
+ applicationFormQuestionsConnection: ApplicationFormQuestionConnection
|
|
|
|
+ applicationWithdrawnEvents: Array<ApplicationWithdrawnEvent>
|
|
|
|
+ applicationWithdrawnEventByUniqueInput?: Maybe<ApplicationWithdrawnEvent>
|
|
|
|
+ applicationWithdrawnEventsConnection: ApplicationWithdrawnEventConnection
|
|
|
|
+ appliedOnOpeningEvents: Array<AppliedOnOpeningEvent>
|
|
|
|
+ appliedOnOpeningEventByUniqueInput?: Maybe<AppliedOnOpeningEvent>
|
|
|
|
+ appliedOnOpeningEventsConnection: AppliedOnOpeningEventConnection
|
|
|
|
+ budgetSetEvents: Array<BudgetSetEvent>
|
|
|
|
+ budgetSetEventByUniqueInput?: Maybe<BudgetSetEvent>
|
|
|
|
+ budgetSetEventsConnection: BudgetSetEventConnection
|
|
|
|
+ budgetSpendingEvents: Array<BudgetSpendingEvent>
|
|
|
|
+ budgetSpendingEventByUniqueInput?: Maybe<BudgetSpendingEvent>
|
|
|
|
+ budgetSpendingEventsConnection: BudgetSpendingEventConnection
|
|
|
|
+ dataObjects: Array<DataObject>
|
|
|
|
+ dataObjectByUniqueInput?: Maybe<DataObject>
|
|
|
|
+ dataObjectsConnection: DataObjectConnection
|
|
|
|
+ events: Array<Event>
|
|
|
|
+ initialInvitationBalanceUpdatedEvents: Array<InitialInvitationBalanceUpdatedEvent>
|
|
|
|
+ initialInvitationBalanceUpdatedEventByUniqueInput?: Maybe<InitialInvitationBalanceUpdatedEvent>
|
|
|
|
+ initialInvitationBalanceUpdatedEventsConnection: InitialInvitationBalanceUpdatedEventConnection
|
|
|
|
+ initialInvitationCountUpdatedEvents: Array<InitialInvitationCountUpdatedEvent>
|
|
|
|
+ initialInvitationCountUpdatedEventByUniqueInput?: Maybe<InitialInvitationCountUpdatedEvent>
|
|
|
|
+ initialInvitationCountUpdatedEventsConnection: InitialInvitationCountUpdatedEventConnection
|
|
|
|
+ invitesTransferredEvents: Array<InvitesTransferredEvent>
|
|
|
|
+ invitesTransferredEventByUniqueInput?: Maybe<InvitesTransferredEvent>
|
|
|
|
+ invitesTransferredEventsConnection: InvitesTransferredEventConnection
|
|
|
|
+ leaderInvitationQuotaUpdatedEvents: Array<LeaderInvitationQuotaUpdatedEvent>
|
|
|
|
+ leaderInvitationQuotaUpdatedEventByUniqueInput?: Maybe<LeaderInvitationQuotaUpdatedEvent>
|
|
|
|
+ leaderInvitationQuotaUpdatedEventsConnection: LeaderInvitationQuotaUpdatedEventConnection
|
|
|
|
+ leaderSetEvents: Array<LeaderSetEvent>
|
|
|
|
+ leaderSetEventByUniqueInput?: Maybe<LeaderSetEvent>
|
|
|
|
+ leaderSetEventsConnection: LeaderSetEventConnection
|
|
|
|
+ leaderUnsetEvents: Array<LeaderUnsetEvent>
|
|
|
|
+ leaderUnsetEventByUniqueInput?: Maybe<LeaderUnsetEvent>
|
|
|
|
+ leaderUnsetEventsConnection: LeaderUnsetEventConnection
|
|
|
|
+ memberAccountsUpdatedEvents: Array<MemberAccountsUpdatedEvent>
|
|
|
|
+ memberAccountsUpdatedEventByUniqueInput?: Maybe<MemberAccountsUpdatedEvent>
|
|
|
|
+ memberAccountsUpdatedEventsConnection: MemberAccountsUpdatedEventConnection
|
|
|
|
+ memberInvitedEvents: Array<MemberInvitedEvent>
|
|
|
|
+ memberInvitedEventByUniqueInput?: Maybe<MemberInvitedEvent>
|
|
|
|
+ memberInvitedEventsConnection: MemberInvitedEventConnection
|
|
|
|
+ memberMetadata: Array<MemberMetadata>
|
|
|
|
+ memberMetadataByUniqueInput?: Maybe<MemberMetadata>
|
|
|
|
+ memberMetadataConnection: MemberMetadataConnection
|
|
|
|
+ memberProfileUpdatedEvents: Array<MemberProfileUpdatedEvent>
|
|
|
|
+ memberProfileUpdatedEventByUniqueInput?: Maybe<MemberProfileUpdatedEvent>
|
|
|
|
+ memberProfileUpdatedEventsConnection: MemberProfileUpdatedEventConnection
|
|
|
|
+ memberVerificationStatusUpdatedEvents: Array<MemberVerificationStatusUpdatedEvent>
|
|
|
|
+ memberVerificationStatusUpdatedEventByUniqueInput?: Maybe<MemberVerificationStatusUpdatedEvent>
|
|
|
|
+ memberVerificationStatusUpdatedEventsConnection: MemberVerificationStatusUpdatedEventConnection
|
|
|
|
+ membershipBoughtEvents: Array<MembershipBoughtEvent>
|
|
|
|
+ membershipBoughtEventByUniqueInput?: Maybe<MembershipBoughtEvent>
|
|
|
|
+ membershipBoughtEventsConnection: MembershipBoughtEventConnection
|
|
|
|
+ membershipPriceUpdatedEvents: Array<MembershipPriceUpdatedEvent>
|
|
|
|
+ membershipPriceUpdatedEventByUniqueInput?: Maybe<MembershipPriceUpdatedEvent>
|
|
|
|
+ membershipPriceUpdatedEventsConnection: MembershipPriceUpdatedEventConnection
|
|
|
|
+ membershipSystemSnapshots: Array<MembershipSystemSnapshot>
|
|
|
|
+ membershipSystemSnapshotByUniqueInput?: Maybe<MembershipSystemSnapshot>
|
|
|
|
+ membershipSystemSnapshotsConnection: MembershipSystemSnapshotConnection
|
|
|
|
+ memberships: Array<Membership>
|
|
|
|
+ membershipByUniqueInput?: Maybe<Membership>
|
|
|
|
+ membershipsConnection: MembershipConnection
|
|
|
|
+ newMissedRewardLevelReachedEvents: Array<NewMissedRewardLevelReachedEvent>
|
|
|
|
+ newMissedRewardLevelReachedEventByUniqueInput?: Maybe<NewMissedRewardLevelReachedEvent>
|
|
|
|
+ newMissedRewardLevelReachedEventsConnection: NewMissedRewardLevelReachedEventConnection
|
|
|
|
+ openingAddedEvents: Array<OpeningAddedEvent>
|
|
|
|
+ openingAddedEventByUniqueInput?: Maybe<OpeningAddedEvent>
|
|
|
|
+ openingAddedEventsConnection: OpeningAddedEventConnection
|
|
|
|
+ openingCanceledEvents: Array<OpeningCanceledEvent>
|
|
|
|
+ openingCanceledEventByUniqueInput?: Maybe<OpeningCanceledEvent>
|
|
|
|
+ openingCanceledEventsConnection: OpeningCanceledEventConnection
|
|
|
|
+ openingFilledEvents: Array<OpeningFilledEvent>
|
|
|
|
+ openingFilledEventByUniqueInput?: Maybe<OpeningFilledEvent>
|
|
|
|
+ openingFilledEventsConnection: OpeningFilledEventConnection
|
|
|
|
+ membersByHandle: Array<MembersByHandleFtsOutput>
|
|
|
|
+ referralCutUpdatedEvents: Array<ReferralCutUpdatedEvent>
|
|
|
|
+ referralCutUpdatedEventByUniqueInput?: Maybe<ReferralCutUpdatedEvent>
|
|
|
|
+ referralCutUpdatedEventsConnection: ReferralCutUpdatedEventConnection
|
|
|
|
+ rewardPaidEvents: Array<RewardPaidEvent>
|
|
|
|
+ rewardPaidEventByUniqueInput?: Maybe<RewardPaidEvent>
|
|
|
|
+ rewardPaidEventsConnection: RewardPaidEventConnection
|
|
|
|
+ stakeDecreasedEvents: Array<StakeDecreasedEvent>
|
|
|
|
+ stakeDecreasedEventByUniqueInput?: Maybe<StakeDecreasedEvent>
|
|
|
|
+ stakeDecreasedEventsConnection: StakeDecreasedEventConnection
|
|
|
|
+ stakeIncreasedEvents: Array<StakeIncreasedEvent>
|
|
|
|
+ stakeIncreasedEventByUniqueInput?: Maybe<StakeIncreasedEvent>
|
|
|
|
+ stakeIncreasedEventsConnection: StakeIncreasedEventConnection
|
|
|
|
+ stakeSlashedEvents: Array<StakeSlashedEvent>
|
|
|
|
+ stakeSlashedEventByUniqueInput?: Maybe<StakeSlashedEvent>
|
|
|
|
+ stakeSlashedEventsConnection: StakeSlashedEventConnection
|
|
|
|
+ stakingAccountAddedEvents: Array<StakingAccountAddedEvent>
|
|
|
|
+ stakingAccountAddedEventByUniqueInput?: Maybe<StakingAccountAddedEvent>
|
|
|
|
+ stakingAccountAddedEventsConnection: StakingAccountAddedEventConnection
|
|
|
|
+ stakingAccountConfirmedEvents: Array<StakingAccountConfirmedEvent>
|
|
|
|
+ stakingAccountConfirmedEventByUniqueInput?: Maybe<StakingAccountConfirmedEvent>
|
|
|
|
+ stakingAccountConfirmedEventsConnection: StakingAccountConfirmedEventConnection
|
|
|
|
+ stakingAccountRemovedEvents: Array<StakingAccountRemovedEvent>
|
|
|
|
+ stakingAccountRemovedEventByUniqueInput?: Maybe<StakingAccountRemovedEvent>
|
|
|
|
+ stakingAccountRemovedEventsConnection: StakingAccountRemovedEventConnection
|
|
|
|
+ statusTextChangedEvents: Array<StatusTextChangedEvent>
|
|
|
|
+ statusTextChangedEventByUniqueInput?: Maybe<StatusTextChangedEvent>
|
|
|
|
+ statusTextChangedEventsConnection: StatusTextChangedEventConnection
|
|
|
|
+ terminatedLeaderEvents: Array<TerminatedLeaderEvent>
|
|
|
|
+ terminatedLeaderEventByUniqueInput?: Maybe<TerminatedLeaderEvent>
|
|
|
|
+ terminatedLeaderEventsConnection: TerminatedLeaderEventConnection
|
|
|
|
+ terminatedWorkerEvents: Array<TerminatedWorkerEvent>
|
|
|
|
+ terminatedWorkerEventByUniqueInput?: Maybe<TerminatedWorkerEvent>
|
|
|
|
+ terminatedWorkerEventsConnection: TerminatedWorkerEventConnection
|
|
|
|
+ upcomingWorkingGroupOpenings: Array<UpcomingWorkingGroupOpening>
|
|
|
|
+ upcomingWorkingGroupOpeningByUniqueInput?: Maybe<UpcomingWorkingGroupOpening>
|
|
|
|
+ upcomingWorkingGroupOpeningsConnection: UpcomingWorkingGroupOpeningConnection
|
|
|
|
+ workerExitedEvents: Array<WorkerExitedEvent>
|
|
|
|
+ workerExitedEventByUniqueInput?: Maybe<WorkerExitedEvent>
|
|
|
|
+ workerExitedEventsConnection: WorkerExitedEventConnection
|
|
|
|
+ workerRewardAccountUpdatedEvents: Array<WorkerRewardAccountUpdatedEvent>
|
|
|
|
+ workerRewardAccountUpdatedEventByUniqueInput?: Maybe<WorkerRewardAccountUpdatedEvent>
|
|
|
|
+ workerRewardAccountUpdatedEventsConnection: WorkerRewardAccountUpdatedEventConnection
|
|
|
|
+ workerRewardAmountUpdatedEvents: Array<WorkerRewardAmountUpdatedEvent>
|
|
|
|
+ workerRewardAmountUpdatedEventByUniqueInput?: Maybe<WorkerRewardAmountUpdatedEvent>
|
|
|
|
+ workerRewardAmountUpdatedEventsConnection: WorkerRewardAmountUpdatedEventConnection
|
|
|
|
+ workerRoleAccountUpdatedEvents: Array<WorkerRoleAccountUpdatedEvent>
|
|
|
|
+ workerRoleAccountUpdatedEventByUniqueInput?: Maybe<WorkerRoleAccountUpdatedEvent>
|
|
|
|
+ workerRoleAccountUpdatedEventsConnection: WorkerRoleAccountUpdatedEventConnection
|
|
|
|
+ workerStartedLeavingEvents: Array<WorkerStartedLeavingEvent>
|
|
|
|
+ workerStartedLeavingEventByUniqueInput?: Maybe<WorkerStartedLeavingEvent>
|
|
|
|
+ workerStartedLeavingEventsConnection: WorkerStartedLeavingEventConnection
|
|
|
|
+ workers: Array<Worker>
|
|
|
|
+ workerByUniqueInput?: Maybe<Worker>
|
|
|
|
+ workersConnection: WorkerConnection
|
|
|
|
+ workingGroupApplications: Array<WorkingGroupApplication>
|
|
|
|
+ workingGroupApplicationByUniqueInput?: Maybe<WorkingGroupApplication>
|
|
|
|
+ workingGroupApplicationsConnection: WorkingGroupApplicationConnection
|
|
|
|
+ workingGroupMetadata: Array<WorkingGroupMetadata>
|
|
|
|
+ workingGroupMetadataByUniqueInput?: Maybe<WorkingGroupMetadata>
|
|
|
|
+ workingGroupMetadataConnection: WorkingGroupMetadataConnection
|
|
|
|
+ workingGroupOpeningMetadata: Array<WorkingGroupOpeningMetadata>
|
|
|
|
+ workingGroupOpeningMetadataByUniqueInput?: Maybe<WorkingGroupOpeningMetadata>
|
|
|
|
+ workingGroupOpeningMetadataConnection: WorkingGroupOpeningMetadataConnection
|
|
|
|
+ workingGroupOpenings: Array<WorkingGroupOpening>
|
|
|
|
+ workingGroupOpeningByUniqueInput?: Maybe<WorkingGroupOpening>
|
|
|
|
+ workingGroupOpeningsConnection: WorkingGroupOpeningConnection
|
|
|
|
+ workingGroups: Array<WorkingGroup>
|
|
|
|
+ workingGroupByUniqueInput?: Maybe<WorkingGroup>
|
|
|
|
+ workingGroupsConnection: WorkingGroupConnection
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryApplicationFormQuestionAnswersArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<ApplicationFormQuestionAnswerWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<ApplicationFormQuestionAnswerOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryApplicationFormQuestionAnswerByUniqueInputArgs = {
|
|
|
|
+ where: ApplicationFormQuestionAnswerWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryApplicationFormQuestionAnswersConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<ApplicationFormQuestionAnswerWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<ApplicationFormQuestionAnswerOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryApplicationFormQuestionsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<ApplicationFormQuestionWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<ApplicationFormQuestionOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryApplicationFormQuestionByUniqueInputArgs = {
|
|
|
|
+ where: ApplicationFormQuestionWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryApplicationFormQuestionsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<ApplicationFormQuestionWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<ApplicationFormQuestionOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryApplicationWithdrawnEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<ApplicationWithdrawnEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<ApplicationWithdrawnEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryApplicationWithdrawnEventByUniqueInputArgs = {
|
|
|
|
+ where: ApplicationWithdrawnEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryApplicationWithdrawnEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<ApplicationWithdrawnEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<ApplicationWithdrawnEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryAppliedOnOpeningEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<AppliedOnOpeningEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<AppliedOnOpeningEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryAppliedOnOpeningEventByUniqueInputArgs = {
|
|
|
|
+ where: AppliedOnOpeningEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryAppliedOnOpeningEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<AppliedOnOpeningEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<AppliedOnOpeningEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryBudgetSetEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<BudgetSetEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<BudgetSetEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryBudgetSetEventByUniqueInputArgs = {
|
|
|
|
+ where: BudgetSetEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryBudgetSetEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<BudgetSetEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<BudgetSetEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryBudgetSpendingEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<BudgetSpendingEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<BudgetSpendingEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryBudgetSpendingEventByUniqueInputArgs = {
|
|
|
|
+ where: BudgetSpendingEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryBudgetSpendingEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<BudgetSpendingEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<BudgetSpendingEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryDataObjectsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<DataObjectWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<DataObjectOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryDataObjectByUniqueInputArgs = {
|
|
|
|
+ where: DataObjectWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryDataObjectsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<DataObjectWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<DataObjectOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<EventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<EventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryInitialInvitationBalanceUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<InitialInvitationBalanceUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<InitialInvitationBalanceUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryInitialInvitationBalanceUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: InitialInvitationBalanceUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryInitialInvitationBalanceUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<InitialInvitationBalanceUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<InitialInvitationBalanceUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryInitialInvitationCountUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<InitialInvitationCountUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<InitialInvitationCountUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryInitialInvitationCountUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: InitialInvitationCountUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryInitialInvitationCountUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<InitialInvitationCountUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<InitialInvitationCountUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryInvitesTransferredEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<InvitesTransferredEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<InvitesTransferredEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryInvitesTransferredEventByUniqueInputArgs = {
|
|
|
|
+ where: InvitesTransferredEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryInvitesTransferredEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<InvitesTransferredEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<InvitesTransferredEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryLeaderInvitationQuotaUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<LeaderInvitationQuotaUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<LeaderInvitationQuotaUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryLeaderInvitationQuotaUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: LeaderInvitationQuotaUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryLeaderInvitationQuotaUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<LeaderInvitationQuotaUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<LeaderInvitationQuotaUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryLeaderSetEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<LeaderSetEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<LeaderSetEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryLeaderSetEventByUniqueInputArgs = {
|
|
|
|
+ where: LeaderSetEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryLeaderSetEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<LeaderSetEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<LeaderSetEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryLeaderUnsetEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<LeaderUnsetEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<LeaderUnsetEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryLeaderUnsetEventByUniqueInputArgs = {
|
|
|
|
+ where: LeaderUnsetEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryLeaderUnsetEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<LeaderUnsetEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<LeaderUnsetEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberAccountsUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<MemberAccountsUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberAccountsUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberAccountsUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: MemberAccountsUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberAccountsUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<MemberAccountsUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberAccountsUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberInvitedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberInvitedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberInvitedEventByUniqueInputArgs = {
|
|
|
|
+ where: MemberInvitedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberInvitedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<MemberInvitedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberInvitedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberMetadataArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<MemberMetadataWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberMetadataOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberMetadataByUniqueInputArgs = {
|
|
|
|
+ where: MemberMetadataWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberMetadataConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<MemberMetadataWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberMetadataOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberProfileUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<MemberProfileUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberProfileUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberProfileUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: MemberProfileUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberProfileUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<MemberProfileUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberProfileUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberVerificationStatusUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<MemberVerificationStatusUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberVerificationStatusUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberVerificationStatusUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: MemberVerificationStatusUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMemberVerificationStatusUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<MemberVerificationStatusUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MemberVerificationStatusUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipBoughtEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MembershipBoughtEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipBoughtEventByUniqueInputArgs = {
|
|
|
|
+ where: MembershipBoughtEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipBoughtEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<MembershipBoughtEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MembershipBoughtEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipPriceUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<MembershipPriceUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MembershipPriceUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipPriceUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: MembershipPriceUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipPriceUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<MembershipPriceUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MembershipPriceUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipSystemSnapshotsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<MembershipSystemSnapshotWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MembershipSystemSnapshotOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipSystemSnapshotByUniqueInputArgs = {
|
|
|
|
+ where: MembershipSystemSnapshotWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipSystemSnapshotsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<MembershipSystemSnapshotWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MembershipSystemSnapshotOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<MembershipWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MembershipOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipByUniqueInputArgs = {
|
|
|
|
+ where: MembershipWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembershipsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<MembershipWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<MembershipOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryNewMissedRewardLevelReachedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<NewMissedRewardLevelReachedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<NewMissedRewardLevelReachedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryNewMissedRewardLevelReachedEventByUniqueInputArgs = {
|
|
|
|
+ where: NewMissedRewardLevelReachedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryNewMissedRewardLevelReachedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<NewMissedRewardLevelReachedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<NewMissedRewardLevelReachedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryOpeningAddedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<OpeningAddedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<OpeningAddedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryOpeningAddedEventByUniqueInputArgs = {
|
|
|
|
+ where: OpeningAddedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryOpeningAddedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<OpeningAddedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<OpeningAddedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryOpeningCanceledEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<OpeningCanceledEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<OpeningCanceledEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryOpeningCanceledEventByUniqueInputArgs = {
|
|
|
|
+ where: OpeningCanceledEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryOpeningCanceledEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<OpeningCanceledEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<OpeningCanceledEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryOpeningFilledEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<OpeningFilledEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<OpeningFilledEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryOpeningFilledEventByUniqueInputArgs = {
|
|
|
|
+ where: OpeningFilledEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryOpeningFilledEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<OpeningFilledEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<OpeningFilledEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryMembersByHandleArgs = {
|
|
|
|
+ whereMembership?: Maybe<MembershipWhereInput>
|
|
|
|
+ skip?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ text: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryReferralCutUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<ReferralCutUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<ReferralCutUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryReferralCutUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: ReferralCutUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryReferralCutUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<ReferralCutUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<ReferralCutUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryRewardPaidEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<RewardPaidEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<RewardPaidEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryRewardPaidEventByUniqueInputArgs = {
|
|
|
|
+ where: RewardPaidEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryRewardPaidEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<RewardPaidEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<RewardPaidEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakeDecreasedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<StakeDecreasedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakeDecreasedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakeDecreasedEventByUniqueInputArgs = {
|
|
|
|
+ where: StakeDecreasedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakeDecreasedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<StakeDecreasedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakeDecreasedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakeIncreasedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<StakeIncreasedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakeIncreasedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakeIncreasedEventByUniqueInputArgs = {
|
|
|
|
+ where: StakeIncreasedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakeIncreasedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<StakeIncreasedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakeIncreasedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakeSlashedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<StakeSlashedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakeSlashedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakeSlashedEventByUniqueInputArgs = {
|
|
|
|
+ where: StakeSlashedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakeSlashedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<StakeSlashedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakeSlashedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakingAccountAddedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<StakingAccountAddedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakingAccountAddedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakingAccountAddedEventByUniqueInputArgs = {
|
|
|
|
+ where: StakingAccountAddedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakingAccountAddedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<StakingAccountAddedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakingAccountAddedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakingAccountConfirmedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<StakingAccountConfirmedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakingAccountConfirmedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakingAccountConfirmedEventByUniqueInputArgs = {
|
|
|
|
+ where: StakingAccountConfirmedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakingAccountConfirmedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<StakingAccountConfirmedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakingAccountConfirmedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakingAccountRemovedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<StakingAccountRemovedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakingAccountRemovedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakingAccountRemovedEventByUniqueInputArgs = {
|
|
|
|
+ where: StakingAccountRemovedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStakingAccountRemovedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<StakingAccountRemovedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StakingAccountRemovedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStatusTextChangedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<StatusTextChangedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StatusTextChangedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStatusTextChangedEventByUniqueInputArgs = {
|
|
|
|
+ where: StatusTextChangedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryStatusTextChangedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<StatusTextChangedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<StatusTextChangedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryTerminatedLeaderEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<TerminatedLeaderEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<TerminatedLeaderEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryTerminatedLeaderEventByUniqueInputArgs = {
|
|
|
|
+ where: TerminatedLeaderEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryTerminatedLeaderEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<TerminatedLeaderEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<TerminatedLeaderEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryTerminatedWorkerEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<TerminatedWorkerEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<TerminatedWorkerEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryTerminatedWorkerEventByUniqueInputArgs = {
|
|
|
|
+ where: TerminatedWorkerEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryTerminatedWorkerEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<TerminatedWorkerEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<TerminatedWorkerEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryUpcomingWorkingGroupOpeningsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<UpcomingWorkingGroupOpeningOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryUpcomingWorkingGroupOpeningByUniqueInputArgs = {
|
|
|
|
+ where: UpcomingWorkingGroupOpeningWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryUpcomingWorkingGroupOpeningsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<UpcomingWorkingGroupOpeningOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerExitedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkerExitedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerExitedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerExitedEventByUniqueInputArgs = {
|
|
|
|
+ where: WorkerExitedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerExitedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkerExitedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerExitedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerRewardAccountUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkerRewardAccountUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerRewardAccountUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerRewardAccountUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: WorkerRewardAccountUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerRewardAccountUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkerRewardAccountUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerRewardAccountUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerRewardAmountUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkerRewardAmountUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerRewardAmountUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerRewardAmountUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: WorkerRewardAmountUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerRewardAmountUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkerRewardAmountUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerRewardAmountUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerRoleAccountUpdatedEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkerRoleAccountUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerRoleAccountUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerRoleAccountUpdatedEventByUniqueInputArgs = {
|
|
|
|
+ where: WorkerRoleAccountUpdatedEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerRoleAccountUpdatedEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkerRoleAccountUpdatedEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerRoleAccountUpdatedEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerStartedLeavingEventsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkerStartedLeavingEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerStartedLeavingEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerStartedLeavingEventByUniqueInputArgs = {
|
|
|
|
+ where: WorkerStartedLeavingEventWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerStartedLeavingEventsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkerStartedLeavingEventWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerStartedLeavingEventOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkersArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkerWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkerByUniqueInputArgs = {
|
|
|
|
+ where: WorkerWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkersConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkerWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkerOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupApplicationsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupApplicationOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupApplicationByUniqueInputArgs = {
|
|
|
|
+ where: WorkingGroupApplicationWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupApplicationsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupApplicationOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupMetadataArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkingGroupMetadataWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupMetadataOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupMetadataByUniqueInputArgs = {
|
|
|
|
+ where: WorkingGroupMetadataWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupMetadataConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkingGroupMetadataWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupMetadataOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupOpeningMetadataArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkingGroupOpeningMetadataWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupOpeningMetadataOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupOpeningMetadataByUniqueInputArgs = {
|
|
|
|
+ where: WorkingGroupOpeningMetadataWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupOpeningMetadataConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkingGroupOpeningMetadataWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupOpeningMetadataOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupOpeningsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupOpeningOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupOpeningByUniqueInputArgs = {
|
|
|
|
+ where: WorkingGroupOpeningWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupOpeningsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupOpeningOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupsArgs = {
|
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
|
+ where?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupByUniqueInputArgs = {
|
|
|
|
+ where: WorkingGroupWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type QueryWorkingGroupsConnectionArgs = {
|
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
|
+ where?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ orderBy?: Maybe<Array<WorkingGroupOrderByInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ReferralCutUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ /** New cut value. */
|
|
|
|
+ newValue: Scalars['Int']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ReferralCutUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<ReferralCutUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ReferralCutUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ newValue: Scalars['Float']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ReferralCutUpdatedEventEdge = {
|
|
|
|
+ node: ReferralCutUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum ReferralCutUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ NewValueAsc = 'newValue_ASC',
|
|
|
|
+ NewValueDesc = 'newValue_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ReferralCutUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ newValue?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ReferralCutUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ newValue_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ newValue_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ newValue_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ newValue_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ newValue_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ newValue_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<ReferralCutUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<ReferralCutUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type ReferralCutUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type RewardPaidEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** The account that recieved the reward */
|
|
|
|
+ rewardAccount: Scalars['String']
|
|
|
|
+ /** Amount recieved */
|
|
|
|
+ amount: Scalars['BigInt']
|
|
|
|
+ /** Type of the payment (REGULAR/MISSED) */
|
|
|
|
+ type: RewardPaymentType
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type RewardPaidEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<RewardPaidEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type RewardPaidEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ rewardAccount: Scalars['String']
|
|
|
|
+ amount: Scalars['BigInt']
|
|
|
|
+ type: RewardPaymentType
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type RewardPaidEventEdge = {
|
|
|
|
+ node: RewardPaidEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum RewardPaidEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ RewardAccountAsc = 'rewardAccount_ASC',
|
|
|
|
+ RewardAccountDesc = 'rewardAccount_DESC',
|
|
|
|
+ AmountAsc = 'amount_ASC',
|
|
|
|
+ AmountDesc = 'amount_DESC',
|
|
|
|
+ TypeAsc = 'type_ASC',
|
|
|
|
+ TypeDesc = 'type_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type RewardPaidEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ rewardAccount?: Maybe<Scalars['String']>
|
|
|
|
+ amount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ type?: Maybe<RewardPaymentType>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type RewardPaidEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ rewardAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ amount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ type_eq?: Maybe<RewardPaymentType>
|
|
|
|
+ type_in?: Maybe<Array<RewardPaymentType>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<RewardPaidEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<RewardPaidEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type RewardPaidEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum RewardPaymentType {
|
|
|
|
+ Regular = 'REGULAR',
|
|
|
|
+ Missed = 'MISSED',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeDecreasedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** The amount of JOY the stake was decreased by */
|
|
|
|
+ amount: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeDecreasedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<StakeDecreasedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeDecreasedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ amount: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeDecreasedEventEdge = {
|
|
|
|
+ node: StakeDecreasedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum StakeDecreasedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ AmountAsc = 'amount_ASC',
|
|
|
|
+ AmountDesc = 'amount_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeDecreasedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ amount?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeDecreasedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ amount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<StakeDecreasedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<StakeDecreasedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeDecreasedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeIncreasedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** The amount of JOY the stake was increased by */
|
|
|
|
+ amount: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeIncreasedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<StakeIncreasedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeIncreasedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ amount: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeIncreasedEventEdge = {
|
|
|
|
+ node: StakeIncreasedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum StakeIncreasedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ AmountAsc = 'amount_ASC',
|
|
|
|
+ AmountDesc = 'amount_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeIncreasedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ amount?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeIncreasedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ amount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ amount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<StakeIncreasedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<StakeIncreasedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeIncreasedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeSlashedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** Balance that was requested to be slashed */
|
|
|
|
+ requestedAmount: Scalars['BigInt']
|
|
|
|
+ /** Balance that was actually slashed */
|
|
|
|
+ slashedAmount: Scalars['BigInt']
|
|
|
|
+ /** Optional rationale */
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeSlashedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<StakeSlashedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeSlashedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ requestedAmount: Scalars['BigInt']
|
|
|
|
+ slashedAmount: Scalars['BigInt']
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeSlashedEventEdge = {
|
|
|
|
+ node: StakeSlashedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum StakeSlashedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ RequestedAmountAsc = 'requestedAmount_ASC',
|
|
|
|
+ RequestedAmountDesc = 'requestedAmount_DESC',
|
|
|
|
+ SlashedAmountAsc = 'slashedAmount_ASC',
|
|
|
|
+ SlashedAmountDesc = 'slashedAmount_DESC',
|
|
|
|
+ RationaleAsc = 'rationale_ASC',
|
|
|
|
+ RationaleDesc = 'rationale_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeSlashedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ requestedAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ slashedAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeSlashedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ requestedAmount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ requestedAmount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ requestedAmount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ requestedAmount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ requestedAmount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ requestedAmount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ slashedAmount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ slashedAmount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ slashedAmount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ slashedAmount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ slashedAmount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ slashedAmount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ rationale_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<StakeSlashedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<StakeSlashedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakeSlashedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountAddedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ member: Membership
|
|
|
|
+ memberId: Scalars['String']
|
|
|
|
+ /** New staking account in SS58 encoding. */
|
|
|
|
+ account: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountAddedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<StakingAccountAddedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountAddedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ member: Scalars['ID']
|
|
|
|
+ account: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountAddedEventEdge = {
|
|
|
|
+ node: StakingAccountAddedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum StakingAccountAddedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ MemberAsc = 'member_ASC',
|
|
|
|
+ MemberDesc = 'member_DESC',
|
|
|
|
+ AccountAsc = 'account_ASC',
|
|
|
|
+ AccountDesc = 'account_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountAddedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ member?: Maybe<Scalars['ID']>
|
|
|
|
+ account?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountAddedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ member_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ member_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ account_eq?: Maybe<Scalars['String']>
|
|
|
|
+ account_contains?: Maybe<Scalars['String']>
|
|
|
|
+ account_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ account_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ account_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ member?: Maybe<MembershipWhereInput>
|
|
|
|
+ AND?: Maybe<Array<StakingAccountAddedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<StakingAccountAddedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountAddedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountConfirmedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ member: Membership
|
|
|
|
+ memberId: Scalars['String']
|
|
|
|
+ /** New staking account in SS58 encoding. */
|
|
|
|
+ account: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountConfirmedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<StakingAccountConfirmedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountConfirmedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ member: Scalars['ID']
|
|
|
|
+ account: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountConfirmedEventEdge = {
|
|
|
|
+ node: StakingAccountConfirmedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum StakingAccountConfirmedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ MemberAsc = 'member_ASC',
|
|
|
|
+ MemberDesc = 'member_DESC',
|
|
|
|
+ AccountAsc = 'account_ASC',
|
|
|
|
+ AccountDesc = 'account_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountConfirmedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ member?: Maybe<Scalars['ID']>
|
|
|
|
+ account?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountConfirmedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ member_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ member_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ account_eq?: Maybe<Scalars['String']>
|
|
|
|
+ account_contains?: Maybe<Scalars['String']>
|
|
|
|
+ account_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ account_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ account_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ member?: Maybe<MembershipWhereInput>
|
|
|
|
+ AND?: Maybe<Array<StakingAccountConfirmedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<StakingAccountConfirmedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountConfirmedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountRemovedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ member: Membership
|
|
|
|
+ memberId: Scalars['String']
|
|
|
|
+ /** New staking account in SS58 encoding. */
|
|
|
|
+ account: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountRemovedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<StakingAccountRemovedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountRemovedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ member: Scalars['ID']
|
|
|
|
+ account: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountRemovedEventEdge = {
|
|
|
|
+ node: StakingAccountRemovedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum StakingAccountRemovedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ MemberAsc = 'member_ASC',
|
|
|
|
+ MemberDesc = 'member_DESC',
|
|
|
|
+ AccountAsc = 'account_ASC',
|
|
|
|
+ AccountDesc = 'account_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountRemovedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ member?: Maybe<Scalars['ID']>
|
|
|
|
+ account?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountRemovedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ member_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ member_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ account_eq?: Maybe<Scalars['String']>
|
|
|
|
+ account_contains?: Maybe<Scalars['String']>
|
|
|
|
+ account_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ account_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ account_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ member?: Maybe<MembershipWhereInput>
|
|
|
|
+ AND?: Maybe<Array<StakingAccountRemovedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<StakingAccountRemovedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StakingAccountRemovedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StandardDeleteResponse = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StatusTextChangedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ /** Original action metadata as hex string */
|
|
|
|
+ metadata?: Maybe<Scalars['String']>
|
|
|
|
+ /** Event result depeding on the metadata action type */
|
|
|
|
+ result: WorkingGroupMetadataActionResult
|
|
|
|
+ upcomingworkinggroupopeningcreatedInEvent?: Maybe<Array<UpcomingWorkingGroupOpening>>
|
|
|
|
+ workinggroupmetadatasetInEvent?: Maybe<Array<WorkingGroupMetadata>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StatusTextChangedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<StatusTextChangedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StatusTextChangedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ metadata?: Maybe<Scalars['String']>
|
|
|
|
+ result: Scalars['JSONObject']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StatusTextChangedEventEdge = {
|
|
|
|
+ node: StatusTextChangedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum StatusTextChangedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ MetadataAsc = 'metadata_ASC',
|
|
|
|
+ MetadataDesc = 'metadata_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StatusTextChangedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ metadata?: Maybe<Scalars['String']>
|
|
|
|
+ result?: Maybe<Scalars['JSONObject']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StatusTextChangedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ metadata_eq?: Maybe<Scalars['String']>
|
|
|
|
+ metadata_contains?: Maybe<Scalars['String']>
|
|
|
|
+ metadata_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ metadata_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ metadata_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ result_json?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ upcomingworkinggroupopeningcreatedInEvent_none?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ upcomingworkinggroupopeningcreatedInEvent_some?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ upcomingworkinggroupopeningcreatedInEvent_every?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ workinggroupmetadatasetInEvent_none?: Maybe<WorkingGroupMetadataWhereInput>
|
|
|
|
+ workinggroupmetadatasetInEvent_some?: Maybe<WorkingGroupMetadataWhereInput>
|
|
|
|
+ workinggroupmetadatasetInEvent_every?: Maybe<WorkingGroupMetadataWhereInput>
|
|
|
|
+ AND?: Maybe<Array<StatusTextChangedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<StatusTextChangedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type StatusTextChangedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type Subscription = {
|
|
|
|
+ stateSubscription: ProcessorState
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedLeaderEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** Slash amount (if any) */
|
|
|
|
+ penalty?: Maybe<Scalars['BigInt']>
|
|
|
|
+ /** Optional rationale */
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedLeaderEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<TerminatedLeaderEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedLeaderEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ penalty?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedLeaderEventEdge = {
|
|
|
|
+ node: TerminatedLeaderEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum TerminatedLeaderEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ PenaltyAsc = 'penalty_ASC',
|
|
|
|
+ PenaltyDesc = 'penalty_DESC',
|
|
|
|
+ RationaleAsc = 'rationale_ASC',
|
|
|
|
+ RationaleDesc = 'rationale_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedLeaderEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ penalty?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedLeaderEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ penalty_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ rationale_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<TerminatedLeaderEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<TerminatedLeaderEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedLeaderEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedWorkerEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** Slash amount (if any) */
|
|
|
|
+ penalty?: Maybe<Scalars['BigInt']>
|
|
|
|
+ /** Optional rationale */
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedWorkerEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<TerminatedWorkerEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedWorkerEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ penalty?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedWorkerEventEdge = {
|
|
|
|
+ node: TerminatedWorkerEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum TerminatedWorkerEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ PenaltyAsc = 'penalty_ASC',
|
|
|
|
+ PenaltyDesc = 'penalty_DESC',
|
|
|
|
+ RationaleAsc = 'rationale_ASC',
|
|
|
|
+ RationaleDesc = 'rationale_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedWorkerEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ penalty?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedWorkerEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ penalty_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ penalty_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ rationale_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<TerminatedWorkerEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<TerminatedWorkerEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type TerminatedWorkerEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningAdded = {
|
|
|
|
+ upcomingOpeningId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningAddedCreateInput = {
|
|
|
|
+ upcomingOpeningId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningAddedUpdateInput = {
|
|
|
|
+ upcomingOpeningId?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningAddedWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ upcomingOpeningId_eq?: Maybe<Scalars['String']>
|
|
|
|
+ upcomingOpeningId_contains?: Maybe<Scalars['String']>
|
|
|
|
+ upcomingOpeningId_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ upcomingOpeningId_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ upcomingOpeningId_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ AND?: Maybe<Array<UpcomingOpeningAddedWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<UpcomingOpeningAddedWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningAddedWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningRemoved = {
|
|
|
|
+ upcomingOpeningId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningRemovedCreateInput = {
|
|
|
|
+ upcomingOpeningId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningRemovedUpdateInput = {
|
|
|
|
+ upcomingOpeningId?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningRemovedWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ upcomingOpeningId_eq?: Maybe<Scalars['String']>
|
|
|
|
+ upcomingOpeningId_contains?: Maybe<Scalars['String']>
|
|
|
|
+ upcomingOpeningId_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ upcomingOpeningId_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ upcomingOpeningId_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ AND?: Maybe<Array<UpcomingOpeningRemovedWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<UpcomingOpeningRemovedWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingOpeningRemovedWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingWorkingGroupOpening = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ createdInEvent: StatusTextChangedEvent
|
|
|
|
+ createdInEventId: Scalars['String']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ /** Expected opening start time */
|
|
|
|
+ expectedStart?: Maybe<Scalars['DateTime']>
|
|
|
|
+ /** Expected min. application/role stake amount */
|
|
|
|
+ stakeAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ /** Expected reward per block */
|
|
|
|
+ rewardPerBlock?: Maybe<Scalars['BigInt']>
|
|
|
|
+ metadata: WorkingGroupOpeningMetadata
|
|
|
|
+ metadataId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingWorkingGroupOpeningConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<UpcomingWorkingGroupOpeningEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingWorkingGroupOpeningCreateInput = {
|
|
|
|
+ createdInEvent: Scalars['ID']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ expectedStart?: Maybe<Scalars['DateTime']>
|
|
|
|
+ stakeAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock?: Maybe<Scalars['BigInt']>
|
|
|
|
+ metadata: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingWorkingGroupOpeningEdge = {
|
|
|
|
+ node: UpcomingWorkingGroupOpening
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum UpcomingWorkingGroupOpeningOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ CreatedInEventAsc = 'createdInEvent_ASC',
|
|
|
|
+ CreatedInEventDesc = 'createdInEvent_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ ExpectedStartAsc = 'expectedStart_ASC',
|
|
|
|
+ ExpectedStartDesc = 'expectedStart_DESC',
|
|
|
|
+ StakeAmountAsc = 'stakeAmount_ASC',
|
|
|
|
+ StakeAmountDesc = 'stakeAmount_DESC',
|
|
|
|
+ RewardPerBlockAsc = 'rewardPerBlock_ASC',
|
|
|
|
+ RewardPerBlockDesc = 'rewardPerBlock_DESC',
|
|
|
|
+ MetadataAsc = 'metadata_ASC',
|
|
|
|
+ MetadataDesc = 'metadata_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingWorkingGroupOpeningUpdateInput = {
|
|
|
|
+ createdInEvent?: Maybe<Scalars['ID']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ expectedStart?: Maybe<Scalars['DateTime']>
|
|
|
|
+ stakeAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock?: Maybe<Scalars['BigInt']>
|
|
|
|
+ metadata?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingWorkingGroupOpeningWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdInEvent_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdInEvent_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ expectedStart_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ expectedStart_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ expectedStart_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ expectedStart_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ expectedStart_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ stakeAmount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ rewardPerBlock_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ metadata_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ metadata_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdInEvent?: Maybe<StatusTextChangedEventWhereInput>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ metadata?: Maybe<WorkingGroupOpeningMetadataWhereInput>
|
|
|
|
+ AND?: Maybe<Array<UpcomingWorkingGroupOpeningWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<UpcomingWorkingGroupOpeningWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type UpcomingWorkingGroupOpeningWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type Worker = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** WorkerId in specific working group module */
|
|
|
|
+ runtimeId: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ membership: Membership
|
|
|
|
+ membershipId: Scalars['String']
|
|
|
|
+ /** Worker's role account */
|
|
|
|
+ roleAccount: Scalars['String']
|
|
|
|
+ /** Worker's reward account */
|
|
|
|
+ rewardAccount: Scalars['String']
|
|
|
|
+ /** Worker's staking account */
|
|
|
|
+ stakeAccount: Scalars['String']
|
|
|
|
+ /** Current worker status */
|
|
|
|
+ status: WorkerStatus
|
|
|
|
+ /** Whether the worker is also the working group lead */
|
|
|
|
+ isLead: Scalars['Boolean']
|
|
|
|
+ /** Current role stake (in JOY) */
|
|
|
|
+ stake: Scalars['BigInt']
|
|
|
|
+ /** Current reward per block */
|
|
|
|
+ rewardPerBlock: Scalars['BigInt']
|
|
|
|
+ /** The reward amount the worker is currently missing (due to empty working group budget) */
|
|
|
|
+ missingRewardAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ payouts: Array<RewardPaidEvent>
|
|
|
|
+ slashes: Array<StakeSlashedEvent>
|
|
|
|
+ entry: OpeningFilledEvent
|
|
|
|
+ entryId: Scalars['String']
|
|
|
|
+ application: WorkingGroupApplication
|
|
|
|
+ applicationId: Scalars['String']
|
|
|
|
+ /** Worker's storage data */
|
|
|
|
+ storage?: Maybe<Scalars['String']>
|
|
|
|
+ leaderseteventworker?: Maybe<Array<LeaderSetEvent>>
|
|
|
|
+ leaderunseteventleader?: Maybe<Array<LeaderUnsetEvent>>
|
|
|
|
+ memberverificationstatusupdatedeventworker?: Maybe<Array<MemberVerificationStatusUpdatedEvent>>
|
|
|
|
+ newmissedrewardlevelreachedeventworker?: Maybe<Array<NewMissedRewardLevelReachedEvent>>
|
|
|
|
+ stakedecreasedeventworker?: Maybe<Array<StakeDecreasedEvent>>
|
|
|
|
+ stakeincreasedeventworker?: Maybe<Array<StakeIncreasedEvent>>
|
|
|
|
+ terminatedleadereventworker?: Maybe<Array<TerminatedLeaderEvent>>
|
|
|
|
+ terminatedworkereventworker?: Maybe<Array<TerminatedWorkerEvent>>
|
|
|
|
+ workerexitedeventworker?: Maybe<Array<WorkerExitedEvent>>
|
|
|
|
+ workerrewardaccountupdatedeventworker?: Maybe<Array<WorkerRewardAccountUpdatedEvent>>
|
|
|
|
+ workerrewardamountupdatedeventworker?: Maybe<Array<WorkerRewardAmountUpdatedEvent>>
|
|
|
|
+ workerroleaccountupdatedeventworker?: Maybe<Array<WorkerRoleAccountUpdatedEvent>>
|
|
|
|
+ workerstartedleavingeventworker?: Maybe<Array<WorkerStartedLeavingEvent>>
|
|
|
|
+ workinggroupleader?: Maybe<Array<WorkingGroup>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkerEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerCreateInput = {
|
|
|
|
+ runtimeId: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ membership: Scalars['ID']
|
|
|
|
+ roleAccount: Scalars['String']
|
|
|
|
+ rewardAccount: Scalars['String']
|
|
|
|
+ stakeAccount: Scalars['String']
|
|
|
|
+ status: Scalars['JSONObject']
|
|
|
|
+ isLead: Scalars['Boolean']
|
|
|
|
+ stake: Scalars['BigInt']
|
|
|
|
+ rewardPerBlock: Scalars['BigInt']
|
|
|
|
+ missingRewardAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ entry: Scalars['ID']
|
|
|
|
+ application: Scalars['ID']
|
|
|
|
+ storage?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerEdge = {
|
|
|
|
+ node: Worker
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerExitedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerExitedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkerExitedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerExitedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerExitedEventEdge = {
|
|
|
|
+ node: WorkerExitedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkerExitedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerExitedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerExitedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkerExitedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkerExitedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerExitedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkerOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ RuntimeIdAsc = 'runtimeId_ASC',
|
|
|
|
+ RuntimeIdDesc = 'runtimeId_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ MembershipAsc = 'membership_ASC',
|
|
|
|
+ MembershipDesc = 'membership_DESC',
|
|
|
|
+ RoleAccountAsc = 'roleAccount_ASC',
|
|
|
|
+ RoleAccountDesc = 'roleAccount_DESC',
|
|
|
|
+ RewardAccountAsc = 'rewardAccount_ASC',
|
|
|
|
+ RewardAccountDesc = 'rewardAccount_DESC',
|
|
|
|
+ StakeAccountAsc = 'stakeAccount_ASC',
|
|
|
|
+ StakeAccountDesc = 'stakeAccount_DESC',
|
|
|
|
+ IsLeadAsc = 'isLead_ASC',
|
|
|
|
+ IsLeadDesc = 'isLead_DESC',
|
|
|
|
+ StakeAsc = 'stake_ASC',
|
|
|
|
+ StakeDesc = 'stake_DESC',
|
|
|
|
+ RewardPerBlockAsc = 'rewardPerBlock_ASC',
|
|
|
|
+ RewardPerBlockDesc = 'rewardPerBlock_DESC',
|
|
|
|
+ MissingRewardAmountAsc = 'missingRewardAmount_ASC',
|
|
|
|
+ MissingRewardAmountDesc = 'missingRewardAmount_DESC',
|
|
|
|
+ EntryAsc = 'entry_ASC',
|
|
|
|
+ EntryDesc = 'entry_DESC',
|
|
|
|
+ ApplicationAsc = 'application_ASC',
|
|
|
|
+ ApplicationDesc = 'application_DESC',
|
|
|
|
+ StorageAsc = 'storage_ASC',
|
|
|
|
+ StorageDesc = 'storage_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAccountUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** New reward account */
|
|
|
|
+ newRewardAccount: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAccountUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkerRewardAccountUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAccountUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ newRewardAccount: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAccountUpdatedEventEdge = {
|
|
|
|
+ node: WorkerRewardAccountUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkerRewardAccountUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ NewRewardAccountAsc = 'newRewardAccount_ASC',
|
|
|
|
+ NewRewardAccountDesc = 'newRewardAccount_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAccountUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ newRewardAccount?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAccountUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ newRewardAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ newRewardAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ newRewardAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newRewardAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newRewardAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkerRewardAccountUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkerRewardAccountUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAccountUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAmountUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** New worker reward per block */
|
|
|
|
+ newRewardPerBlock: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAmountUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkerRewardAmountUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAmountUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ newRewardPerBlock: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAmountUpdatedEventEdge = {
|
|
|
|
+ node: WorkerRewardAmountUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkerRewardAmountUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ NewRewardPerBlockAsc = 'newRewardPerBlock_ASC',
|
|
|
|
+ NewRewardPerBlockDesc = 'newRewardPerBlock_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAmountUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ newRewardPerBlock?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAmountUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ newRewardPerBlock_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newRewardPerBlock_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newRewardPerBlock_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newRewardPerBlock_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newRewardPerBlock_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ newRewardPerBlock_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkerRewardAmountUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkerRewardAmountUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRewardAmountUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRoleAccountUpdatedEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** New role account */
|
|
|
|
+ newRoleAccount: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRoleAccountUpdatedEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkerRoleAccountUpdatedEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRoleAccountUpdatedEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ newRoleAccount: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRoleAccountUpdatedEventEdge = {
|
|
|
|
+ node: WorkerRoleAccountUpdatedEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkerRoleAccountUpdatedEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ NewRoleAccountAsc = 'newRoleAccount_ASC',
|
|
|
|
+ NewRoleAccountDesc = 'newRoleAccount_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRoleAccountUpdatedEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ newRoleAccount?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRoleAccountUpdatedEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ newRoleAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ newRoleAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ newRoleAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newRoleAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ newRoleAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkerRoleAccountUpdatedEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkerRoleAccountUpdatedEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerRoleAccountUpdatedEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStartedLeavingEvent = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Hash of the extrinsic which caused the event to be emitted */
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ /** Blocknumber of the block in which the event was emitted. */
|
|
|
|
+ inBlock: Scalars['Int']
|
|
|
|
+ /** Network the block was produced in */
|
|
|
|
+ network: Network
|
|
|
|
+ /** Index of event in block from which it was emitted. */
|
|
|
|
+ indexInBlock: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ worker: Worker
|
|
|
|
+ workerId: Scalars['String']
|
|
|
|
+ /** Optional rationale */
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStartedLeavingEventConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkerStartedLeavingEventEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStartedLeavingEventCreateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock: Scalars['Float']
|
|
|
|
+ network: Network
|
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ worker: Scalars['ID']
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStartedLeavingEventEdge = {
|
|
|
|
+ node: WorkerStartedLeavingEvent
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkerStartedLeavingEventOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ InExtrinsicAsc = 'inExtrinsic_ASC',
|
|
|
|
+ InExtrinsicDesc = 'inExtrinsic_DESC',
|
|
|
|
+ InBlockAsc = 'inBlock_ASC',
|
|
|
|
+ InBlockDesc = 'inBlock_DESC',
|
|
|
|
+ NetworkAsc = 'network_ASC',
|
|
|
|
+ NetworkDesc = 'network_DESC',
|
|
|
|
+ IndexInBlockAsc = 'indexInBlock_ASC',
|
|
|
|
+ IndexInBlockDesc = 'indexInBlock_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ WorkerAsc = 'worker_ASC',
|
|
|
|
+ WorkerDesc = 'worker_DESC',
|
|
|
|
+ RationaleAsc = 'rationale_ASC',
|
|
|
|
+ RationaleDesc = 'rationale_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStartedLeavingEventUpdateInput = {
|
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ network?: Maybe<Network>
|
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ worker?: Maybe<Scalars['ID']>
|
|
|
|
+ rationale?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStartedLeavingEventWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ inExtrinsic_eq?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_contains?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ inExtrinsic_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ inBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ inBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ network_eq?: Maybe<Network>
|
|
|
|
+ network_in?: Maybe<Array<Network>>
|
|
|
|
+ indexInBlock_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ indexInBlock_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ worker_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ worker_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ rationale_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rationale_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ worker?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkerStartedLeavingEventWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkerStartedLeavingEventWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStartedLeavingEventWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStatus = WorkerStatusActive | WorkerStatusLeft | WorkerStatusTerminated
|
|
|
|
+
|
|
|
|
+export type WorkerStatusActive = {
|
|
|
|
+ phantom?: Maybe<Scalars['Int']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStatusActiveCreateInput = {
|
|
|
|
+ phantom?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStatusActiveUpdateInput = {
|
|
|
|
+ phantom?: Maybe<Scalars['Float']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStatusActiveWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ phantom_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ phantom_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ AND?: Maybe<Array<WorkerStatusActiveWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkerStatusActiveWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStatusActiveWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStatusLeft = {
|
|
|
|
+ /** Related event emitted on leaving initialization */
|
|
|
|
+ workerStartedLeavingEvent?: Maybe<WorkerStartedLeavingEvent>
|
|
|
|
+ /** Related event emitted (and set) when the unstaking period is finished */
|
|
|
|
+ workerExitedEvent?: Maybe<WorkerExitedEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerStatusTerminated = {
|
|
|
|
+ /** Related event emitted on worker termination */
|
|
|
|
+ terminatedWorkerEvent?: Maybe<TerminatedWorkerEvent>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerUpdateInput = {
|
|
|
|
+ runtimeId?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ membership?: Maybe<Scalars['ID']>
|
|
|
|
+ roleAccount?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount?: Maybe<Scalars['String']>
|
|
|
|
+ stakeAccount?: Maybe<Scalars['String']>
|
|
|
|
+ status?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ isLead?: Maybe<Scalars['Boolean']>
|
|
|
|
+ stake?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock?: Maybe<Scalars['BigInt']>
|
|
|
|
+ missingRewardAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ entry?: Maybe<Scalars['ID']>
|
|
|
|
+ application?: Maybe<Scalars['ID']>
|
|
|
|
+ storage?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ runtimeId_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ membership_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ membership_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ roleAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ roleAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ roleAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ roleAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ roleAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ rewardAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ stakeAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ stakeAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ stakeAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ stakeAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ stakeAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ status_json?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ isLead_eq?: Maybe<Scalars['Boolean']>
|
|
|
|
+ isLead_in?: Maybe<Array<Scalars['Boolean']>>
|
|
|
|
+ stake_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ rewardPerBlock_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ missingRewardAmount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ missingRewardAmount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ missingRewardAmount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ missingRewardAmount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ missingRewardAmount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ missingRewardAmount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ entry_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ entry_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ application_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ application_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ storage_eq?: Maybe<Scalars['String']>
|
|
|
|
+ storage_contains?: Maybe<Scalars['String']>
|
|
|
|
+ storage_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ storage_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ storage_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ membership?: Maybe<MembershipWhereInput>
|
|
|
|
+ payouts_none?: Maybe<RewardPaidEventWhereInput>
|
|
|
|
+ payouts_some?: Maybe<RewardPaidEventWhereInput>
|
|
|
|
+ payouts_every?: Maybe<RewardPaidEventWhereInput>
|
|
|
|
+ slashes_none?: Maybe<StakeSlashedEventWhereInput>
|
|
|
|
+ slashes_some?: Maybe<StakeSlashedEventWhereInput>
|
|
|
|
+ slashes_every?: Maybe<StakeSlashedEventWhereInput>
|
|
|
|
+ entry?: Maybe<OpeningFilledEventWhereInput>
|
|
|
|
+ application?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ leaderseteventworker_none?: Maybe<LeaderSetEventWhereInput>
|
|
|
|
+ leaderseteventworker_some?: Maybe<LeaderSetEventWhereInput>
|
|
|
|
+ leaderseteventworker_every?: Maybe<LeaderSetEventWhereInput>
|
|
|
|
+ leaderunseteventleader_none?: Maybe<LeaderUnsetEventWhereInput>
|
|
|
|
+ leaderunseteventleader_some?: Maybe<LeaderUnsetEventWhereInput>
|
|
|
|
+ leaderunseteventleader_every?: Maybe<LeaderUnsetEventWhereInput>
|
|
|
|
+ memberverificationstatusupdatedeventworker_none?: Maybe<MemberVerificationStatusUpdatedEventWhereInput>
|
|
|
|
+ memberverificationstatusupdatedeventworker_some?: Maybe<MemberVerificationStatusUpdatedEventWhereInput>
|
|
|
|
+ memberverificationstatusupdatedeventworker_every?: Maybe<MemberVerificationStatusUpdatedEventWhereInput>
|
|
|
|
+ newmissedrewardlevelreachedeventworker_none?: Maybe<NewMissedRewardLevelReachedEventWhereInput>
|
|
|
|
+ newmissedrewardlevelreachedeventworker_some?: Maybe<NewMissedRewardLevelReachedEventWhereInput>
|
|
|
|
+ newmissedrewardlevelreachedeventworker_every?: Maybe<NewMissedRewardLevelReachedEventWhereInput>
|
|
|
|
+ stakedecreasedeventworker_none?: Maybe<StakeDecreasedEventWhereInput>
|
|
|
|
+ stakedecreasedeventworker_some?: Maybe<StakeDecreasedEventWhereInput>
|
|
|
|
+ stakedecreasedeventworker_every?: Maybe<StakeDecreasedEventWhereInput>
|
|
|
|
+ stakeincreasedeventworker_none?: Maybe<StakeIncreasedEventWhereInput>
|
|
|
|
+ stakeincreasedeventworker_some?: Maybe<StakeIncreasedEventWhereInput>
|
|
|
|
+ stakeincreasedeventworker_every?: Maybe<StakeIncreasedEventWhereInput>
|
|
|
|
+ terminatedleadereventworker_none?: Maybe<TerminatedLeaderEventWhereInput>
|
|
|
|
+ terminatedleadereventworker_some?: Maybe<TerminatedLeaderEventWhereInput>
|
|
|
|
+ terminatedleadereventworker_every?: Maybe<TerminatedLeaderEventWhereInput>
|
|
|
|
+ terminatedworkereventworker_none?: Maybe<TerminatedWorkerEventWhereInput>
|
|
|
|
+ terminatedworkereventworker_some?: Maybe<TerminatedWorkerEventWhereInput>
|
|
|
|
+ terminatedworkereventworker_every?: Maybe<TerminatedWorkerEventWhereInput>
|
|
|
|
+ workerexitedeventworker_none?: Maybe<WorkerExitedEventWhereInput>
|
|
|
|
+ workerexitedeventworker_some?: Maybe<WorkerExitedEventWhereInput>
|
|
|
|
+ workerexitedeventworker_every?: Maybe<WorkerExitedEventWhereInput>
|
|
|
|
+ workerrewardaccountupdatedeventworker_none?: Maybe<WorkerRewardAccountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardaccountupdatedeventworker_some?: Maybe<WorkerRewardAccountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardaccountupdatedeventworker_every?: Maybe<WorkerRewardAccountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardamountupdatedeventworker_none?: Maybe<WorkerRewardAmountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardamountupdatedeventworker_some?: Maybe<WorkerRewardAmountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardamountupdatedeventworker_every?: Maybe<WorkerRewardAmountUpdatedEventWhereInput>
|
|
|
|
+ workerroleaccountupdatedeventworker_none?: Maybe<WorkerRoleAccountUpdatedEventWhereInput>
|
|
|
|
+ workerroleaccountupdatedeventworker_some?: Maybe<WorkerRoleAccountUpdatedEventWhereInput>
|
|
|
|
+ workerroleaccountupdatedeventworker_every?: Maybe<WorkerRoleAccountUpdatedEventWhereInput>
|
|
|
|
+ workerstartedleavingeventworker_none?: Maybe<WorkerStartedLeavingEventWhereInput>
|
|
|
|
+ workerstartedleavingeventworker_some?: Maybe<WorkerStartedLeavingEventWhereInput>
|
|
|
|
+ workerstartedleavingeventworker_every?: Maybe<WorkerStartedLeavingEventWhereInput>
|
|
|
|
+ workinggroupleader_none?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ workinggroupleader_some?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ workinggroupleader_every?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkerWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkerWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkerWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroup = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Working group name */
|
|
|
|
+ name: Scalars['String']
|
|
|
|
+ metadata?: Maybe<WorkingGroupMetadata>
|
|
|
|
+ metadataId?: Maybe<Scalars['String']>
|
|
|
|
+ leader?: Maybe<Worker>
|
|
|
|
+ leaderId?: Maybe<Scalars['String']>
|
|
|
|
+ workers: Array<Worker>
|
|
|
|
+ openings: Array<WorkingGroupOpening>
|
|
|
|
+ /** Current working group budget (JOY) */
|
|
|
|
+ budget: Scalars['BigInt']
|
|
|
|
+ applicationwithdrawneventgroup?: Maybe<Array<ApplicationWithdrawnEvent>>
|
|
|
|
+ appliedonopeningeventgroup?: Maybe<Array<AppliedOnOpeningEvent>>
|
|
|
|
+ budgetseteventgroup?: Maybe<Array<BudgetSetEvent>>
|
|
|
|
+ budgetspendingeventgroup?: Maybe<Array<BudgetSpendingEvent>>
|
|
|
|
+ leaderseteventgroup?: Maybe<Array<LeaderSetEvent>>
|
|
|
|
+ leaderunseteventgroup?: Maybe<Array<LeaderUnsetEvent>>
|
|
|
|
+ newmissedrewardlevelreachedeventgroup?: Maybe<Array<NewMissedRewardLevelReachedEvent>>
|
|
|
|
+ openingaddedeventgroup?: Maybe<Array<OpeningAddedEvent>>
|
|
|
|
+ openingcanceledeventgroup?: Maybe<Array<OpeningCanceledEvent>>
|
|
|
|
+ openingfilledeventgroup?: Maybe<Array<OpeningFilledEvent>>
|
|
|
|
+ rewardpaideventgroup?: Maybe<Array<RewardPaidEvent>>
|
|
|
|
+ stakedecreasedeventgroup?: Maybe<Array<StakeDecreasedEvent>>
|
|
|
|
+ stakeincreasedeventgroup?: Maybe<Array<StakeIncreasedEvent>>
|
|
|
|
+ stakeslashedeventgroup?: Maybe<Array<StakeSlashedEvent>>
|
|
|
|
+ statustextchangedeventgroup?: Maybe<Array<StatusTextChangedEvent>>
|
|
|
|
+ terminatedleadereventgroup?: Maybe<Array<TerminatedLeaderEvent>>
|
|
|
|
+ terminatedworkereventgroup?: Maybe<Array<TerminatedWorkerEvent>>
|
|
|
|
+ upcomingworkinggroupopeninggroup?: Maybe<Array<UpcomingWorkingGroupOpening>>
|
|
|
|
+ workerexitedeventgroup?: Maybe<Array<WorkerExitedEvent>>
|
|
|
|
+ workerrewardaccountupdatedeventgroup?: Maybe<Array<WorkerRewardAccountUpdatedEvent>>
|
|
|
|
+ workerrewardamountupdatedeventgroup?: Maybe<Array<WorkerRewardAmountUpdatedEvent>>
|
|
|
|
+ workerroleaccountupdatedeventgroup?: Maybe<Array<WorkerRoleAccountUpdatedEvent>>
|
|
|
|
+ workerstartedleavingeventgroup?: Maybe<Array<WorkerStartedLeavingEvent>>
|
|
|
|
+ workinggroupmetadatagroup?: Maybe<Array<WorkingGroupMetadata>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupApplication = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** ApplicationId in specific working group module */
|
|
|
|
+ runtimeId: Scalars['Int']
|
|
|
|
+ opening: WorkingGroupOpening
|
|
|
|
+ openingId: Scalars['String']
|
|
|
|
+ applicant: Membership
|
|
|
|
+ applicantId: Scalars['String']
|
|
|
|
+ /** Application stake */
|
|
|
|
+ stake: Scalars['BigInt']
|
|
|
|
+ /** Applicant's initial role account */
|
|
|
|
+ roleAccount: Scalars['String']
|
|
|
|
+ /** Applicant's initial reward account */
|
|
|
|
+ rewardAccount: Scalars['String']
|
|
|
|
+ /** Applicant's initial staking account */
|
|
|
|
+ stakingAccount: Scalars['String']
|
|
|
|
+ answers: Array<ApplicationFormQuestionAnswer>
|
|
|
|
+ /** Current application status */
|
|
|
|
+ status: WorkingGroupApplicationStatus
|
|
|
|
+ createdInEvent: AppliedOnOpeningEvent
|
|
|
|
+ applicationwithdrawneventapplication?: Maybe<Array<ApplicationWithdrawnEvent>>
|
|
|
|
+ workerapplication?: Maybe<Array<Worker>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupApplicationConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkingGroupApplicationEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupApplicationCreateInput = {
|
|
|
|
+ runtimeId: Scalars['Float']
|
|
|
|
+ opening: Scalars['ID']
|
|
|
|
+ applicant: Scalars['ID']
|
|
|
|
+ stake: Scalars['BigInt']
|
|
|
|
+ roleAccount: Scalars['String']
|
|
|
|
+ rewardAccount: Scalars['String']
|
|
|
|
+ stakingAccount: Scalars['String']
|
|
|
|
+ status: Scalars['JSONObject']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupApplicationEdge = {
|
|
|
|
+ node: WorkingGroupApplication
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkingGroupApplicationOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ RuntimeIdAsc = 'runtimeId_ASC',
|
|
|
|
+ RuntimeIdDesc = 'runtimeId_DESC',
|
|
|
|
+ OpeningAsc = 'opening_ASC',
|
|
|
|
+ OpeningDesc = 'opening_DESC',
|
|
|
|
+ ApplicantAsc = 'applicant_ASC',
|
|
|
|
+ ApplicantDesc = 'applicant_DESC',
|
|
|
|
+ StakeAsc = 'stake_ASC',
|
|
|
|
+ StakeDesc = 'stake_DESC',
|
|
|
|
+ RoleAccountAsc = 'roleAccount_ASC',
|
|
|
|
+ RoleAccountDesc = 'roleAccount_DESC',
|
|
|
|
+ RewardAccountAsc = 'rewardAccount_ASC',
|
|
|
|
+ RewardAccountDesc = 'rewardAccount_DESC',
|
|
|
|
+ StakingAccountAsc = 'stakingAccount_ASC',
|
|
|
|
+ StakingAccountDesc = 'stakingAccount_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupApplicationStatus =
|
|
|
|
+ | ApplicationStatusPending
|
|
|
|
+ | ApplicationStatusAccepted
|
|
|
|
+ | ApplicationStatusRejected
|
|
|
|
+ | ApplicationStatusWithdrawn
|
|
|
|
+ | ApplicationStatusCancelled
|
|
|
|
+
|
|
|
|
+export type WorkingGroupApplicationUpdateInput = {
|
|
|
|
+ runtimeId?: Maybe<Scalars['Float']>
|
|
|
|
+ opening?: Maybe<Scalars['ID']>
|
|
|
|
+ applicant?: Maybe<Scalars['ID']>
|
|
|
|
+ stake?: Maybe<Scalars['BigInt']>
|
|
|
|
+ roleAccount?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount?: Maybe<Scalars['String']>
|
|
|
|
+ stakingAccount?: Maybe<Scalars['String']>
|
|
|
|
+ status?: Maybe<Scalars['JSONObject']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupApplicationWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ runtimeId_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ opening_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ opening_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ applicant_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ applicant_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ stake_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stake_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ roleAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ roleAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ roleAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ roleAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ roleAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ rewardAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ rewardAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ stakingAccount_eq?: Maybe<Scalars['String']>
|
|
|
|
+ stakingAccount_contains?: Maybe<Scalars['String']>
|
|
|
|
+ stakingAccount_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ stakingAccount_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ stakingAccount_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ status_json?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ opening?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ applicant?: Maybe<MembershipWhereInput>
|
|
|
|
+ answers_none?: Maybe<ApplicationFormQuestionAnswerWhereInput>
|
|
|
|
+ answers_some?: Maybe<ApplicationFormQuestionAnswerWhereInput>
|
|
|
|
+ answers_every?: Maybe<ApplicationFormQuestionAnswerWhereInput>
|
|
|
|
+ createdInEvent?: Maybe<AppliedOnOpeningEventWhereInput>
|
|
|
|
+ applicationwithdrawneventapplication_none?: Maybe<ApplicationWithdrawnEventWhereInput>
|
|
|
|
+ applicationwithdrawneventapplication_some?: Maybe<ApplicationWithdrawnEventWhereInput>
|
|
|
|
+ applicationwithdrawneventapplication_every?: Maybe<ApplicationWithdrawnEventWhereInput>
|
|
|
|
+ workerapplication_none?: Maybe<WorkerWhereInput>
|
|
|
|
+ workerapplication_some?: Maybe<WorkerWhereInput>
|
|
|
|
+ workerapplication_every?: Maybe<WorkerWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkingGroupApplicationWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkingGroupApplicationWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupApplicationWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkingGroupEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupCreateInput = {
|
|
|
|
+ name: Scalars['String']
|
|
|
|
+ metadata?: Maybe<Scalars['ID']>
|
|
|
|
+ leader?: Maybe<Scalars['ID']>
|
|
|
|
+ budget: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupEdge = {
|
|
|
|
+ node: WorkingGroup
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupMetadata = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Working group status */
|
|
|
|
+ status?: Maybe<Scalars['String']>
|
|
|
|
+ /** Working group status message */
|
|
|
|
+ statusMessage?: Maybe<Scalars['String']>
|
|
|
|
+ /** Working group about text */
|
|
|
|
+ about?: Maybe<Scalars['String']>
|
|
|
|
+ /** Working group description text */
|
|
|
|
+ description?: Maybe<Scalars['String']>
|
|
|
|
+ setInEvent: StatusTextChangedEvent
|
|
|
|
+ setInEventId: Scalars['String']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ workinggroupmetadata?: Maybe<Array<WorkingGroup>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupMetadataActionResult =
|
|
|
|
+ | UpcomingOpeningAdded
|
|
|
|
+ | UpcomingOpeningRemoved
|
|
|
|
+ | WorkingGroupMetadataSet
|
|
|
|
+ | InvalidActionMetadata
|
|
|
|
+
|
|
|
|
+export type WorkingGroupMetadataConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkingGroupMetadataEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupMetadataCreateInput = {
|
|
|
|
+ status?: Maybe<Scalars['String']>
|
|
|
|
+ statusMessage?: Maybe<Scalars['String']>
|
|
|
|
+ about?: Maybe<Scalars['String']>
|
|
|
|
+ description?: Maybe<Scalars['String']>
|
|
|
|
+ setInEvent: Scalars['ID']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupMetadataEdge = {
|
|
|
|
+ node: WorkingGroupMetadata
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkingGroupMetadataOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ StatusAsc = 'status_ASC',
|
|
|
|
+ StatusDesc = 'status_DESC',
|
|
|
|
+ StatusMessageAsc = 'statusMessage_ASC',
|
|
|
|
+ StatusMessageDesc = 'statusMessage_DESC',
|
|
|
|
+ AboutAsc = 'about_ASC',
|
|
|
|
+ AboutDesc = 'about_DESC',
|
|
|
|
+ DescriptionAsc = 'description_ASC',
|
|
|
|
+ DescriptionDesc = 'description_DESC',
|
|
|
|
+ SetInEventAsc = 'setInEvent_ASC',
|
|
|
|
+ SetInEventDesc = 'setInEvent_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupMetadataSet = {
|
|
|
|
+ /** The new metadata snapshot resulting from the update */
|
|
|
|
+ metadata?: Maybe<WorkingGroupMetadata>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupMetadataUpdateInput = {
|
|
|
|
+ status?: Maybe<Scalars['String']>
|
|
|
|
+ statusMessage?: Maybe<Scalars['String']>
|
|
|
|
+ about?: Maybe<Scalars['String']>
|
|
|
|
+ description?: Maybe<Scalars['String']>
|
|
|
|
+ setInEvent?: Maybe<Scalars['ID']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupMetadataWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ status_eq?: Maybe<Scalars['String']>
|
|
|
|
+ status_contains?: Maybe<Scalars['String']>
|
|
|
|
+ status_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ status_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ status_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ statusMessage_eq?: Maybe<Scalars['String']>
|
|
|
|
+ statusMessage_contains?: Maybe<Scalars['String']>
|
|
|
|
+ statusMessage_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ statusMessage_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ statusMessage_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ about_eq?: Maybe<Scalars['String']>
|
|
|
|
+ about_contains?: Maybe<Scalars['String']>
|
|
|
|
+ about_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ about_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ about_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ description_eq?: Maybe<Scalars['String']>
|
|
|
|
+ description_contains?: Maybe<Scalars['String']>
|
|
|
|
+ description_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ description_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ description_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ setInEvent_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ setInEvent_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ setInEvent?: Maybe<StatusTextChangedEventWhereInput>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ workinggroupmetadata_none?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ workinggroupmetadata_some?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ workinggroupmetadata_every?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkingGroupMetadataWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkingGroupMetadataWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupMetadataWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpening = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ /** Time of opening creation */
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** OpeningId in specific working group module */
|
|
|
|
+ runtimeId: Scalars['Int']
|
|
|
|
+ group: WorkingGroup
|
|
|
|
+ groupId: Scalars['String']
|
|
|
|
+ applications: Array<WorkingGroupApplication>
|
|
|
|
+ /** Type of the opening (Leader/Regular) */
|
|
|
|
+ type: WorkingGroupOpeningType
|
|
|
|
+ /** Current opening status */
|
|
|
|
+ status: WorkingGroupOpeningStatus
|
|
|
|
+ metadata: WorkingGroupOpeningMetadata
|
|
|
|
+ metadataId: Scalars['String']
|
|
|
|
+ /** Min. application/role stake amount */
|
|
|
|
+ stakeAmount: Scalars['BigInt']
|
|
|
|
+ /** Role stake unstaking period in blocks */
|
|
|
|
+ unstakingPeriod: Scalars['Int']
|
|
|
|
+ /** Initial workers' reward per block */
|
|
|
|
+ rewardPerBlock: Scalars['BigInt']
|
|
|
|
+ createdInEvent: OpeningAddedEvent
|
|
|
|
+ appliedonopeningeventopening?: Maybe<Array<AppliedOnOpeningEvent>>
|
|
|
|
+ openingcanceledeventopening?: Maybe<Array<OpeningCanceledEvent>>
|
|
|
|
+ openingfilledeventopening?: Maybe<Array<OpeningFilledEvent>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkingGroupOpeningEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningCreateInput = {
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ runtimeId: Scalars['Float']
|
|
|
|
+ group: Scalars['ID']
|
|
|
|
+ type: WorkingGroupOpeningType
|
|
|
|
+ status: Scalars['JSONObject']
|
|
|
|
+ metadata: Scalars['ID']
|
|
|
|
+ stakeAmount: Scalars['BigInt']
|
|
|
|
+ unstakingPeriod: Scalars['Float']
|
|
|
|
+ rewardPerBlock: Scalars['BigInt']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningEdge = {
|
|
|
|
+ node: WorkingGroupOpening
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningMetadata = BaseGraphQlObject & {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+ createdAt: Scalars['DateTime']
|
|
|
|
+ createdById: Scalars['String']
|
|
|
|
+ updatedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById?: Maybe<Scalars['String']>
|
|
|
|
+ deletedAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById?: Maybe<Scalars['String']>
|
|
|
|
+ version: Scalars['Int']
|
|
|
|
+ /** Whether the originally provided metadata was valid */
|
|
|
|
+ originallyValid: Scalars['Boolean']
|
|
|
|
+ /** Opening short description */
|
|
|
|
+ shortDescription?: Maybe<Scalars['String']>
|
|
|
|
+ /** Opening description (md-formatted) */
|
|
|
|
+ description?: Maybe<Scalars['String']>
|
|
|
|
+ /** Expected max. number of applicants that will be hired */
|
|
|
|
+ hiringLimit?: Maybe<Scalars['Int']>
|
|
|
|
+ /** Expected time when the opening will close */
|
|
|
|
+ expectedEnding?: Maybe<Scalars['DateTime']>
|
|
|
|
+ /** Md-formatted text explaining the application process */
|
|
|
|
+ applicationDetails?: Maybe<Scalars['String']>
|
|
|
|
+ applicationFormQuestions: Array<ApplicationFormQuestion>
|
|
|
|
+ upcomingworkinggroupopeningmetadata?: Maybe<Array<UpcomingWorkingGroupOpening>>
|
|
|
|
+ workinggroupopeningmetadata?: Maybe<Array<WorkingGroupOpening>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningMetadataConnection = {
|
|
|
|
+ totalCount: Scalars['Int']
|
|
|
|
+ edges: Array<WorkingGroupOpeningMetadataEdge>
|
|
|
|
+ pageInfo: PageInfo
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningMetadataCreateInput = {
|
|
|
|
+ originallyValid: Scalars['Boolean']
|
|
|
|
+ shortDescription?: Maybe<Scalars['String']>
|
|
|
|
+ description?: Maybe<Scalars['String']>
|
|
|
|
+ hiringLimit?: Maybe<Scalars['Float']>
|
|
|
|
+ expectedEnding?: Maybe<Scalars['DateTime']>
|
|
|
|
+ applicationDetails?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningMetadataEdge = {
|
|
|
|
+ node: WorkingGroupOpeningMetadata
|
|
|
|
+ cursor: Scalars['String']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkingGroupOpeningMetadataOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ OriginallyValidAsc = 'originallyValid_ASC',
|
|
|
|
+ OriginallyValidDesc = 'originallyValid_DESC',
|
|
|
|
+ ShortDescriptionAsc = 'shortDescription_ASC',
|
|
|
|
+ ShortDescriptionDesc = 'shortDescription_DESC',
|
|
|
|
+ DescriptionAsc = 'description_ASC',
|
|
|
|
+ DescriptionDesc = 'description_DESC',
|
|
|
|
+ HiringLimitAsc = 'hiringLimit_ASC',
|
|
|
|
+ HiringLimitDesc = 'hiringLimit_DESC',
|
|
|
|
+ ExpectedEndingAsc = 'expectedEnding_ASC',
|
|
|
|
+ ExpectedEndingDesc = 'expectedEnding_DESC',
|
|
|
|
+ ApplicationDetailsAsc = 'applicationDetails_ASC',
|
|
|
|
+ ApplicationDetailsDesc = 'applicationDetails_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningMetadataUpdateInput = {
|
|
|
|
+ originallyValid?: Maybe<Scalars['Boolean']>
|
|
|
|
+ shortDescription?: Maybe<Scalars['String']>
|
|
|
|
+ description?: Maybe<Scalars['String']>
|
|
|
|
+ hiringLimit?: Maybe<Scalars['Float']>
|
|
|
|
+ expectedEnding?: Maybe<Scalars['DateTime']>
|
|
|
|
+ applicationDetails?: Maybe<Scalars['String']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningMetadataWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ originallyValid_eq?: Maybe<Scalars['Boolean']>
|
|
|
|
+ originallyValid_in?: Maybe<Array<Scalars['Boolean']>>
|
|
|
|
+ shortDescription_eq?: Maybe<Scalars['String']>
|
|
|
|
+ shortDescription_contains?: Maybe<Scalars['String']>
|
|
|
|
+ shortDescription_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ shortDescription_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ shortDescription_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ description_eq?: Maybe<Scalars['String']>
|
|
|
|
+ description_contains?: Maybe<Scalars['String']>
|
|
|
|
+ description_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ description_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ description_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ hiringLimit_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ hiringLimit_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ hiringLimit_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ hiringLimit_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ hiringLimit_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ hiringLimit_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ expectedEnding_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ expectedEnding_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ expectedEnding_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ expectedEnding_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ expectedEnding_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ applicationDetails_eq?: Maybe<Scalars['String']>
|
|
|
|
+ applicationDetails_contains?: Maybe<Scalars['String']>
|
|
|
|
+ applicationDetails_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ applicationDetails_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ applicationDetails_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ applicationFormQuestions_none?: Maybe<ApplicationFormQuestionWhereInput>
|
|
|
|
+ applicationFormQuestions_some?: Maybe<ApplicationFormQuestionWhereInput>
|
|
|
|
+ applicationFormQuestions_every?: Maybe<ApplicationFormQuestionWhereInput>
|
|
|
|
+ upcomingworkinggroupopeningmetadata_none?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ upcomingworkinggroupopeningmetadata_some?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ upcomingworkinggroupopeningmetadata_every?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ workinggroupopeningmetadata_none?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ workinggroupopeningmetadata_some?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ workinggroupopeningmetadata_every?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkingGroupOpeningMetadataWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkingGroupOpeningMetadataWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningMetadataWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkingGroupOpeningOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ RuntimeIdAsc = 'runtimeId_ASC',
|
|
|
|
+ RuntimeIdDesc = 'runtimeId_DESC',
|
|
|
|
+ GroupAsc = 'group_ASC',
|
|
|
|
+ GroupDesc = 'group_DESC',
|
|
|
|
+ TypeAsc = 'type_ASC',
|
|
|
|
+ TypeDesc = 'type_DESC',
|
|
|
|
+ MetadataAsc = 'metadata_ASC',
|
|
|
|
+ MetadataDesc = 'metadata_DESC',
|
|
|
|
+ StakeAmountAsc = 'stakeAmount_ASC',
|
|
|
|
+ StakeAmountDesc = 'stakeAmount_DESC',
|
|
|
|
+ UnstakingPeriodAsc = 'unstakingPeriod_ASC',
|
|
|
|
+ UnstakingPeriodDesc = 'unstakingPeriod_DESC',
|
|
|
|
+ RewardPerBlockAsc = 'rewardPerBlock_ASC',
|
|
|
|
+ RewardPerBlockDesc = 'rewardPerBlock_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningStatus = OpeningStatusOpen | OpeningStatusFilled | OpeningStatusCancelled
|
|
|
|
+
|
|
|
|
+export enum WorkingGroupOpeningType {
|
|
|
|
+ Regular = 'REGULAR',
|
|
|
|
+ Leader = 'LEADER',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningUpdateInput = {
|
|
|
|
+ createdAt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ runtimeId?: Maybe<Scalars['Float']>
|
|
|
|
+ group?: Maybe<Scalars['ID']>
|
|
|
|
+ type?: Maybe<WorkingGroupOpeningType>
|
|
|
|
+ status?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ metadata?: Maybe<Scalars['ID']>
|
|
|
|
+ stakeAmount?: Maybe<Scalars['BigInt']>
|
|
|
|
+ unstakingPeriod?: Maybe<Scalars['Float']>
|
|
|
|
+ rewardPerBlock?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ runtimeId_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ runtimeId_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ group_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ group_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ type_eq?: Maybe<WorkingGroupOpeningType>
|
|
|
|
+ type_in?: Maybe<Array<WorkingGroupOpeningType>>
|
|
|
|
+ status_json?: Maybe<Scalars['JSONObject']>
|
|
|
|
+ metadata_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ metadata_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ stakeAmount_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ stakeAmount_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ unstakingPeriod_eq?: Maybe<Scalars['Int']>
|
|
|
|
+ unstakingPeriod_gt?: Maybe<Scalars['Int']>
|
|
|
|
+ unstakingPeriod_gte?: Maybe<Scalars['Int']>
|
|
|
|
+ unstakingPeriod_lt?: Maybe<Scalars['Int']>
|
|
|
|
+ unstakingPeriod_lte?: Maybe<Scalars['Int']>
|
|
|
|
+ unstakingPeriod_in?: Maybe<Array<Scalars['Int']>>
|
|
|
|
+ rewardPerBlock_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ rewardPerBlock_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ group?: Maybe<WorkingGroupWhereInput>
|
|
|
|
+ applications_none?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ applications_some?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ applications_every?: Maybe<WorkingGroupApplicationWhereInput>
|
|
|
|
+ metadata?: Maybe<WorkingGroupOpeningMetadataWhereInput>
|
|
|
|
+ createdInEvent?: Maybe<OpeningAddedEventWhereInput>
|
|
|
|
+ appliedonopeningeventopening_none?: Maybe<AppliedOnOpeningEventWhereInput>
|
|
|
|
+ appliedonopeningeventopening_some?: Maybe<AppliedOnOpeningEventWhereInput>
|
|
|
|
+ appliedonopeningeventopening_every?: Maybe<AppliedOnOpeningEventWhereInput>
|
|
|
|
+ openingcanceledeventopening_none?: Maybe<OpeningCanceledEventWhereInput>
|
|
|
|
+ openingcanceledeventopening_some?: Maybe<OpeningCanceledEventWhereInput>
|
|
|
|
+ openingcanceledeventopening_every?: Maybe<OpeningCanceledEventWhereInput>
|
|
|
|
+ openingfilledeventopening_none?: Maybe<OpeningFilledEventWhereInput>
|
|
|
|
+ openingfilledeventopening_some?: Maybe<OpeningFilledEventWhereInput>
|
|
|
|
+ openingfilledeventopening_every?: Maybe<OpeningFilledEventWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkingGroupOpeningWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkingGroupOpeningWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupOpeningWhereUniqueInput = {
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export enum WorkingGroupOrderByInput {
|
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
|
+ NameAsc = 'name_ASC',
|
|
|
|
+ NameDesc = 'name_DESC',
|
|
|
|
+ MetadataAsc = 'metadata_ASC',
|
|
|
|
+ MetadataDesc = 'metadata_DESC',
|
|
|
|
+ LeaderAsc = 'leader_ASC',
|
|
|
|
+ LeaderDesc = 'leader_DESC',
|
|
|
|
+ BudgetAsc = 'budget_ASC',
|
|
|
|
+ BudgetDesc = 'budget_DESC',
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupUpdateInput = {
|
|
|
|
+ name?: Maybe<Scalars['String']>
|
|
|
|
+ metadata?: Maybe<Scalars['ID']>
|
|
|
|
+ leader?: Maybe<Scalars['ID']>
|
|
|
|
+ budget?: Maybe<Scalars['BigInt']>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupWhereInput = {
|
|
|
|
+ id_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ id_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ createdAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ createdById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ createdById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ updatedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ updatedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ updatedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ deletedAt_all?: Maybe<Scalars['Boolean']>
|
|
|
|
+ deletedAt_eq?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_lte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gt?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedAt_gte?: Maybe<Scalars['DateTime']>
|
|
|
|
+ deletedById_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ deletedById_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ name_eq?: Maybe<Scalars['String']>
|
|
|
|
+ name_contains?: Maybe<Scalars['String']>
|
|
|
|
+ name_startsWith?: Maybe<Scalars['String']>
|
|
|
|
+ name_endsWith?: Maybe<Scalars['String']>
|
|
|
|
+ name_in?: Maybe<Array<Scalars['String']>>
|
|
|
|
+ metadata_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ metadata_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ leader_eq?: Maybe<Scalars['ID']>
|
|
|
|
+ leader_in?: Maybe<Array<Scalars['ID']>>
|
|
|
|
+ budget_eq?: Maybe<Scalars['BigInt']>
|
|
|
|
+ budget_gt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ budget_gte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ budget_lt?: Maybe<Scalars['BigInt']>
|
|
|
|
+ budget_lte?: Maybe<Scalars['BigInt']>
|
|
|
|
+ budget_in?: Maybe<Array<Scalars['BigInt']>>
|
|
|
|
+ metadata?: Maybe<WorkingGroupMetadataWhereInput>
|
|
|
|
+ leader?: Maybe<WorkerWhereInput>
|
|
|
|
+ workers_none?: Maybe<WorkerWhereInput>
|
|
|
|
+ workers_some?: Maybe<WorkerWhereInput>
|
|
|
|
+ workers_every?: Maybe<WorkerWhereInput>
|
|
|
|
+ openings_none?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ openings_some?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ openings_every?: Maybe<WorkingGroupOpeningWhereInput>
|
|
|
|
+ applicationwithdrawneventgroup_none?: Maybe<ApplicationWithdrawnEventWhereInput>
|
|
|
|
+ applicationwithdrawneventgroup_some?: Maybe<ApplicationWithdrawnEventWhereInput>
|
|
|
|
+ applicationwithdrawneventgroup_every?: Maybe<ApplicationWithdrawnEventWhereInput>
|
|
|
|
+ appliedonopeningeventgroup_none?: Maybe<AppliedOnOpeningEventWhereInput>
|
|
|
|
+ appliedonopeningeventgroup_some?: Maybe<AppliedOnOpeningEventWhereInput>
|
|
|
|
+ appliedonopeningeventgroup_every?: Maybe<AppliedOnOpeningEventWhereInput>
|
|
|
|
+ budgetseteventgroup_none?: Maybe<BudgetSetEventWhereInput>
|
|
|
|
+ budgetseteventgroup_some?: Maybe<BudgetSetEventWhereInput>
|
|
|
|
+ budgetseteventgroup_every?: Maybe<BudgetSetEventWhereInput>
|
|
|
|
+ budgetspendingeventgroup_none?: Maybe<BudgetSpendingEventWhereInput>
|
|
|
|
+ budgetspendingeventgroup_some?: Maybe<BudgetSpendingEventWhereInput>
|
|
|
|
+ budgetspendingeventgroup_every?: Maybe<BudgetSpendingEventWhereInput>
|
|
|
|
+ leaderseteventgroup_none?: Maybe<LeaderSetEventWhereInput>
|
|
|
|
+ leaderseteventgroup_some?: Maybe<LeaderSetEventWhereInput>
|
|
|
|
+ leaderseteventgroup_every?: Maybe<LeaderSetEventWhereInput>
|
|
|
|
+ leaderunseteventgroup_none?: Maybe<LeaderUnsetEventWhereInput>
|
|
|
|
+ leaderunseteventgroup_some?: Maybe<LeaderUnsetEventWhereInput>
|
|
|
|
+ leaderunseteventgroup_every?: Maybe<LeaderUnsetEventWhereInput>
|
|
|
|
+ newmissedrewardlevelreachedeventgroup_none?: Maybe<NewMissedRewardLevelReachedEventWhereInput>
|
|
|
|
+ newmissedrewardlevelreachedeventgroup_some?: Maybe<NewMissedRewardLevelReachedEventWhereInput>
|
|
|
|
+ newmissedrewardlevelreachedeventgroup_every?: Maybe<NewMissedRewardLevelReachedEventWhereInput>
|
|
|
|
+ openingaddedeventgroup_none?: Maybe<OpeningAddedEventWhereInput>
|
|
|
|
+ openingaddedeventgroup_some?: Maybe<OpeningAddedEventWhereInput>
|
|
|
|
+ openingaddedeventgroup_every?: Maybe<OpeningAddedEventWhereInput>
|
|
|
|
+ openingcanceledeventgroup_none?: Maybe<OpeningCanceledEventWhereInput>
|
|
|
|
+ openingcanceledeventgroup_some?: Maybe<OpeningCanceledEventWhereInput>
|
|
|
|
+ openingcanceledeventgroup_every?: Maybe<OpeningCanceledEventWhereInput>
|
|
|
|
+ openingfilledeventgroup_none?: Maybe<OpeningFilledEventWhereInput>
|
|
|
|
+ openingfilledeventgroup_some?: Maybe<OpeningFilledEventWhereInput>
|
|
|
|
+ openingfilledeventgroup_every?: Maybe<OpeningFilledEventWhereInput>
|
|
|
|
+ rewardpaideventgroup_none?: Maybe<RewardPaidEventWhereInput>
|
|
|
|
+ rewardpaideventgroup_some?: Maybe<RewardPaidEventWhereInput>
|
|
|
|
+ rewardpaideventgroup_every?: Maybe<RewardPaidEventWhereInput>
|
|
|
|
+ stakedecreasedeventgroup_none?: Maybe<StakeDecreasedEventWhereInput>
|
|
|
|
+ stakedecreasedeventgroup_some?: Maybe<StakeDecreasedEventWhereInput>
|
|
|
|
+ stakedecreasedeventgroup_every?: Maybe<StakeDecreasedEventWhereInput>
|
|
|
|
+ stakeincreasedeventgroup_none?: Maybe<StakeIncreasedEventWhereInput>
|
|
|
|
+ stakeincreasedeventgroup_some?: Maybe<StakeIncreasedEventWhereInput>
|
|
|
|
+ stakeincreasedeventgroup_every?: Maybe<StakeIncreasedEventWhereInput>
|
|
|
|
+ stakeslashedeventgroup_none?: Maybe<StakeSlashedEventWhereInput>
|
|
|
|
+ stakeslashedeventgroup_some?: Maybe<StakeSlashedEventWhereInput>
|
|
|
|
+ stakeslashedeventgroup_every?: Maybe<StakeSlashedEventWhereInput>
|
|
|
|
+ statustextchangedeventgroup_none?: Maybe<StatusTextChangedEventWhereInput>
|
|
|
|
+ statustextchangedeventgroup_some?: Maybe<StatusTextChangedEventWhereInput>
|
|
|
|
+ statustextchangedeventgroup_every?: Maybe<StatusTextChangedEventWhereInput>
|
|
|
|
+ terminatedleadereventgroup_none?: Maybe<TerminatedLeaderEventWhereInput>
|
|
|
|
+ terminatedleadereventgroup_some?: Maybe<TerminatedLeaderEventWhereInput>
|
|
|
|
+ terminatedleadereventgroup_every?: Maybe<TerminatedLeaderEventWhereInput>
|
|
|
|
+ terminatedworkereventgroup_none?: Maybe<TerminatedWorkerEventWhereInput>
|
|
|
|
+ terminatedworkereventgroup_some?: Maybe<TerminatedWorkerEventWhereInput>
|
|
|
|
+ terminatedworkereventgroup_every?: Maybe<TerminatedWorkerEventWhereInput>
|
|
|
|
+ upcomingworkinggroupopeninggroup_none?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ upcomingworkinggroupopeninggroup_some?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ upcomingworkinggroupopeninggroup_every?: Maybe<UpcomingWorkingGroupOpeningWhereInput>
|
|
|
|
+ workerexitedeventgroup_none?: Maybe<WorkerExitedEventWhereInput>
|
|
|
|
+ workerexitedeventgroup_some?: Maybe<WorkerExitedEventWhereInput>
|
|
|
|
+ workerexitedeventgroup_every?: Maybe<WorkerExitedEventWhereInput>
|
|
|
|
+ workerrewardaccountupdatedeventgroup_none?: Maybe<WorkerRewardAccountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardaccountupdatedeventgroup_some?: Maybe<WorkerRewardAccountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardaccountupdatedeventgroup_every?: Maybe<WorkerRewardAccountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardamountupdatedeventgroup_none?: Maybe<WorkerRewardAmountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardamountupdatedeventgroup_some?: Maybe<WorkerRewardAmountUpdatedEventWhereInput>
|
|
|
|
+ workerrewardamountupdatedeventgroup_every?: Maybe<WorkerRewardAmountUpdatedEventWhereInput>
|
|
|
|
+ workerroleaccountupdatedeventgroup_none?: Maybe<WorkerRoleAccountUpdatedEventWhereInput>
|
|
|
|
+ workerroleaccountupdatedeventgroup_some?: Maybe<WorkerRoleAccountUpdatedEventWhereInput>
|
|
|
|
+ workerroleaccountupdatedeventgroup_every?: Maybe<WorkerRoleAccountUpdatedEventWhereInput>
|
|
|
|
+ workerstartedleavingeventgroup_none?: Maybe<WorkerStartedLeavingEventWhereInput>
|
|
|
|
+ workerstartedleavingeventgroup_some?: Maybe<WorkerStartedLeavingEventWhereInput>
|
|
|
|
+ workerstartedleavingeventgroup_every?: Maybe<WorkerStartedLeavingEventWhereInput>
|
|
|
|
+ workinggroupmetadatagroup_none?: Maybe<WorkingGroupMetadataWhereInput>
|
|
|
|
+ workinggroupmetadatagroup_some?: Maybe<WorkingGroupMetadataWhereInput>
|
|
|
|
+ workinggroupmetadatagroup_every?: Maybe<WorkingGroupMetadataWhereInput>
|
|
|
|
+ AND?: Maybe<Array<WorkingGroupWhereInput>>
|
|
|
|
+ OR?: Maybe<Array<WorkingGroupWhereInput>>
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export type WorkingGroupWhereUniqueInput = {
|
|
|
|
+ id?: Maybe<Scalars['ID']>
|
|
|
|
+ name?: Maybe<Scalars['String']>
|
|
|
|
+}
|