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

14 lines
234 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
mutation FollowMutation($what: FollowingEntity!, $slug: String!) {
2022-09-09 11:53:35 +00:00
follow(what: $what, slug: $slug) {
error
2024-03-12 08:52:39 +00:00
authors {
id
slug
}
2022-09-09 11:53:35 +00:00
}
}
`