|
|
|
@@ -1600,7 +1600,7 @@ export type GetVideoMakePercentageIntervalsQuery = {
|
|
|
|
|
|
|
|
|
|
export type GetShotsQueryVariables = Exact<{
|
|
|
|
|
filterInput: FilterInput;
|
|
|
|
|
shotsPagination: GetShotsPagination;
|
|
|
|
|
shotsPagination?: InputMaybe<GetShotsPagination>;
|
|
|
|
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
includeCreatedAt?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeUpdatedAt?: Scalars["Boolean"]["input"];
|
|
|
|
@@ -1729,6 +1729,7 @@ export type GetUsernamesQuery = {
|
|
|
|
|
|
|
|
|
|
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
|
|
|
|
videoId: Scalars["Int"]["input"];
|
|
|
|
|
debuggingJson?: InputMaybe<Scalars["JSON"]["input"]>;
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
export type GetStreamMonitoringDetailsQuery = {
|
|
|
|
@@ -2462,7 +2463,7 @@ export type GetVideoMakePercentageIntervalsQueryResult = Apollo.QueryResult<
|
|
|
|
|
export const GetShotsDocument = gql`
|
|
|
|
|
query GetShots(
|
|
|
|
|
$filterInput: FilterInput!
|
|
|
|
|
$shotsPagination: GetShotsPagination!
|
|
|
|
|
$shotsPagination: GetShotsPagination = null
|
|
|
|
|
$limit: Int
|
|
|
|
|
$includeCreatedAt: Boolean! = false
|
|
|
|
|
$includeUpdatedAt: Boolean! = false
|
|
|
|
@@ -2993,8 +2994,8 @@ export type GetUsernamesQueryResult = Apollo.QueryResult<
|
|
|
|
|
GetUsernamesQueryVariables
|
|
|
|
|
>;
|
|
|
|
|
export const GetStreamMonitoringDetailsDocument = gql`
|
|
|
|
|
query GetStreamMonitoringDetails($videoId: Int!) {
|
|
|
|
|
getVideo(videoId: $videoId) {
|
|
|
|
|
query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
|
|
|
|
getVideo(videoId: $videoId, debuggingJson: $debuggingJson) {
|
|
|
|
|
id
|
|
|
|
|
totalShots
|
|
|
|
|
makePercentage
|
|
|
|
@@ -3072,6 +3073,7 @@ export const GetStreamMonitoringDetailsDocument = gql`
|
|
|
|
|
* const { data, loading, error } = useGetStreamMonitoringDetailsQuery({
|
|
|
|
|
* variables: {
|
|
|
|
|
* videoId: // value for 'videoId'
|
|
|
|
|
* debuggingJson: // value for 'debuggingJson'
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|