Create feed query
This commit is contained in:
parent
efaaeeaad1
commit
b16b36588f
@ -2066,6 +2066,7 @@ export type Query = {
|
||||
getAggregatedShotMetrics: Array<AggregateResultGql>;
|
||||
getBucketSet?: Maybe<BucketSetGql>;
|
||||
getDeployedConfig: DeployedConfigGql;
|
||||
getFeedVideos: VideoHistoryGql;
|
||||
getLoggedInUser?: Maybe<UserGql>;
|
||||
getOrderedShots: GetShotsResult;
|
||||
getPlayTime: UserPlayTimeGql;
|
||||
@ -2091,6 +2092,13 @@ export type QueryGetBucketSetArgs = {
|
||||
keyName: Scalars["String"]["input"];
|
||||
};
|
||||
|
||||
export type QueryGetFeedVideosArgs = {
|
||||
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||
filters?: InputMaybe<VideoFilterInput>;
|
||||
limit?: Scalars["Int"]["input"];
|
||||
userId?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
};
|
||||
|
||||
export type QueryGetOrderedShotsArgs = {
|
||||
filterInput: FilterInput;
|
||||
ids?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user