webapp/src/graphql/mutation/core/article-delete.ts
2024-01-31 22:06:29 +03:00

10 lines
168 B
TypeScript

import { gql } from '@urql/core'
export default gql`
mutation DeleteShoutMutation($shout_id: Int!) {
delete_shout(shout_id: $shout_id) {
error
}
}
`