Change feed operation to use limit instead of first in cursor

This commit is contained in:
2024-02-22 19:23:28 -07:00
parent 2ce41be8cc
commit 4b41d3b039
3 changed files with 356 additions and 637 deletions

View File

@@ -1,5 +1,5 @@
query GetFeed($first: Int! = 5, $after: String = null) {
getVideoFeedForUser(first: $first, after: $after) {
query GetFeed($limit: Int! = 5, $after: String = null) {
getVideoFeedForUser(limit: $limit, after: $after) {
videos {
id
name