Merge pull request 'Add debugJson to getStreamMonitoringDetails' (#34) from loewy/add-debug-json into master
Reviewed-on: #34
This commit is contained in:
commit
3480637600
@ -1729,6 +1729,7 @@ export type GetUsernamesQuery = {
|
|||||||
|
|
||||||
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
||||||
videoId: Scalars["Int"]["input"];
|
videoId: Scalars["Int"]["input"];
|
||||||
|
debuggingJson?: InputMaybe<Scalars["JSON"]["input"]>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export type GetStreamMonitoringDetailsQuery = {
|
export type GetStreamMonitoringDetailsQuery = {
|
||||||
@ -2993,8 +2994,8 @@ export type GetUsernamesQueryResult = Apollo.QueryResult<
|
|||||||
GetUsernamesQueryVariables
|
GetUsernamesQueryVariables
|
||||||
>;
|
>;
|
||||||
export const GetStreamMonitoringDetailsDocument = gql`
|
export const GetStreamMonitoringDetailsDocument = gql`
|
||||||
query GetStreamMonitoringDetails($videoId: Int!) {
|
query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
||||||
getVideo(videoId: $videoId) {
|
getVideo(videoId: $videoId, debuggingJson: $debuggingJson) {
|
||||||
id
|
id
|
||||||
totalShots
|
totalShots
|
||||||
makePercentage
|
makePercentage
|
||||||
@ -3072,6 +3073,7 @@ export const GetStreamMonitoringDetailsDocument = gql`
|
|||||||
* const { data, loading, error } = useGetStreamMonitoringDetailsQuery({
|
* const { data, loading, error } = useGetStreamMonitoringDetailsQuery({
|
||||||
* variables: {
|
* variables: {
|
||||||
* videoId: // value for 'videoId'
|
* videoId: // value for 'videoId'
|
||||||
|
* debuggingJson: // value for 'debuggingJson'
|
||||||
* },
|
* },
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
query GetStreamMonitoringDetails($videoId: Int!) {
|
query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
||||||
getVideo(videoId: $videoId) {
|
getVideo(videoId: $videoId, debuggingJson: $debuggingJson) {
|
||||||
id
|
id
|
||||||
totalShots
|
totalShots
|
||||||
makePercentage
|
makePercentage
|
||||||
|
Loading…
Reference in New Issue
Block a user