Make startFrame endFrame required for Shot

This commit is contained in:
Kat Huang 2024-05-20 16:19:20 -06:00
parent b2db5bde2b
commit d94dbd6c03
2 changed files with 12 additions and 12 deletions

View File

@ -340,13 +340,13 @@ export type ShotGql = {
bankFeatures?: Maybe<BankFeaturesGql>;
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
cueObjectFeatures?: Maybe<CueObjectFeaturesGql>;
endFrame?: Maybe<Scalars["Int"]["output"]>;
id?: Maybe<Scalars["Int"]["output"]>;
endFrame: Scalars["Int"]["output"];
id: Scalars["Int"]["output"];
pocketingIntentionFeatures?: Maybe<PocketingIntentionFeaturesGql>;
startFrame?: Maybe<Scalars["Int"]["output"]>;
startFrame: Scalars["Int"]["output"];
updatedAt?: Maybe<Scalars["DateTime"]["output"]>;
user?: Maybe<UserGql>;
videoId?: Maybe<Scalars["Int"]["output"]>;
videoId: Scalars["Int"]["output"];
};
export type StreamErrorGql = {
@ -602,10 +602,10 @@ export type GetShotsQuery = {
__typename?: "Query";
getShots: Array<{
__typename?: "ShotGQL";
id?: number | null;
videoId?: number | null;
startFrame?: number | null;
endFrame?: number | null;
id: number;
videoId: number;
startFrame: number;
endFrame: number;
createdAt?: any | null;
updatedAt?: any | null;
cueObjectFeatures?: {

View File

@ -135,10 +135,10 @@ type MakePercentageIntervalGQL {
}
type ShotGQL {
id: Int
videoId: Int
startFrame: Int
endFrame: Int
id: Int!
videoId: Int!
startFrame: Int!
endFrame: Int!
createdAt: DateTime
updatedAt: DateTime
cueObjectFeatures: CueObjectFeaturesGQL