Removed wrapper type
All checks were successful
Tests / Tests (pull_request) Successful in 14s

This commit is contained in:
2024-07-23 18:53:39 -07:00
parent b1550b31c5
commit e1237363f0
2 changed files with 4 additions and 11 deletions

View File

@@ -1114,7 +1114,7 @@ export type Query = {
getShotAnnotationTypes: Array<ShotAnnotationTypeGql>;
getShots: Array<ShotGql>;
getUser?: Maybe<UserGql>;
getUserTags: UserTagsGql;
getUserTags: Array<TagGql>;
getUserVideos: VideoHistoryGql;
getUsernames: Array<Scalars["String"]["output"]>;
getVideo: VideoGql;
@@ -1236,6 +1236,7 @@ export enum StreamSegmentTypeEnum {
export type TagGql = {
__typename?: "TagGQL";
group?: Maybe<Scalars["String"]["output"]>;
id: Scalars["Int"]["output"];
name: Scalars["String"]["output"];
};
@@ -1304,11 +1305,6 @@ export type UserPlayTimeGql = {
totalSeconds: Scalars["Float"]["output"];
};
export type UserTagsGql = {
__typename?: "UserTagsGQL";
tags: Array<TagGql>;
};
export type VideoFilterInput = {
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
requireCursorCompletion?: Scalars["Boolean"]["input"];