From 6b85d3197fe9c603c82a04ac3a9409c82525f916 Mon Sep 17 00:00:00 2001 From: MeilCli Date: Fri, 22 Sep 2023 16:06:04 +0000 Subject: [PATCH] update actions --- graphql/graphql.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/graphql/graphql.ts b/graphql/graphql.ts index 4ca2a6b5..aff82c22 100644 --- a/graphql/graphql.ts +++ b/graphql/graphql.ts @@ -5307,6 +5307,8 @@ export type Discussion = Closable & Comment & Deletable & Labelable & Lockable & id: Scalars['ID']['output']; /** Check if this comment was edited and includes an edit with the creation data */ includesCreatedEdit: Scalars['Boolean']['output']; + /** Only return answered/unanswered discussions */ + isAnswered?: Maybe; /** A list of labels associated with the object. */ labels?: Maybe; /** The moment the editor made the last edit */ @@ -20711,6 +20713,7 @@ export type RepositoryDiscussionCategoryArgs = { /** A repository contains the content for a project. */ export type RepositoryDiscussionsArgs = { after?: InputMaybe; + answered?: InputMaybe; before?: InputMaybe; categoryId?: InputMaybe; first?: InputMaybe; @@ -33497,6 +33500,7 @@ export type DiscussionResolvers, ParentType, ContextType>; id?: Resolver; includesCreatedEdit?: Resolver; + isAnswered?: Resolver, ParentType, ContextType>; labels?: Resolver, ParentType, ContextType, RequireFields>; lastEditedAt?: Resolver, ParentType, ContextType>; locked?: Resolver; @@ -38748,7 +38752,7 @@ export type RepositoryResolvers, ParentType, ContextType, RequireFields>; discussionCategories?: Resolver>; discussionCategory?: Resolver, ParentType, ContextType, RequireFields>; - discussions?: Resolver>; + discussions?: Resolver>; diskUsage?: Resolver, ParentType, ContextType>; environment?: Resolver, ParentType, ContextType, RequireFields>; environments?: Resolver>;