Make startFrame endFrame required for Shot
This commit is contained in:
@@ -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?: {
|
||||
|
||||
Reference in New Issue
Block a user