2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
export default gql`
|
2022-12-01 18:45:35 +00:00
|
|
|
mutation UnfollowMutation($what: FollowingEntity!, $slug: String!) {
|
2022-09-09 11:53:35 +00:00
|
|
|
unfollow(what: $what, slug: $slug) {
|
|
|
|
error
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|