Return id for cache; #107
@ -3182,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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -3196,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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -3209,6 +3227,7 @@ export type GetUserFollowingFollowersQuery = {
|
|||||||
__typename?: "Query";
|
__typename?: "Query";
|
||||||
getLoggedInUser?: {
|
getLoggedInUser?: {
|
||||||
__typename?: "UserGQL";
|
__typename?: "UserGQL";
|
||||||
|
id: number;
|
||||||
following?: Array<{
|
following?: Array<{
|
||||||
__typename?: "UserGQL";
|
__typename?: "UserGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@ -5365,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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -5421,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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -5476,6 +5501,7 @@ export type UnfollowUserMutationOptions = Apollo.BaseMutationOptions<
|
|||||||
export const GetUserFollowingFollowersDocument = gql`
|
export const GetUserFollowingFollowersDocument = gql`
|
||||||
query getUserFollowingFollowers {
|
query getUserFollowingFollowers {
|
||||||
getLoggedInUser {
|
getLoggedInUser {
|
||||||
|
id
|
||||||
following {
|
following {
|
||||||
id
|
id
|
||||||
username
|
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,17 +106,21 @@ 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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
query getUserFollowingFollowers {
|
query getUserFollowingFollowers {
|
||||||
getLoggedInUser {
|
getLoggedInUser {
|
||||||
|
id
|
||||||
following {
|
following {
|
||||||
id
|
id
|
||||||
username
|
username
|
||||||
|
Loading…
Reference in New Issue
Block a user