10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
|
import { gql } from '@urql/core'
|
||
|
|
||
|
export default gql`
|
||
|
mutation DeleteReactionMutation($id: Int!) {
|
||
|
deleteReaction(id: $id) {
|
||
|
error
|
||
|
}
|
||
|
}
|
||
|
`
|