Compare commits
4 Commits
kat/user-r
...
5c5014339f
Author | SHA1 | Date | |
---|---|---|---|
5c5014339f | |||
84188a6066 | |||
7c7be319d1 | |||
79784faba1 |
@@ -7,7 +7,7 @@ readme = "README.md"
|
||||
packages = [{include = "rbproto"}]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.10,<3.12"
|
||||
python = ">=3.10,<=3.13"
|
||||
protobuf = "^4.25.3"
|
||||
|
||||
|
||||
|
@@ -3173,10 +3173,7 @@ export type FollowUserMutationVariables = Exact<{
|
||||
|
||||
export type FollowUserMutation = {
|
||||
__typename?: "Mutation";
|
||||
followUser: {
|
||||
__typename?: "UserGQL";
|
||||
followers?: Array<{ __typename?: "UserGQL"; username: string }> | null;
|
||||
};
|
||||
followUser: { __typename?: "UserGQL"; username: string };
|
||||
};
|
||||
|
||||
export type UnfollowUserMutationVariables = Exact<{
|
||||
@@ -3185,10 +3182,7 @@ export type UnfollowUserMutationVariables = Exact<{
|
||||
|
||||
export type UnfollowUserMutation = {
|
||||
__typename?: "Mutation";
|
||||
unfollowUser: {
|
||||
__typename?: "UserGQL";
|
||||
followers?: Array<{ __typename?: "UserGQL"; username: string }> | null;
|
||||
};
|
||||
unfollowUser: { __typename?: "UserGQL"; username: string };
|
||||
};
|
||||
|
||||
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
||||
@@ -5324,11 +5318,9 @@ export type GetUserTagsQueryResult = Apollo.QueryResult<
|
||||
export const FollowUserDocument = gql`
|
||||
mutation followUser($followedUserId: Int!) {
|
||||
followUser(followedUserId: $followedUserId) {
|
||||
followers {
|
||||
username
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
export type FollowUserMutationFn = Apollo.MutationFunction<
|
||||
FollowUserMutation,
|
||||
@@ -5376,11 +5368,9 @@ export type FollowUserMutationOptions = Apollo.BaseMutationOptions<
|
||||
export const UnfollowUserDocument = gql`
|
||||
mutation unfollowUser($followedUserId: Int!) {
|
||||
unfollowUser(followedUserId: $followedUserId) {
|
||||
followers {
|
||||
username
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
export type UnfollowUserMutationFn = Apollo.MutationFunction<
|
||||
UnfollowUserMutation,
|
||||
|
@@ -89,16 +89,12 @@ query GetUserTags {
|
||||
|
||||
mutation followUser($followedUserId: Int!) {
|
||||
followUser(followedUserId: $followedUserId) {
|
||||
followers {
|
||||
username
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
mutation unfollowUser($followedUserId: Int!) {
|
||||
unfollowUser(followedUserId: $followedUserId) {
|
||||
followers {
|
||||
username
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user