Add annotations to shot gql
This commit is contained in:
parent
d669dba320
commit
dc214e878f
@ -1006,6 +1006,16 @@ export type SerializedShotPathsGql = {
|
||||
b64EncodedBuffer?: Maybe<Scalars["String"]["output"]>;
|
||||
};
|
||||
|
||||
export type ShotAnnotationGql = {
|
||||
__typename?: "ShotAnnotationGQL";
|
||||
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
creator: UserGql;
|
||||
notes: Scalars["String"]["output"];
|
||||
shotId: Scalars["Int"]["output"];
|
||||
type: ShotAnnotationTypeGql;
|
||||
updatedAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
};
|
||||
|
||||
export type ShotAnnotationInput = {
|
||||
name: Scalars["String"]["input"];
|
||||
};
|
||||
@ -1024,6 +1034,7 @@ export enum ShotDirectionEnum {
|
||||
|
||||
export type ShotGql = {
|
||||
__typename?: "ShotGQL";
|
||||
annotations: Array<ShotAnnotationGql>;
|
||||
bankFeatures?: Maybe<BankFeaturesGql>;
|
||||
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
cueObjectFeatures?: Maybe<CueObjectFeaturesGql>;
|
||||
|
@ -160,6 +160,7 @@ type ShotGQL {
|
||||
bankFeatures: BankFeaturesGQL
|
||||
serializedShotPaths: SerializedShotPathsGQL
|
||||
user: UserGQL
|
||||
annotations: [ShotAnnotationGQL!]!
|
||||
}
|
||||
|
||||
"""
|
||||
@ -207,6 +208,15 @@ type UserGQL {
|
||||
updatedAt: DateTime
|
||||
}
|
||||
|
||||
type ShotAnnotationGQL {
|
||||
shotId: Int!
|
||||
type: ShotAnnotationTypeGQL!
|
||||
creator: UserGQL!
|
||||
notes: String!
|
||||
createdAt: DateTime
|
||||
updatedAt: DateTime
|
||||
}
|
||||
|
||||
type ShotAnnotationTypeGQL {
|
||||
id: Int!
|
||||
name: String!
|
||||
|
Loading…
Reference in New Issue
Block a user