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

10 lines
166 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2023-05-07 15:23:48 +00:00
mutation DeleteShoutMutation($shoutId: Int!) {
2023-11-28 13:18:25 +00:00
delete_shout(shout_id: $shoutId) {
2022-09-09 11:53:35 +00:00
error
}
}
`