webapp/src/graphql/mutation/core/unfollow.ts

9 lines
189 B
TypeScript
Raw Normal View History

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