From d4b75bcb718d770c22da85e761adf2890766cafe Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 2 May 2024 22:08:57 -0600 Subject: [PATCH] Require cursor completion --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index abf7e70..bb0fc26 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -418,6 +418,7 @@ export type UserPlayTimeGql = { export type VideoFilterInput = { isStreamCompleted?: InputMaybe; + requireCursorCompletion?: Scalars["Boolean"]["input"]; }; export type VideoGql = { diff --git a/src/schema.gql b/src/schema.gql index d8c91be..951a0af 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -299,6 +299,7 @@ type PageInfoGQL { input VideoFilterInput { isStreamCompleted: Boolean = null + requireCursorCompletion: Boolean! = true } type Mutation {