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

10 lines
197 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
mutation CollabRemoveeMutation($author: String!, $slug: String!) {
removeAuthor(author: $author, shout: $slug) {
error
}
}
`