Compare commits

..

No commits in common. "524d469a0da8db6f29ce90b38f30b97fe3af7e1b" and "ba84f6d9c0155066d6b07715faf6891de8e0a493" have entirely different histories.

2 changed files with 0 additions and 13 deletions

View File

@ -652,7 +652,6 @@ export type Query = {
getDeployedConfig: DeployedConfigGql;
getLoggedInUser?: Maybe<UserGql>;
getPlayTime: UserPlayTimeGql;
getShotAnnotationTypes: Array<ShotAnnotationTypeGql>;
getShots: Array<ShotGql>;
getUser?: Maybe<UserGql>;
getUserVideos: VideoHistoryGql;
@ -715,12 +714,6 @@ export type ShotAnnotationInput = {
name: Scalars["String"]["input"];
};
export type ShotAnnotationTypeGql = {
__typename?: "ShotAnnotationTypeGQL";
id: Scalars["Int"]["output"];
name: Scalars["String"]["output"];
};
export enum ShotDirectionEnum {
Left = "LEFT",
Right = "RIGHT",

View File

@ -9,7 +9,6 @@ type Query {
intervalDuration: Int! = 300
): [MakePercentageIntervalGQL!]!
getShots(filterInput: FilterInput!): [ShotGQL!]!
getShotAnnotationTypes: [ShotAnnotationTypeGQL!]!
getUser(userId: Int!): UserGQL
getLoggedInUser: UserGQL
getPlayTime(userId: Int!): UserPlayTimeGQL!
@ -195,11 +194,6 @@ type UserGQL {
updatedAt: DateTime
}
type ShotAnnotationTypeGQL {
id: Int!
name: String!
}
type UserPlayTimeGQL {
totalSeconds: Float!
}