webapp/src/graphql/mutation/article-destroy.ts

10 lines
160 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2022-10-23 14:16:42 +00:00
mutation DeleteShoutMutation($shout: String!) {
deleteShout(slug: $shout) {
2022-09-09 11:53:35 +00:00
error
}
}
`