update notif operations
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
2025-11-06 12:35:51 -08:00
parent 056399b6c3
commit ba7db21641
2 changed files with 9 additions and 0 deletions

View File

@@ -5213,6 +5213,9 @@ export type GetVideoSocialDetailsByIdQuery = {
__typename?: "VideoGQL"; __typename?: "VideoGQL";
id: number; id: number;
name?: string | null; name?: string | null;
screenshotUri?: string | null;
makePercentage: number;
totalShots: number;
owner?: { owner?: {
__typename?: "UserGQL"; __typename?: "UserGQL";
id: number; id: number;
@@ -10259,6 +10262,9 @@ export const GetVideoSocialDetailsByIdDocument = gql`
getVideo(videoId: $videoId) { getVideo(videoId: $videoId) {
id id
name name
screenshotUri
makePercentage
totalShots
owner { owner {
id id
firebaseUid firebaseUid

View File

@@ -97,6 +97,9 @@ query GetVideoSocialDetailsById($videoId: Int!) {
getVideo(videoId: $videoId) { getVideo(videoId: $videoId) {
id id
name name
screenshotUri
makePercentage
totalShots
owner { owner {
id id
firebaseUid firebaseUid