Use get feed videos
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
Kat Huang 2024-11-04 14:59:39 -07:00
parent 014aab473b
commit 42502772f5
2 changed files with 3 additions and 3 deletions

View File

@ -2750,7 +2750,7 @@ export type GetFeedQueryVariables = Exact<{
export type GetFeedQuery = {
__typename?: "Query";
getUserVideos: {
getFeedVideos: {
__typename?: "VideoHistoryGQL";
videos: Array<{
__typename?: "VideoGQL";
@ -4188,7 +4188,7 @@ export const GetFeedDocument = gql`
$after: String = null
$filters: VideoFilterInput = null
) {
getUserVideos(limit: $limit, after: $after, filters: $filters) {
getFeedVideos(limit: $limit, after: $after, filters: $filters) {
videos {
id
owner {

View File

@ -3,7 +3,7 @@ query GetFeed(
$after: String = null
$filters: VideoFilterInput = null
) {
getUserVideos(limit: $limit, after: $after, filters: $filters) {
getFeedVideos(limit: $limit, after: $after, filters: $filters) {
videos {
id
owner {