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