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

View File

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