|
@@ -3623,15 +3623,18 @@ export type ForumThread = BaseGraphQlObject & {
|
|
|
/** Thread title */
|
|
|
title: Scalars['String']
|
|
|
posts: Array<ForumPost>
|
|
|
+ /** Number of non-deleted posts in the thread */
|
|
|
+ visiblePostsCount: Scalars['Int']
|
|
|
poll?: Maybe<ForumPoll>
|
|
|
/** Whether the thread is sticky in the category */
|
|
|
isSticky: Scalars['Boolean']
|
|
|
createdInEvent: ThreadCreatedEvent
|
|
|
/** Current thread status */
|
|
|
status: ThreadStatus
|
|
|
- titleUpdates: Array<ThreadTitleUpdatedEvent>
|
|
|
+ metadataUpdates: Array<ThreadMetadataUpdatedEvent>
|
|
|
madeStickyInEvents: Array<CategoryStickyThreadUpdateEvent>
|
|
|
movedInEvents: Array<ThreadMovedEvent>
|
|
|
+ tags: Array<ForumThreadTag>
|
|
|
threaddeletedeventthread?: Maybe<Array<ThreadDeletedEvent>>
|
|
|
threadmoderatedeventthread?: Maybe<Array<ThreadModeratedEvent>>
|
|
|
}
|
|
@@ -3646,6 +3649,7 @@ export type ForumThreadCreateInput = {
|
|
|
author: Scalars['ID']
|
|
|
category: Scalars['ID']
|
|
|
title: Scalars['String']
|
|
|
+ visiblePostsCount: Scalars['Float']
|
|
|
isSticky: Scalars['Boolean']
|
|
|
status: Scalars['JSONObject']
|
|
|
}
|
|
@@ -3668,14 +3672,103 @@ export enum ForumThreadOrderByInput {
|
|
|
CategoryDesc = 'category_DESC',
|
|
|
TitleAsc = 'title_ASC',
|
|
|
TitleDesc = 'title_DESC',
|
|
|
+ VisiblePostsCountAsc = 'visiblePostsCount_ASC',
|
|
|
+ VisiblePostsCountDesc = 'visiblePostsCount_DESC',
|
|
|
IsStickyAsc = 'isSticky_ASC',
|
|
|
IsStickyDesc = 'isSticky_DESC',
|
|
|
}
|
|
|
|
|
|
+export type ForumThreadTag = 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']
|
|
|
+ threads: Array<ForumThread>
|
|
|
+ /** Number of non-deleted threads currently assigned to the tag */
|
|
|
+ visibleThreadsCount: Scalars['Int']
|
|
|
+}
|
|
|
+
|
|
|
+export type ForumThreadTagConnection = {
|
|
|
+ totalCount: Scalars['Int']
|
|
|
+ edges: Array<ForumThreadTagEdge>
|
|
|
+ pageInfo: PageInfo
|
|
|
+}
|
|
|
+
|
|
|
+export type ForumThreadTagCreateInput = {
|
|
|
+ visibleThreadsCount: Scalars['Float']
|
|
|
+}
|
|
|
+
|
|
|
+export type ForumThreadTagEdge = {
|
|
|
+ node: ForumThreadTag
|
|
|
+ cursor: Scalars['String']
|
|
|
+}
|
|
|
+
|
|
|
+export enum ForumThreadTagOrderByInput {
|
|
|
+ CreatedAtAsc = 'createdAt_ASC',
|
|
|
+ CreatedAtDesc = 'createdAt_DESC',
|
|
|
+ UpdatedAtAsc = 'updatedAt_ASC',
|
|
|
+ UpdatedAtDesc = 'updatedAt_DESC',
|
|
|
+ DeletedAtAsc = 'deletedAt_ASC',
|
|
|
+ DeletedAtDesc = 'deletedAt_DESC',
|
|
|
+ VisibleThreadsCountAsc = 'visibleThreadsCount_ASC',
|
|
|
+ VisibleThreadsCountDesc = 'visibleThreadsCount_DESC',
|
|
|
+}
|
|
|
+
|
|
|
+export type ForumThreadTagUpdateInput = {
|
|
|
+ visibleThreadsCount?: Maybe<Scalars['Float']>
|
|
|
+}
|
|
|
+
|
|
|
+export type ForumThreadTagWhereInput = {
|
|
|
+ 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']>>
|
|
|
+ visibleThreadsCount_eq?: Maybe<Scalars['Int']>
|
|
|
+ visibleThreadsCount_gt?: Maybe<Scalars['Int']>
|
|
|
+ visibleThreadsCount_gte?: Maybe<Scalars['Int']>
|
|
|
+ visibleThreadsCount_lt?: Maybe<Scalars['Int']>
|
|
|
+ visibleThreadsCount_lte?: Maybe<Scalars['Int']>
|
|
|
+ visibleThreadsCount_in?: Maybe<Array<Scalars['Int']>>
|
|
|
+ threads_none?: Maybe<ForumThreadWhereInput>
|
|
|
+ threads_some?: Maybe<ForumThreadWhereInput>
|
|
|
+ threads_every?: Maybe<ForumThreadWhereInput>
|
|
|
+ AND?: Maybe<Array<ForumThreadTagWhereInput>>
|
|
|
+ OR?: Maybe<Array<ForumThreadTagWhereInput>>
|
|
|
+}
|
|
|
+
|
|
|
+export type ForumThreadTagWhereUniqueInput = {
|
|
|
+ id: Scalars['ID']
|
|
|
+}
|
|
|
+
|
|
|
export type ForumThreadUpdateInput = {
|
|
|
author?: Maybe<Scalars['ID']>
|
|
|
category?: Maybe<Scalars['ID']>
|
|
|
title?: Maybe<Scalars['String']>
|
|
|
+ visiblePostsCount?: Maybe<Scalars['Float']>
|
|
|
isSticky?: Maybe<Scalars['Boolean']>
|
|
|
status?: Maybe<Scalars['JSONObject']>
|
|
|
}
|
|
@@ -3714,6 +3807,12 @@ export type ForumThreadWhereInput = {
|
|
|
title_startsWith?: Maybe<Scalars['String']>
|
|
|
title_endsWith?: Maybe<Scalars['String']>
|
|
|
title_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ visiblePostsCount_eq?: Maybe<Scalars['Int']>
|
|
|
+ visiblePostsCount_gt?: Maybe<Scalars['Int']>
|
|
|
+ visiblePostsCount_gte?: Maybe<Scalars['Int']>
|
|
|
+ visiblePostsCount_lt?: Maybe<Scalars['Int']>
|
|
|
+ visiblePostsCount_lte?: Maybe<Scalars['Int']>
|
|
|
+ visiblePostsCount_in?: Maybe<Array<Scalars['Int']>>
|
|
|
isSticky_eq?: Maybe<Scalars['Boolean']>
|
|
|
isSticky_in?: Maybe<Array<Scalars['Boolean']>>
|
|
|
status_json?: Maybe<Scalars['JSONObject']>
|
|
@@ -3724,15 +3823,18 @@ export type ForumThreadWhereInput = {
|
|
|
posts_every?: Maybe<ForumPostWhereInput>
|
|
|
poll?: Maybe<ForumPollWhereInput>
|
|
|
createdInEvent?: Maybe<ThreadCreatedEventWhereInput>
|
|
|
- titleUpdates_none?: Maybe<ThreadTitleUpdatedEventWhereInput>
|
|
|
- titleUpdates_some?: Maybe<ThreadTitleUpdatedEventWhereInput>
|
|
|
- titleUpdates_every?: Maybe<ThreadTitleUpdatedEventWhereInput>
|
|
|
+ metadataUpdates_none?: Maybe<ThreadMetadataUpdatedEventWhereInput>
|
|
|
+ metadataUpdates_some?: Maybe<ThreadMetadataUpdatedEventWhereInput>
|
|
|
+ metadataUpdates_every?: Maybe<ThreadMetadataUpdatedEventWhereInput>
|
|
|
madeStickyInEvents_none?: Maybe<CategoryStickyThreadUpdateEventWhereInput>
|
|
|
madeStickyInEvents_some?: Maybe<CategoryStickyThreadUpdateEventWhereInput>
|
|
|
madeStickyInEvents_every?: Maybe<CategoryStickyThreadUpdateEventWhereInput>
|
|
|
movedInEvents_none?: Maybe<ThreadMovedEventWhereInput>
|
|
|
movedInEvents_some?: Maybe<ThreadMovedEventWhereInput>
|
|
|
movedInEvents_every?: Maybe<ThreadMovedEventWhereInput>
|
|
|
+ tags_none?: Maybe<ForumThreadTagWhereInput>
|
|
|
+ tags_some?: Maybe<ForumThreadTagWhereInput>
|
|
|
+ tags_every?: Maybe<ForumThreadTagWhereInput>
|
|
|
threaddeletedeventthread_none?: Maybe<ThreadDeletedEventWhereInput>
|
|
|
threaddeletedeventthread_some?: Maybe<ThreadDeletedEventWhereInput>
|
|
|
threaddeletedeventthread_every?: Maybe<ThreadDeletedEventWhereInput>
|
|
@@ -10484,6 +10586,9 @@ export type Query = {
|
|
|
forumPosts: Array<ForumPost>
|
|
|
forumPostByUniqueInput?: Maybe<ForumPost>
|
|
|
forumPostsConnection: ForumPostConnection
|
|
|
+ forumThreadTags: Array<ForumThreadTag>
|
|
|
+ forumThreadTagByUniqueInput?: Maybe<ForumThreadTag>
|
|
|
+ forumThreadTagsConnection: ForumThreadTagConnection
|
|
|
forumThreads: Array<ForumThread>
|
|
|
forumThreadByUniqueInput?: Maybe<ForumThread>
|
|
|
forumThreadsConnection: ForumThreadConnection
|
|
@@ -10666,15 +10771,15 @@ export type Query = {
|
|
|
threadDeletedEvents: Array<ThreadDeletedEvent>
|
|
|
threadDeletedEventByUniqueInput?: Maybe<ThreadDeletedEvent>
|
|
|
threadDeletedEventsConnection: ThreadDeletedEventConnection
|
|
|
+ threadMetadataUpdatedEvents: Array<ThreadMetadataUpdatedEvent>
|
|
|
+ threadMetadataUpdatedEventByUniqueInput?: Maybe<ThreadMetadataUpdatedEvent>
|
|
|
+ threadMetadataUpdatedEventsConnection: ThreadMetadataUpdatedEventConnection
|
|
|
threadModeratedEvents: Array<ThreadModeratedEvent>
|
|
|
threadModeratedEventByUniqueInput?: Maybe<ThreadModeratedEvent>
|
|
|
threadModeratedEventsConnection: ThreadModeratedEventConnection
|
|
|
threadMovedEvents: Array<ThreadMovedEvent>
|
|
|
threadMovedEventByUniqueInput?: Maybe<ThreadMovedEvent>
|
|
|
threadMovedEventsConnection: ThreadMovedEventConnection
|
|
|
- threadTitleUpdatedEvents: Array<ThreadTitleUpdatedEvent>
|
|
|
- threadTitleUpdatedEventByUniqueInput?: Maybe<ThreadTitleUpdatedEvent>
|
|
|
- threadTitleUpdatedEventsConnection: ThreadTitleUpdatedEventConnection
|
|
|
upcomingWorkingGroupOpenings: Array<UpcomingWorkingGroupOpening>
|
|
|
upcomingWorkingGroupOpeningByUniqueInput?: Maybe<UpcomingWorkingGroupOpening>
|
|
|
upcomingWorkingGroupOpeningsConnection: UpcomingWorkingGroupOpeningConnection
|
|
@@ -11135,6 +11240,26 @@ export type QueryForumPostsConnectionArgs = {
|
|
|
orderBy?: Maybe<Array<ForumPostOrderByInput>>
|
|
|
}
|
|
|
|
|
|
+export type QueryForumThreadTagsArgs = {
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
+ where?: Maybe<ForumThreadTagWhereInput>
|
|
|
+ orderBy?: Maybe<Array<ForumThreadTagOrderByInput>>
|
|
|
+}
|
|
|
+
|
|
|
+export type QueryForumThreadTagByUniqueInputArgs = {
|
|
|
+ where: ForumThreadTagWhereUniqueInput
|
|
|
+}
|
|
|
+
|
|
|
+export type QueryForumThreadTagsConnectionArgs = {
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
+ where?: Maybe<ForumThreadTagWhereInput>
|
|
|
+ orderBy?: Maybe<Array<ForumThreadTagOrderByInput>>
|
|
|
+}
|
|
|
+
|
|
|
export type QueryForumThreadsArgs = {
|
|
|
offset?: Maybe<Scalars['Int']>
|
|
|
limit?: Maybe<Scalars['Int']>
|
|
@@ -12352,6 +12477,26 @@ export type QueryThreadDeletedEventsConnectionArgs = {
|
|
|
orderBy?: Maybe<Array<ThreadDeletedEventOrderByInput>>
|
|
|
}
|
|
|
|
|
|
+export type QueryThreadMetadataUpdatedEventsArgs = {
|
|
|
+ offset?: Maybe<Scalars['Int']>
|
|
|
+ limit?: Maybe<Scalars['Int']>
|
|
|
+ where?: Maybe<ThreadMetadataUpdatedEventWhereInput>
|
|
|
+ orderBy?: Maybe<Array<ThreadMetadataUpdatedEventOrderByInput>>
|
|
|
+}
|
|
|
+
|
|
|
+export type QueryThreadMetadataUpdatedEventByUniqueInputArgs = {
|
|
|
+ where: ThreadMetadataUpdatedEventWhereUniqueInput
|
|
|
+}
|
|
|
+
|
|
|
+export type QueryThreadMetadataUpdatedEventsConnectionArgs = {
|
|
|
+ first?: Maybe<Scalars['Int']>
|
|
|
+ after?: Maybe<Scalars['String']>
|
|
|
+ last?: Maybe<Scalars['Int']>
|
|
|
+ before?: Maybe<Scalars['String']>
|
|
|
+ where?: Maybe<ThreadMetadataUpdatedEventWhereInput>
|
|
|
+ orderBy?: Maybe<Array<ThreadMetadataUpdatedEventOrderByInput>>
|
|
|
+}
|
|
|
+
|
|
|
export type QueryThreadModeratedEventsArgs = {
|
|
|
offset?: Maybe<Scalars['Int']>
|
|
|
limit?: Maybe<Scalars['Int']>
|
|
@@ -12392,26 +12537,6 @@ export type QueryThreadMovedEventsConnectionArgs = {
|
|
|
orderBy?: Maybe<Array<ThreadMovedEventOrderByInput>>
|
|
|
}
|
|
|
|
|
|
-export type QueryThreadTitleUpdatedEventsArgs = {
|
|
|
- offset?: Maybe<Scalars['Int']>
|
|
|
- limit?: Maybe<Scalars['Int']>
|
|
|
- where?: Maybe<ThreadTitleUpdatedEventWhereInput>
|
|
|
- orderBy?: Maybe<Array<ThreadTitleUpdatedEventOrderByInput>>
|
|
|
-}
|
|
|
-
|
|
|
-export type QueryThreadTitleUpdatedEventByUniqueInputArgs = {
|
|
|
- where: ThreadTitleUpdatedEventWhereUniqueInput
|
|
|
-}
|
|
|
-
|
|
|
-export type QueryThreadTitleUpdatedEventsConnectionArgs = {
|
|
|
- first?: Maybe<Scalars['Int']>
|
|
|
- after?: Maybe<Scalars['String']>
|
|
|
- last?: Maybe<Scalars['Int']>
|
|
|
- before?: Maybe<Scalars['String']>
|
|
|
- where?: Maybe<ThreadTitleUpdatedEventWhereInput>
|
|
|
- orderBy?: Maybe<Array<ThreadTitleUpdatedEventOrderByInput>>
|
|
|
-}
|
|
|
-
|
|
|
export type QueryUpcomingWorkingGroupOpeningsArgs = {
|
|
|
offset?: Maybe<Scalars['Int']>
|
|
|
limit?: Maybe<Scalars['Int']>
|
|
@@ -15377,6 +15502,139 @@ export type ThreadDeletedEventWhereUniqueInput = {
|
|
|
id: Scalars['ID']
|
|
|
}
|
|
|
|
|
|
+export type ThreadMetadataUpdatedEvent = 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']
|
|
|
+ thread: ForumThread
|
|
|
+ threadId: Scalars['String']
|
|
|
+ /** New title of the thread */
|
|
|
+ newTitle: Scalars['String']
|
|
|
+}
|
|
|
+
|
|
|
+export type ThreadMetadataUpdatedEventConnection = {
|
|
|
+ totalCount: Scalars['Int']
|
|
|
+ edges: Array<ThreadMetadataUpdatedEventEdge>
|
|
|
+ pageInfo: PageInfo
|
|
|
+}
|
|
|
+
|
|
|
+export type ThreadMetadataUpdatedEventCreateInput = {
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
+ inBlock: Scalars['Float']
|
|
|
+ network: Network
|
|
|
+ indexInBlock: Scalars['Float']
|
|
|
+ thread: Scalars['ID']
|
|
|
+ newTitle: Scalars['String']
|
|
|
+}
|
|
|
+
|
|
|
+export type ThreadMetadataUpdatedEventEdge = {
|
|
|
+ node: ThreadMetadataUpdatedEvent
|
|
|
+ cursor: Scalars['String']
|
|
|
+}
|
|
|
+
|
|
|
+export enum ThreadMetadataUpdatedEventOrderByInput {
|
|
|
+ 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',
|
|
|
+ ThreadAsc = 'thread_ASC',
|
|
|
+ ThreadDesc = 'thread_DESC',
|
|
|
+ NewTitleAsc = 'newTitle_ASC',
|
|
|
+ NewTitleDesc = 'newTitle_DESC',
|
|
|
+}
|
|
|
+
|
|
|
+export type ThreadMetadataUpdatedEventUpdateInput = {
|
|
|
+ inExtrinsic?: Maybe<Scalars['String']>
|
|
|
+ inBlock?: Maybe<Scalars['Float']>
|
|
|
+ network?: Maybe<Network>
|
|
|
+ indexInBlock?: Maybe<Scalars['Float']>
|
|
|
+ thread?: Maybe<Scalars['ID']>
|
|
|
+ newTitle?: Maybe<Scalars['String']>
|
|
|
+}
|
|
|
+
|
|
|
+export type ThreadMetadataUpdatedEventWhereInput = {
|
|
|
+ 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']>>
|
|
|
+ thread_eq?: Maybe<Scalars['ID']>
|
|
|
+ thread_in?: Maybe<Array<Scalars['ID']>>
|
|
|
+ newTitle_eq?: Maybe<Scalars['String']>
|
|
|
+ newTitle_contains?: Maybe<Scalars['String']>
|
|
|
+ newTitle_startsWith?: Maybe<Scalars['String']>
|
|
|
+ newTitle_endsWith?: Maybe<Scalars['String']>
|
|
|
+ newTitle_in?: Maybe<Array<Scalars['String']>>
|
|
|
+ thread?: Maybe<ForumThreadWhereInput>
|
|
|
+ AND?: Maybe<Array<ThreadMetadataUpdatedEventWhereInput>>
|
|
|
+ OR?: Maybe<Array<ThreadMetadataUpdatedEventWhereInput>>
|
|
|
+}
|
|
|
+
|
|
|
+export type ThreadMetadataUpdatedEventWhereUniqueInput = {
|
|
|
+ id: Scalars['ID']
|
|
|
+}
|
|
|
+
|
|
|
export type ThreadModeratedEvent = BaseGraphQlObject & {
|
|
|
id: Scalars['ID']
|
|
|
createdAt: Scalars['DateTime']
|
|
@@ -15745,139 +16003,6 @@ export type ThreadStatusRemoved = {
|
|
|
threadDeletedEvent?: Maybe<ThreadDeletedEvent>
|
|
|
}
|
|
|
|
|
|
-export type ThreadTitleUpdatedEvent = 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']
|
|
|
- thread: ForumThread
|
|
|
- threadId: Scalars['String']
|
|
|
- /** New title of the thread */
|
|
|
- newTitle: Scalars['String']
|
|
|
-}
|
|
|
-
|
|
|
-export type ThreadTitleUpdatedEventConnection = {
|
|
|
- totalCount: Scalars['Int']
|
|
|
- edges: Array<ThreadTitleUpdatedEventEdge>
|
|
|
- pageInfo: PageInfo
|
|
|
-}
|
|
|
-
|
|
|
-export type ThreadTitleUpdatedEventCreateInput = {
|
|
|
- inExtrinsic?: Maybe<Scalars['String']>
|
|
|
- inBlock: Scalars['Float']
|
|
|
- network: Network
|
|
|
- indexInBlock: Scalars['Float']
|
|
|
- thread: Scalars['ID']
|
|
|
- newTitle: Scalars['String']
|
|
|
-}
|
|
|
-
|
|
|
-export type ThreadTitleUpdatedEventEdge = {
|
|
|
- node: ThreadTitleUpdatedEvent
|
|
|
- cursor: Scalars['String']
|
|
|
-}
|
|
|
-
|
|
|
-export enum ThreadTitleUpdatedEventOrderByInput {
|
|
|
- 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',
|
|
|
- ThreadAsc = 'thread_ASC',
|
|
|
- ThreadDesc = 'thread_DESC',
|
|
|
- NewTitleAsc = 'newTitle_ASC',
|
|
|
- NewTitleDesc = 'newTitle_DESC',
|
|
|
-}
|
|
|
-
|
|
|
-export type ThreadTitleUpdatedEventUpdateInput = {
|
|
|
- inExtrinsic?: Maybe<Scalars['String']>
|
|
|
- inBlock?: Maybe<Scalars['Float']>
|
|
|
- network?: Maybe<Network>
|
|
|
- indexInBlock?: Maybe<Scalars['Float']>
|
|
|
- thread?: Maybe<Scalars['ID']>
|
|
|
- newTitle?: Maybe<Scalars['String']>
|
|
|
-}
|
|
|
-
|
|
|
-export type ThreadTitleUpdatedEventWhereInput = {
|
|
|
- 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']>>
|
|
|
- thread_eq?: Maybe<Scalars['ID']>
|
|
|
- thread_in?: Maybe<Array<Scalars['ID']>>
|
|
|
- newTitle_eq?: Maybe<Scalars['String']>
|
|
|
- newTitle_contains?: Maybe<Scalars['String']>
|
|
|
- newTitle_startsWith?: Maybe<Scalars['String']>
|
|
|
- newTitle_endsWith?: Maybe<Scalars['String']>
|
|
|
- newTitle_in?: Maybe<Array<Scalars['String']>>
|
|
|
- thread?: Maybe<ForumThreadWhereInput>
|
|
|
- AND?: Maybe<Array<ThreadTitleUpdatedEventWhereInput>>
|
|
|
- OR?: Maybe<Array<ThreadTitleUpdatedEventWhereInput>>
|
|
|
-}
|
|
|
-
|
|
|
-export type ThreadTitleUpdatedEventWhereUniqueInput = {
|
|
|
- id: Scalars['ID']
|
|
|
-}
|
|
|
-
|
|
|
export type UnlockBlogPostProposalDetails = {
|
|
|
/** The blog post that should be unlocked */
|
|
|
blogPost: Scalars['String']
|