Create feed query

This commit is contained in:
2024-10-20 23:35:52 -06:00
parent efaaeeaad1
commit b16b36588f
2 changed files with 14 additions and 0 deletions

View File

@@ -45,6 +45,12 @@ type Query {
getUserTags: [TagGQL!]!
getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL!
getVideos(videoIds: [Int!]!): [VideoGQL!]!
getFeedVideos(
userId: Int = null
limit: Int! = 5
after: String = null
filters: VideoFilterInput = null
): VideoHistoryGQL!
}
type AggregateResultGQL {