webapp/src/graphql/mutation/unfollow.ts
2022-09-09 14:53:35 +03:00

10 lines
178 B
TypeScript

import { gql } from '@urql/core'
export default gql`
mutation UnfollowQuery($what: String!, $slug: String!) {
unfollow(what: $what, slug: $slug) {
error
}
}
`