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"]>;
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
filters?: InputMaybe<VideoFilterInput>;
|
filters?: InputMaybe<VideoFilterInput>;
|
||||||
includeCallersVideos?: InputMaybe<Scalars["Boolean"]["input"]>;
|
includeCallersVideos?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||||
|
includePrivate?: InputMaybe<IncludePrivateEnum>;
|
||||||
|
feedInput?: InputMaybe<VideoFeedInputGql>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export type GetVideoFeedQuery = {
|
export type GetVideoFeedQuery = {
|
||||||
@ -4939,12 +4941,16 @@ export const GetVideoFeedDocument = gql`
|
|||||||
$after: String = null
|
$after: String = null
|
||||||
$filters: VideoFilterInput = null
|
$filters: VideoFilterInput = null
|
||||||
$includeCallersVideos: Boolean = null
|
$includeCallersVideos: Boolean = null
|
||||||
|
$includePrivate: IncludePrivateEnum = MINE
|
||||||
|
$feedInput: VideoFeedInputGQL = null
|
||||||
) {
|
) {
|
||||||
getFeedVideos(
|
getFeedVideos(
|
||||||
limit: $limit
|
limit: $limit
|
||||||
after: $after
|
after: $after
|
||||||
filters: $filters
|
filters: $filters
|
||||||
includeCallersVideos: $includeCallersVideos
|
includeCallersVideos: $includeCallersVideos
|
||||||
|
includePrivate: $includePrivate
|
||||||
|
feedInput: $feedInput
|
||||||
) {
|
) {
|
||||||
videos {
|
videos {
|
||||||
...VideoCardFields
|
...VideoCardFields
|
||||||
@ -4974,6 +4980,8 @@ export const GetVideoFeedDocument = gql`
|
|||||||
* after: // value for 'after'
|
* after: // value for 'after'
|
||||||
* filters: // value for 'filters'
|
* filters: // value for 'filters'
|
||||||
* includeCallersVideos: // value for 'includeCallersVideos'
|
* includeCallersVideos: // value for 'includeCallersVideos'
|
||||||
|
* includePrivate: // value for 'includePrivate'
|
||||||
|
* feedInput: // value for 'feedInput'
|
||||||
* },
|
* },
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
|
@ -62,12 +62,16 @@ query GetVideoFeed(
|
|||||||
$after: String = null
|
$after: String = null
|
||||||
$filters: VideoFilterInput = null
|
$filters: VideoFilterInput = null
|
||||||
$includeCallersVideos: Boolean = null
|
$includeCallersVideos: Boolean = null
|
||||||
|
$includePrivate: IncludePrivateEnum = MINE
|
||||||
|
$feedInput: VideoFeedInputGQL = null
|
||||||
) {
|
) {
|
||||||
getFeedVideos(
|
getFeedVideos(
|
||||||
limit: $limit
|
limit: $limit
|
||||||
after: $after
|
after: $after
|
||||||
filters: $filters
|
filters: $filters
|
||||||
includeCallersVideos: $includeCallersVideos
|
includeCallersVideos: $includeCallersVideos
|
||||||
|
includePrivate: $includePrivate
|
||||||
|
feedInput: $feedInput
|
||||||
) {
|
) {
|
||||||
videos {
|
videos {
|
||||||
...VideoCardFields
|
...VideoCardFields
|
||||||
|
Loading…
Reference in New Issue
Block a user