webapp/src/graphql/mutation/core/article-delete.ts

10 lines
168 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2024-01-31 19:06:29 +00:00
mutation DeleteShoutMutation($shout_id: Int!) {
delete_shout(shout_id: $shout_id) {
2022-09-09 11:53:35 +00:00
error
}
}
`