Compare commits
	
		
			6 Commits
		
	
	
		
			9db95c4e6c
			...
			kat/use-lo
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| de9e7dea6a | |||
| 05e3182e8b | |||
| f6e4a1bc0b | |||
| 9d8155527d | |||
| 8690e81029 | |||
| 4ef13a482a | 
| @@ -2154,6 +2154,7 @@ export enum ProcessingStatusEnum { | |||||||
|  |  | ||||||
| export type Query = { | export type Query = { | ||||||
|   __typename?: "Query"; |   __typename?: "Query"; | ||||||
|  |   doesUsernameExist: Scalars["Boolean"]["output"]; | ||||||
|   getAggregatedShotMetrics: Array<AggregateResultGql>; |   getAggregatedShotMetrics: Array<AggregateResultGql>; | ||||||
|   getBucketSet?: Maybe<BucketSetGql>; |   getBucketSet?: Maybe<BucketSetGql>; | ||||||
|   getDeployedConfig: DeployedConfigGql; |   getDeployedConfig: DeployedConfigGql; | ||||||
| @@ -2176,6 +2177,10 @@ export type Query = { | |||||||
|   waitFor: Scalars["Float"]["output"]; |   waitFor: Scalars["Float"]["output"]; | ||||||
| }; | }; | ||||||
|  |  | ||||||
|  | export type QueryDoesUsernameExistArgs = { | ||||||
|  |   candidateUsername: Scalars["String"]["input"]; | ||||||
|  | }; | ||||||
|  |  | ||||||
| export type QueryGetAggregatedShotMetricsArgs = { | export type QueryGetAggregatedShotMetricsArgs = { | ||||||
|   aggregateInput: AggregateInputGql; |   aggregateInput: AggregateInputGql; | ||||||
| }; | }; | ||||||
| @@ -3177,8 +3182,17 @@ export type FollowUserMutation = { | |||||||
|   followUser: { |   followUser: { | ||||||
|     __typename?: "UserGQL"; |     __typename?: "UserGQL"; | ||||||
|     username: string; |     username: string; | ||||||
|     following?: Array<{ __typename?: "UserGQL"; id: number }> | null; |     id: number; | ||||||
|     followers?: Array<{ __typename?: "UserGQL"; id: number }> | null; |     following?: Array<{ | ||||||
|  |       __typename?: "UserGQL"; | ||||||
|  |       id: number; | ||||||
|  |       username: string; | ||||||
|  |     }> | null; | ||||||
|  |     followers?: Array<{ | ||||||
|  |       __typename?: "UserGQL"; | ||||||
|  |       id: number; | ||||||
|  |       username: string; | ||||||
|  |     }> | null; | ||||||
|   }; |   }; | ||||||
| }; | }; | ||||||
|  |  | ||||||
| @@ -3191,8 +3205,17 @@ export type UnfollowUserMutation = { | |||||||
|   unfollowUser: { |   unfollowUser: { | ||||||
|     __typename?: "UserGQL"; |     __typename?: "UserGQL"; | ||||||
|     username: string; |     username: string; | ||||||
|     following?: Array<{ __typename?: "UserGQL"; id: number }> | null; |     id: number; | ||||||
|     followers?: Array<{ __typename?: "UserGQL"; id: number }> | null; |     following?: Array<{ | ||||||
|  |       __typename?: "UserGQL"; | ||||||
|  |       id: number; | ||||||
|  |       username: string; | ||||||
|  |     }> | null; | ||||||
|  |     followers?: Array<{ | ||||||
|  |       __typename?: "UserGQL"; | ||||||
|  |       id: number; | ||||||
|  |       username: string; | ||||||
|  |     }> | null; | ||||||
|   }; |   }; | ||||||
| }; | }; | ||||||
|  |  | ||||||
| @@ -5361,11 +5384,14 @@ export const FollowUserDocument = gql` | |||||||
|   mutation followUser($followedUserId: Int!) { |   mutation followUser($followedUserId: Int!) { | ||||||
|     followUser(followedUserId: $followedUserId) { |     followUser(followedUserId: $followedUserId) { | ||||||
|       username |       username | ||||||
|  |       id | ||||||
|       following { |       following { | ||||||
|         id |         id | ||||||
|  |         username | ||||||
|       } |       } | ||||||
|       followers { |       followers { | ||||||
|         id |         id | ||||||
|  |         username | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
| @@ -5417,11 +5443,14 @@ export const UnfollowUserDocument = gql` | |||||||
|   mutation unfollowUser($followedUserId: Int!) { |   mutation unfollowUser($followedUserId: Int!) { | ||||||
|     unfollowUser(followedUserId: $followedUserId) { |     unfollowUser(followedUserId: $followedUserId) { | ||||||
|       username |       username | ||||||
|  |       id | ||||||
|       following { |       following { | ||||||
|         id |         id | ||||||
|  |         username | ||||||
|       } |       } | ||||||
|       followers { |       followers { | ||||||
|         id |         id | ||||||
|  |         username | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|   | |||||||
| @@ -91,11 +91,14 @@ query GetUserTags { | |||||||
| mutation followUser($followedUserId: Int!) { | mutation followUser($followedUserId: Int!) { | ||||||
|   followUser(followedUserId: $followedUserId) { |   followUser(followedUserId: $followedUserId) { | ||||||
|     username |     username | ||||||
|  |     id | ||||||
|     following { |     following { | ||||||
|       id |       id | ||||||
|  |       username | ||||||
|     } |     } | ||||||
|     followers { |     followers { | ||||||
|       id |       id | ||||||
|  |       username | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
| } | } | ||||||
| @@ -103,11 +106,14 @@ mutation followUser($followedUserId: Int!) { | |||||||
| mutation unfollowUser($followedUserId: Int!) { | mutation unfollowUser($followedUserId: Int!) { | ||||||
|   unfollowUser(followedUserId: $followedUserId) { |   unfollowUser(followedUserId: $followedUserId) { | ||||||
|     username |     username | ||||||
|  |     id | ||||||
|     following { |     following { | ||||||
|       id |       id | ||||||
|  |       username | ||||||
|     } |     } | ||||||
|     followers { |     followers { | ||||||
|       id |       id | ||||||
|  |       username | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -29,6 +29,7 @@ type Query { | |||||||
|   getShotsByIds(ids: [Int!]!): [ShotGQL!]! |   getShotsByIds(ids: [Int!]!): [ShotGQL!]! | ||||||
|   getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]! |   getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]! | ||||||
|   getUser(userId: Int!): UserGQL |   getUser(userId: Int!): UserGQL | ||||||
|  |   doesUsernameExist(candidateUsername: String!): Boolean! | ||||||
|   getLoggedInUser: UserGQL |   getLoggedInUser: UserGQL | ||||||
|   getUsernames( |   getUsernames( | ||||||
|     matchString: String = null |     matchString: String = null | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user