Compare commits

..

1 Commits

Author SHA1 Message Date
059e2149a0 Remove field for now
All checks were successful
Tests / Tests (pull_request) Successful in 15s
2024-10-25 01:00:06 -06:00
2 changed files with 2 additions and 2 deletions

View File

@@ -2527,7 +2527,7 @@ export type UsernamesAndFollowingResponse = {
__typename?: "UsernamesAndFollowingResponse";
followers: Array<Scalars["Int"]["output"]>;
following: Array<Scalars["Int"]["output"]>;
usernamesAndIds: Array<UserGql>;
usernames: Array<Scalars["String"]["output"]>;
};
export type VideoFilterInput = {

View File

@@ -555,7 +555,7 @@ input CreatedAfter @oneOf {
}
type UsernamesAndFollowingResponse {
usernamesAndIds: [UserGQL!]!
usernames: [String!]!
following: [Int!]!
followers: [Int!]!
}