Compare commits
11 Commits
volodymyr/
...
kat/update
Author | SHA1 | Date | |
---|---|---|---|
24d9b9225e | |||
f6f6404302 | |||
4609af726b | |||
c5919c90d0 | |||
605adc3293 | |||
b40554d38d | |||
194d7c66a0 | |||
3adc301935 | |||
9232c673e8 | |||
c2cb411469 | |||
44ddc732a1 |
@@ -2508,11 +2508,11 @@ export type UserGql = {
|
||||
activeVideoId?: Maybe<Scalars["Int"]["output"]>;
|
||||
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
fargoRating?: Maybe<Scalars["Int"]["output"]>;
|
||||
firebaseUid: Scalars["String"]["output"];
|
||||
firebaseUid?: Maybe<Scalars["String"]["output"]>;
|
||||
followers?: Maybe<Array<Scalars["Int"]["output"]>>;
|
||||
following?: Maybe<Array<Scalars["Int"]["output"]>>;
|
||||
id: Scalars["Int"]["output"];
|
||||
isAdmin: Scalars["Boolean"]["output"];
|
||||
isAdmin?: Maybe<Scalars["Boolean"]["output"]>;
|
||||
profileImageUri?: Maybe<Scalars["String"]["output"]>;
|
||||
updatedAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
username: Scalars["String"]["output"];
|
||||
@@ -2527,7 +2527,7 @@ export type UsernamesAndFollowingResponse = {
|
||||
__typename?: "UsernamesAndFollowingResponse";
|
||||
followers: Array<Scalars["Int"]["output"]>;
|
||||
following: Array<Scalars["Int"]["output"]>;
|
||||
usernames: Array<Scalars["String"]["output"]>;
|
||||
users: Array<UserGql>;
|
||||
};
|
||||
|
||||
export type VideoFilterInput = {
|
||||
@@ -2700,7 +2700,11 @@ export type GetFeedQuery = {
|
||||
elapsedTime?: number | null;
|
||||
tableSize: number;
|
||||
owner?: { __typename?: "UserGQL"; username: string } | null;
|
||||
stream?: { __typename?: "UploadStreamGQL"; isCompleted: boolean } | null;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
isCompleted: boolean;
|
||||
} | null;
|
||||
tags: Array<{
|
||||
__typename?: "VideoTag";
|
||||
name: string;
|
||||
@@ -3085,7 +3089,7 @@ export type EditProfileImageUriMutation = {
|
||||
editProfileImageUri: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
firebaseUid: string;
|
||||
firebaseUid?: string | null;
|
||||
username: string;
|
||||
profileImageUri?: string | null;
|
||||
createdAt?: any | null;
|
||||
@@ -3100,9 +3104,9 @@ export type GetLoggedInUserQuery = {
|
||||
getLoggedInUser?: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
firebaseUid: string;
|
||||
firebaseUid?: string | null;
|
||||
username: string;
|
||||
isAdmin: boolean;
|
||||
isAdmin?: boolean | null;
|
||||
profileImageUri?: string | null;
|
||||
activeVideoId?: number | null;
|
||||
createdAt?: any | null;
|
||||
@@ -3143,7 +3147,6 @@ export type GetUsernamesAndFollowingQuery = {
|
||||
__typename?: "UsernamesAndFollowingResponse";
|
||||
followers: Array<number>;
|
||||
following: Array<number>;
|
||||
usernames: Array<string>;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -3272,7 +3275,7 @@ export type GetVideoDetailsQuery = {
|
||||
owner?: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
firebaseUid: string;
|
||||
firebaseUid?: string | null;
|
||||
username: string;
|
||||
profileImageUri?: string | null;
|
||||
} | null;
|
||||
@@ -4053,6 +4056,7 @@ export const GetFeedDocument = gql`
|
||||
elapsedTime
|
||||
screenshotUri
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
}
|
||||
tableSize
|
||||
@@ -5134,7 +5138,6 @@ export const GetUsernamesAndFollowingDocument = gql`
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernames
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
@@ -21,6 +21,7 @@ query GetFeed(
|
||||
elapsedTime
|
||||
screenshotUri
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
}
|
||||
tableSize
|
||||
|
@@ -71,7 +71,6 @@ query getUsernamesAndFollowing(
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernames
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -341,9 +341,9 @@ type SerializedShotPathsGQL {
|
||||
|
||||
type UserGQL {
|
||||
id: Int!
|
||||
firebaseUid: String!
|
||||
firebaseUid: String
|
||||
username: String!
|
||||
isAdmin: Boolean!
|
||||
isAdmin: Boolean
|
||||
fargoRating: Int
|
||||
activeVideoId: Int
|
||||
profileImageUri: String
|
||||
@@ -555,7 +555,7 @@ input CreatedAfter @oneOf {
|
||||
}
|
||||
|
||||
type UsernamesAndFollowingResponse {
|
||||
usernames: [String!]!
|
||||
users: [UserGQL!]!
|
||||
following: [Int!]!
|
||||
followers: [Int!]!
|
||||
}
|
||||
|
Reference in New Issue
Block a user