webapp/src/graphql/mutation/article-delete.ts
2023-05-08 19:29:26 +02:00

10 lines
165 B
TypeScript

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