13 lines
213 B
TypeScript
13 lines
213 B
TypeScript
import { gql } from '@urql/core'
|
|
|
|
export default gql`
|
|
mutation DeleteReactionMutation($reaction: Int!) {
|
|
delete_reaction(reaction_id: $reaction) {
|
|
error
|
|
reaction {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
`
|