Compare commits

...

2 Commits

Author SHA1 Message Date
9b27d288da Merge pull request 'Add shots to runs operation to get the id' (#162) from loewy/add-shots-in-runs into master
Reviewed-on: #162
2025-02-20 15:02:43 -07:00
b0f94f5ea8 add shots to runs to get id
All checks were successful
Tests / Tests (pull_request) Successful in 9s
2025-02-20 12:37:52 -08:00
2 changed files with 9 additions and 0 deletions

View File

@ -3407,6 +3407,7 @@ export type GetRunsForHighlightsQuery = {
runLength: number;
userId: number;
videoId: number;
shots: Array<{ __typename?: "ShotGQL"; videoId: number; id: number }>;
}>;
};
};
@ -5769,6 +5770,10 @@ export const GetRunsForHighlightsDocument = gql`
runLength
userId
videoId
shots {
videoId
id
}
}
runIds
}

View File

@ -14,6 +14,10 @@ query GetRunsForHighlights(
runLength
userId
videoId
shots {
videoId
id
}
}
runIds
}