webapp/src/graphql/mutation/core/article-delete.ts
2023-11-28 16:18:25 +03:00

10 lines
166 B
TypeScript

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