Compare commits
4 Commits
kat/get-us
...
kat/get-us
Author | SHA1 | Date | |
---|---|---|---|
9d8155527d | |||
8690e81029 | |||
4ef13a482a | |||
9db95c4e6c |
@@ -2154,6 +2154,7 @@ export enum ProcessingStatusEnum {
|
||||
|
||||
export type Query = {
|
||||
__typename?: "Query";
|
||||
doesUsernameExist: Scalars["Boolean"]["output"];
|
||||
getAggregatedShotMetrics: Array<AggregateResultGql>;
|
||||
getBucketSet?: Maybe<BucketSetGql>;
|
||||
getDeployedConfig: DeployedConfigGql;
|
||||
@@ -2176,6 +2177,10 @@ export type Query = {
|
||||
waitFor: Scalars["Float"]["output"];
|
||||
};
|
||||
|
||||
export type QueryDoesUsernameExistArgs = {
|
||||
candidateUsername: Scalars["String"]["input"];
|
||||
};
|
||||
|
||||
export type QueryGetAggregatedShotMetricsArgs = {
|
||||
aggregateInput: AggregateInputGql;
|
||||
};
|
||||
@@ -3197,14 +3202,13 @@ export type UnfollowUserMutation = {
|
||||
};
|
||||
|
||||
export type GetUserFollowingFollowersQueryVariables = Exact<{
|
||||
[key: string]: never;
|
||||
userId: Scalars["Int"]["input"];
|
||||
}>;
|
||||
|
||||
export type GetUserFollowingFollowersQuery = {
|
||||
__typename?: "Query";
|
||||
getLoggedInUser?: {
|
||||
getUser?: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
following?: Array<{
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -5470,9 +5474,8 @@ export type UnfollowUserMutationOptions = Apollo.BaseMutationOptions<
|
||||
UnfollowUserMutationVariables
|
||||
>;
|
||||
export const GetUserFollowingFollowersDocument = gql`
|
||||
query getUserFollowingFollowers {
|
||||
getLoggedInUser {
|
||||
id
|
||||
query getUserFollowingFollowers($userId: Int!) {
|
||||
getUser(userId: $userId) {
|
||||
following {
|
||||
id
|
||||
username
|
||||
@@ -5497,11 +5500,12 @@ export const GetUserFollowingFollowersDocument = gql`
|
||||
* @example
|
||||
* const { data, loading, error } = useGetUserFollowingFollowersQuery({
|
||||
* variables: {
|
||||
* userId: // value for 'userId'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
export function useGetUserFollowingFollowersQuery(
|
||||
baseOptions?: Apollo.QueryHookOptions<
|
||||
baseOptions: Apollo.QueryHookOptions<
|
||||
GetUserFollowingFollowersQuery,
|
||||
GetUserFollowingFollowersQueryVariables
|
||||
>,
|
||||
|
@@ -112,9 +112,8 @@ mutation unfollowUser($followedUserId: Int!) {
|
||||
}
|
||||
}
|
||||
|
||||
query getUserFollowingFollowers {
|
||||
getLoggedInUser {
|
||||
id
|
||||
query getUserFollowingFollowers($userId: Int!) {
|
||||
getUser(userId: $userId) {
|
||||
following {
|
||||
id
|
||||
username
|
||||
|
@@ -29,6 +29,7 @@ type Query {
|
||||
getShotsByIds(ids: [Int!]!): [ShotGQL!]!
|
||||
getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]!
|
||||
getUser(userId: Int!): UserGQL
|
||||
doesUsernameExist(candidateUsername: String!): Boolean!
|
||||
getLoggedInUser: UserGQL
|
||||
getUsernames(
|
||||
matchString: String = null
|
||||
|
Reference in New Issue
Block a user