Change feed operation to use limit instead of first in cursor
This commit is contained in:
@@ -5,7 +5,7 @@ type Query {
|
||||
getVideo(videoId: Int!): VideoGQL!
|
||||
getShots(filterInput: FilterInput = null): [ShotGQL!]!
|
||||
getBucketSet(keyName: String!): BucketSetGQL
|
||||
getVideoFeedForUser(first: Int! = 5, after: String = null): VideoFeedGQL!
|
||||
getVideoFeedForUser(limit: Int! = 5, after: String = null): VideoFeedGQL!
|
||||
}
|
||||
|
||||
type AggregateResultGQL {
|
||||
@@ -49,9 +49,7 @@ type UserGQL {
|
||||
statistics: UserStatisticsGQL!
|
||||
}
|
||||
|
||||
"""
|
||||
Date with time (isoformat)
|
||||
"""
|
||||
"""Date with time (isoformat)"""
|
||||
scalar DateTime
|
||||
|
||||
type UserStatisticsGQL {
|
||||
@@ -63,9 +61,7 @@ type UserStatisticsGQL {
|
||||
medianRun: Decimal
|
||||
}
|
||||
|
||||
"""
|
||||
Decimal (fixed-point)
|
||||
"""
|
||||
"""Decimal (fixed-point)"""
|
||||
scalar Decimal
|
||||
|
||||
type VideoGQL {
|
||||
@@ -241,17 +237,9 @@ type PageInfoGQL {
|
||||
|
||||
type Mutation {
|
||||
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
|
||||
createUploadStream(
|
||||
uploadMetadata: UploadMetadataInput
|
||||
videoName: String = null
|
||||
): CreateUploadStreamReturn!
|
||||
createUploadStream(uploadMetadata: UploadMetadataInput, videoName: String = null): CreateUploadStreamReturn!
|
||||
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
||||
terminateUploadStream(
|
||||
videoId: Int!
|
||||
videoName: String = null
|
||||
gameType: String = null
|
||||
tableSize: String = null
|
||||
): Boolean!
|
||||
terminateUploadStream(videoId: Int!, videoName: String = null, gameType: String = null, tableSize: String = null): Boolean!
|
||||
}
|
||||
|
||||
input CreateBucketSetInput {
|
||||
|
Reference in New Issue
Block a user