diff --git a/src/index.tsx b/src/index.tsx index a9ac64a..9387fb6 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2511,6 +2511,7 @@ export type Query = { getUserTags: Array; getUserVideos: VideoHistoryGql; getUsernames: Array; + getUsersMatching: Array; getVideo: VideoGql; getVideoMakePercentageIntervals: Array; getVideos: Array; @@ -2633,6 +2634,12 @@ export type QueryGetUsernamesArgs = { matchString?: InputMaybe; }; +export type QueryGetUsersMatchingArgs = { + after?: InputMaybe; + limit?: InputMaybe; + matchString?: InputMaybe; +}; + export type QueryGetVideoArgs = { debuggingJson?: InputMaybe; videoId: Scalars["Int"]["input"]; diff --git a/src/schema.gql b/src/schema.gql index f2c24f6..f9e79a0 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -70,6 +70,11 @@ type Query { limit: Int = null after: String = null ): [String!]! + getUsersMatching( + matchString: String = null + limit: Int = null + after: String = null + ): [UserGQL!]! getUserRelationshipsMatching( userId: Int! matchString: String = null