Merge pull request 'Return ShotGQL w/ updateShotAnnotations' (#84) from loewy/annotations-return into master

Reviewed-on: #84
Reviewed-by: Ivan Malison <ivanmalison@gmail.com>
This commit is contained in:
loewy 2024-10-24 10:54:05 -06:00
commit 8246699915
3 changed files with 48 additions and 52 deletions

View File

@ -2412,15 +2412,6 @@ export type SuccessfulAddAddShotAnnotationErrors =
| AddShotAnnotationErrors | AddShotAnnotationErrors
| SuccessfulAdd; | SuccessfulAdd;
export type SuccessfulUpdate = {
__typename?: "SuccessfulUpdate";
value: Scalars["Boolean"]["output"];
};
export type SuccessfulUpdateUpdateShotAnnotationErrors =
| SuccessfulUpdate
| UpdateShotAnnotationErrors;
export type TagGql = { export type TagGql = {
__typename?: "TagGQL"; __typename?: "TagGQL";
group?: Maybe<Scalars["String"]["output"]>; group?: Maybe<Scalars["String"]["output"]>;
@ -2463,14 +2454,10 @@ export type UpdateAnnotationInputGql = {
notes?: InputMaybe<Scalars["String"]["input"]>; notes?: InputMaybe<Scalars["String"]["input"]>;
}; };
export type UpdateShotAnnotationErrors = {
__typename?: "UpdateShotAnnotationErrors";
error?: Maybe<DoesNotOwnShotErr>;
};
export type UpdateShotAnnotationReturn = { export type UpdateShotAnnotationReturn = {
__typename?: "UpdateShotAnnotationReturn"; __typename?: "UpdateShotAnnotationReturn";
value: SuccessfulUpdateUpdateShotAnnotationErrors; error?: Maybe<DoesNotOwnShotErr>;
shot?: Maybe<ShotGql>;
}; };
export type UploadLink = { export type UploadLink = {
@ -2783,17 +2770,27 @@ export type UpdateShotAnnotationsMutation = {
__typename?: "Mutation"; __typename?: "Mutation";
updateShotAnnotations: { updateShotAnnotations: {
__typename?: "UpdateShotAnnotationReturn"; __typename?: "UpdateShotAnnotationReturn";
value: shot?: {
| { __typename?: "SuccessfulUpdate"; value: boolean } __typename?: "ShotGQL";
| { id: number;
__typename?: "UpdateShotAnnotationErrors"; annotations: Array<{
__typename?: "ShotAnnotationGQL";
shotId: number;
notes: string;
errorDefault: boolean;
type: {
__typename?: "ShotAnnotationTypeGQL";
id: number;
name: string;
};
}>;
} | null;
error?: { error?: {
__typename?: "DoesNotOwnShotErr"; __typename?: "DoesNotOwnShotErr";
shotId: number; shotId: number;
msg?: string | null; msg?: string | null;
} | null; } | null;
}; };
};
}; };
export type GetShotsWithVideoGqlQueryVariables = Exact<{ export type GetShotsWithVideoGqlQueryVariables = Exact<{
@ -4372,19 +4369,24 @@ export const UpdateShotAnnotationsDocument = gql`
$annotations: [UpdateAnnotationInputGQL!]! $annotations: [UpdateAnnotationInputGQL!]!
) { ) {
updateShotAnnotations(shotId: $shotId, annotations: $annotations) { updateShotAnnotations(shotId: $shotId, annotations: $annotations) {
value { shot {
... on SuccessfulUpdate { id
value annotations {
shotId
type {
id
name
}
notes
errorDefault
}
} }
... on UpdateShotAnnotationErrors {
error { error {
shotId shotId
msg msg
} }
} }
} }
}
}
`; `;
export type UpdateShotAnnotationsMutationFn = Apollo.MutationFunction< export type UpdateShotAnnotationsMutationFn = Apollo.MutationFunction<
UpdateShotAnnotationsMutation, UpdateShotAnnotationsMutation,

View File

@ -22,18 +22,23 @@ mutation UpdateShotAnnotations(
$annotations: [UpdateAnnotationInputGQL!]! $annotations: [UpdateAnnotationInputGQL!]!
) { ) {
updateShotAnnotations(shotId: $shotId, annotations: $annotations) { updateShotAnnotations(shotId: $shotId, annotations: $annotations) {
value { shot {
... on SuccessfulUpdate { id
value annotations {
shotId
type {
id
name
}
notes
errorDefault
}
} }
... on UpdateShotAnnotationErrors {
error { error {
shotId shotId
msg msg
} }
} }
}
}
} }
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) { query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {

View File

@ -662,18 +662,7 @@ type OtherErrorNeedsNote {
} }
type UpdateShotAnnotationReturn { type UpdateShotAnnotationReturn {
value: SuccessfulUpdateUpdateShotAnnotationErrors! shot: ShotGQL
}
union SuccessfulUpdateUpdateShotAnnotationErrors =
SuccessfulUpdate
| UpdateShotAnnotationErrors
type SuccessfulUpdate {
value: Boolean!
}
type UpdateShotAnnotationErrors {
error: DoesNotOwnShotErr error: DoesNotOwnShotErr
} }