Require cursor completion

This commit is contained in:
Ivan Malison 2024-05-02 22:08:57 -06:00
parent b0c7de2e92
commit d4b75bcb71
2 changed files with 2 additions and 0 deletions

View File

@ -418,6 +418,7 @@ export type UserPlayTimeGql = {
export type VideoFilterInput = { export type VideoFilterInput = {
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>; isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
requireCursorCompletion?: Scalars["Boolean"]["input"];
}; };
export type VideoGql = { export type VideoGql = {

View File

@ -299,6 +299,7 @@ type PageInfoGQL {
input VideoFilterInput { input VideoFilterInput {
isStreamCompleted: Boolean = null isStreamCompleted: Boolean = null
requireCursorCompletion: Boolean! = true
} }
type Mutation { type Mutation {