Compare commits
No commits in common. "524d469a0da8db6f29ce90b38f30b97fe3af7e1b" and "ba84f6d9c0155066d6b07715faf6891de8e0a493" have entirely different histories.
524d469a0d
...
ba84f6d9c0
@ -652,7 +652,6 @@ export type Query = {
|
|||||||
getDeployedConfig: DeployedConfigGql;
|
getDeployedConfig: DeployedConfigGql;
|
||||||
getLoggedInUser?: Maybe<UserGql>;
|
getLoggedInUser?: Maybe<UserGql>;
|
||||||
getPlayTime: UserPlayTimeGql;
|
getPlayTime: UserPlayTimeGql;
|
||||||
getShotAnnotationTypes: Array<ShotAnnotationTypeGql>;
|
|
||||||
getShots: Array<ShotGql>;
|
getShots: Array<ShotGql>;
|
||||||
getUser?: Maybe<UserGql>;
|
getUser?: Maybe<UserGql>;
|
||||||
getUserVideos: VideoHistoryGql;
|
getUserVideos: VideoHistoryGql;
|
||||||
@ -715,12 +714,6 @@ export type ShotAnnotationInput = {
|
|||||||
name: Scalars["String"]["input"];
|
name: Scalars["String"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
export type ShotAnnotationTypeGql = {
|
|
||||||
__typename?: "ShotAnnotationTypeGQL";
|
|
||||||
id: Scalars["Int"]["output"];
|
|
||||||
name: Scalars["String"]["output"];
|
|
||||||
};
|
|
||||||
|
|
||||||
export enum ShotDirectionEnum {
|
export enum ShotDirectionEnum {
|
||||||
Left = "LEFT",
|
Left = "LEFT",
|
||||||
Right = "RIGHT",
|
Right = "RIGHT",
|
||||||
|
@ -9,7 +9,6 @@ type Query {
|
|||||||
intervalDuration: Int! = 300
|
intervalDuration: Int! = 300
|
||||||
): [MakePercentageIntervalGQL!]!
|
): [MakePercentageIntervalGQL!]!
|
||||||
getShots(filterInput: FilterInput!): [ShotGQL!]!
|
getShots(filterInput: FilterInput!): [ShotGQL!]!
|
||||||
getShotAnnotationTypes: [ShotAnnotationTypeGQL!]!
|
|
||||||
getUser(userId: Int!): UserGQL
|
getUser(userId: Int!): UserGQL
|
||||||
getLoggedInUser: UserGQL
|
getLoggedInUser: UserGQL
|
||||||
getPlayTime(userId: Int!): UserPlayTimeGQL!
|
getPlayTime(userId: Int!): UserPlayTimeGQL!
|
||||||
@ -195,11 +194,6 @@ type UserGQL {
|
|||||||
updatedAt: DateTime
|
updatedAt: DateTime
|
||||||
}
|
}
|
||||||
|
|
||||||
type ShotAnnotationTypeGQL {
|
|
||||||
id: Int!
|
|
||||||
name: String!
|
|
||||||
}
|
|
||||||
|
|
||||||
type UserPlayTimeGQL {
|
type UserPlayTimeGQL {
|
||||||
totalSeconds: Float!
|
totalSeconds: Float!
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user