webapp/src/graphql/mutation/core/collab-remove-author.ts

10 lines
203 B
TypeScript
Raw Normal View History

2023-11-28 13:18:25 +00:00
import { gql } from '@urql/core'
export default gql`
mutation CollabRemoveeMutation($author_id: Int!, $slug: String!) {
remove_author(author_id: $author_id, slug: $slug) {
error
}
}
`