Compare commits
12 Commits
kat/add-id
...
master
Author | SHA1 | Date | |
---|---|---|---|
872bce3adb | |||
12798e368c | |||
a3d6e6e19e | |||
f7a6e393e7 | |||
ee11e506ed | |||
90ec47848b | |||
21acb5219d | |||
087d511efc | |||
7cc0dca821 | |||
f826121aa3 | |||
2aadb8b49b | |||
5468b7ccda |
@ -2210,6 +2210,7 @@ export type QueryGetBucketSetArgs = {
|
||||
export type QueryGetFeedVideosArgs = {
|
||||
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||
filters?: InputMaybe<VideoFilterInput>;
|
||||
includeCallersVideos?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
limit?: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
@ -2609,6 +2610,7 @@ export type UserRelationshipsResult = {
|
||||
|
||||
export type VideoFilterInput = {
|
||||
createdAt?: InputMaybe<DateRangeFilter>;
|
||||
excludeVideosWithNoShots?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
requireCursorCompletion?: Scalars["Boolean"]["input"];
|
||||
};
|
||||
@ -2778,9 +2780,15 @@ export type GetFeedQuery = {
|
||||
updatedAt?: any | null;
|
||||
startTime?: any | null;
|
||||
endTime?: any | null;
|
||||
private: boolean;
|
||||
elapsedTime?: number | null;
|
||||
tableSize: number;
|
||||
owner?: { __typename?: "UserGQL"; username: string } | null;
|
||||
owner?: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
username: string;
|
||||
profileImageUri?: string | null;
|
||||
} | null;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
@ -2791,6 +2799,19 @@ export type GetFeedQuery = {
|
||||
name: string;
|
||||
tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>;
|
||||
}>;
|
||||
currentProcessing?: {
|
||||
__typename?: "VideoProcessingGQL";
|
||||
id: number;
|
||||
status: ProcessingStatusEnum;
|
||||
errors: Array<{
|
||||
__typename?: "VideoProcessingErrorGQL";
|
||||
message: string;
|
||||
}>;
|
||||
statuses: Array<{
|
||||
__typename?: "VideoProcessingStatusGQL";
|
||||
status: ProcessingStatusEnum;
|
||||
}>;
|
||||
} | null;
|
||||
}>;
|
||||
pageInfo: {
|
||||
__typename?: "PageInfoGQL";
|
||||
@ -2847,6 +2868,7 @@ export type GetVideoFeedQueryVariables = Exact<{
|
||||
limit?: Scalars["Int"]["input"];
|
||||
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||
filters?: InputMaybe<VideoFilterInput>;
|
||||
includeCallersVideos?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
}>;
|
||||
|
||||
export type GetVideoFeedQuery = {
|
||||
@ -3322,6 +3344,7 @@ export type GetLoggedInUserQuery = {
|
||||
|
||||
export type GetUserPlayTimeQueryVariables = Exact<{
|
||||
userId: Scalars["Int"]["input"];
|
||||
filters?: InputMaybe<VideoFilterInput>;
|
||||
}>;
|
||||
|
||||
export type GetUserPlayTimeQuery = {
|
||||
@ -4498,32 +4521,7 @@ export const GetFeedDocument = gql`
|
||||
) {
|
||||
getUserVideos(limit: $limit, after: $after, filters: $filters) {
|
||||
videos {
|
||||
id
|
||||
owner {
|
||||
username
|
||||
}
|
||||
name
|
||||
screenshotUri
|
||||
totalShotsMade
|
||||
totalShots
|
||||
makePercentage
|
||||
createdAt
|
||||
updatedAt
|
||||
startTime
|
||||
endTime
|
||||
elapsedTime
|
||||
screenshotUri
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
}
|
||||
tableSize
|
||||
tags {
|
||||
tagClasses {
|
||||
name
|
||||
}
|
||||
name
|
||||
}
|
||||
...VideoCardFields
|
||||
}
|
||||
pageInfo {
|
||||
hasNextPage
|
||||
@ -4531,6 +4529,7 @@ export const GetFeedDocument = gql`
|
||||
}
|
||||
}
|
||||
}
|
||||
${VideoCardFieldsFragmentDoc}
|
||||
`;
|
||||
|
||||
/**
|
||||
@ -4598,8 +4597,14 @@ export const GetVideoFeedDocument = gql`
|
||||
$limit: Int! = 5
|
||||
$after: String = null
|
||||
$filters: VideoFilterInput = null
|
||||
$includeCallersVideos: Boolean = null
|
||||
) {
|
||||
getFeedVideos(limit: $limit, after: $after, filters: $filters) {
|
||||
getFeedVideos(
|
||||
limit: $limit
|
||||
after: $after
|
||||
filters: $filters
|
||||
includeCallersVideos: $includeCallersVideos
|
||||
) {
|
||||
videos {
|
||||
...VideoCardFields
|
||||
}
|
||||
@ -4627,6 +4632,7 @@ export const GetVideoFeedDocument = gql`
|
||||
* limit: // value for 'limit'
|
||||
* after: // value for 'after'
|
||||
* filters: // value for 'filters'
|
||||
* includeCallersVideos: // value for 'includeCallersVideos'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
@ -5621,8 +5627,8 @@ export type GetLoggedInUserQueryResult = Apollo.QueryResult<
|
||||
GetLoggedInUserQueryVariables
|
||||
>;
|
||||
export const GetUserPlayTimeDocument = gql`
|
||||
query GetUserPlayTime($userId: Int!) {
|
||||
getPlayTime(userId: $userId) {
|
||||
query GetUserPlayTime($userId: Int!, $filters: VideoFilterInput) {
|
||||
getPlayTime(userId: $userId, filters: $filters) {
|
||||
totalSeconds
|
||||
}
|
||||
}
|
||||
@ -5641,6 +5647,7 @@ export const GetUserPlayTimeDocument = gql`
|
||||
* const { data, loading, error } = useGetUserPlayTimeQuery({
|
||||
* variables: {
|
||||
* userId: // value for 'userId'
|
||||
* filters: // value for 'filters'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
|
@ -6,32 +6,7 @@ query GetFeed(
|
||||
) {
|
||||
getUserVideos(limit: $limit, after: $after, filters: $filters) {
|
||||
videos {
|
||||
id
|
||||
owner {
|
||||
username
|
||||
}
|
||||
name
|
||||
screenshotUri
|
||||
totalShotsMade
|
||||
totalShots
|
||||
makePercentage
|
||||
createdAt
|
||||
updatedAt
|
||||
startTime
|
||||
endTime
|
||||
elapsedTime
|
||||
screenshotUri
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
}
|
||||
tableSize
|
||||
tags {
|
||||
tagClasses {
|
||||
name
|
||||
}
|
||||
name
|
||||
}
|
||||
...VideoCardFields
|
||||
}
|
||||
pageInfo {
|
||||
hasNextPage
|
||||
@ -86,8 +61,14 @@ query GetVideoFeed(
|
||||
$limit: Int! = 5
|
||||
$after: String = null
|
||||
$filters: VideoFilterInput = null
|
||||
$includeCallersVideos: Boolean = null
|
||||
) {
|
||||
getFeedVideos(limit: $limit, after: $after, filters: $filters) {
|
||||
getFeedVideos(
|
||||
limit: $limit
|
||||
after: $after
|
||||
filters: $filters
|
||||
includeCallersVideos: $includeCallersVideos
|
||||
) {
|
||||
videos {
|
||||
...VideoCardFields
|
||||
}
|
||||
|
@ -45,8 +45,8 @@ query getLoggedInUser {
|
||||
}
|
||||
}
|
||||
|
||||
query GetUserPlayTime($userId: Int!) {
|
||||
getPlayTime(userId: $userId) {
|
||||
query GetUserPlayTime($userId: Int!, $filters: VideoFilterInput) {
|
||||
getPlayTime(userId: $userId, filters: $filters) {
|
||||
totalSeconds
|
||||
}
|
||||
}
|
||||
|
@ -59,6 +59,7 @@ type Query {
|
||||
getFeedVideos(
|
||||
limit: Int! = 5
|
||||
after: String = null
|
||||
includeCallersVideos: Boolean = true
|
||||
filters: VideoFilterInput = null
|
||||
): VideoHistoryGQL!
|
||||
}
|
||||
@ -628,6 +629,7 @@ input VideoFilterInput {
|
||||
isStreamCompleted: Boolean = null
|
||||
requireCursorCompletion: Boolean! = true
|
||||
createdAt: DateRangeFilter = null
|
||||
excludeVideosWithNoShots: Boolean = null
|
||||
}
|
||||
|
||||
type VideoHistoryGQL {
|
||||
|
Loading…
Reference in New Issue
Block a user