From 492178455c9e7b09ee0962176c5657e2c516de5c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 25 Jun 2025 15:08:19 -0700 Subject: [PATCH] Add getUsersMatching --- src/index.tsx | 7 +++++++ src/schema.gql | 5 +++++ 2 files changed, 12 insertions(+) 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