Update getFeed operation
This commit is contained in:
parent
9d0ba908dc
commit
33886b4e9e
@ -2996,6 +2996,8 @@ export type GetVideoFeedQueryVariables = Exact<{
|
||||
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||
filters?: InputMaybe<VideoFilterInput>;
|
||||
includeCallersVideos?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
includePrivate?: InputMaybe<IncludePrivateEnum>;
|
||||
feedInput?: InputMaybe<VideoFeedInputGql>;
|
||||
}>;
|
||||
|
||||
export type GetVideoFeedQuery = {
|
||||
@ -4939,12 +4941,16 @@ export const GetVideoFeedDocument = gql`
|
||||
$after: String = null
|
||||
$filters: VideoFilterInput = null
|
||||
$includeCallersVideos: Boolean = null
|
||||
$includePrivate: IncludePrivateEnum = MINE
|
||||
$feedInput: VideoFeedInputGQL = null
|
||||
) {
|
||||
getFeedVideos(
|
||||
limit: $limit
|
||||
after: $after
|
||||
filters: $filters
|
||||
includeCallersVideos: $includeCallersVideos
|
||||
includePrivate: $includePrivate
|
||||
feedInput: $feedInput
|
||||
) {
|
||||
videos {
|
||||
...VideoCardFields
|
||||
@ -4974,6 +4980,8 @@ export const GetVideoFeedDocument = gql`
|
||||
* after: // value for 'after'
|
||||
* filters: // value for 'filters'
|
||||
* includeCallersVideos: // value for 'includeCallersVideos'
|
||||
* includePrivate: // value for 'includePrivate'
|
||||
* feedInput: // value for 'feedInput'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
|
@ -62,12 +62,16 @@ query GetVideoFeed(
|
||||
$after: String = null
|
||||
$filters: VideoFilterInput = null
|
||||
$includeCallersVideos: Boolean = null
|
||||
$includePrivate: IncludePrivateEnum = MINE
|
||||
$feedInput: VideoFeedInputGQL = null
|
||||
) {
|
||||
getFeedVideos(
|
||||
limit: $limit
|
||||
after: $after
|
||||
filters: $filters
|
||||
includeCallersVideos: $includeCallersVideos
|
||||
includePrivate: $includePrivate
|
||||
feedInput: $feedInput
|
||||
) {
|
||||
videos {
|
||||
...VideoCardFields
|
||||
|
Loading…
Reference in New Issue
Block a user