2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
|
|
|
mutation CreateReactionMutation($reaction: ReactionInput!) {
|
2023-11-28 13:18:25 +00:00
|
|
|
create_reaction(reaction: $reaction) {
|
2022-09-09 11:53:35 +00:00
|
|
|
error
|
|
|
|
reaction {
|
|
|
|
id
|
|
|
|
body
|
|
|
|
kind
|
2023-11-28 13:18:25 +00:00
|
|
|
created_at
|
|
|
|
reply_to
|
2023-02-17 09:21:02 +00:00
|
|
|
stat {
|
|
|
|
rating
|
|
|
|
}
|
2023-02-17 18:12:28 +00:00
|
|
|
shout {
|
|
|
|
id
|
|
|
|
slug
|
|
|
|
}
|
2024-01-18 11:32:03 +00:00
|
|
|
created_by {
|
2023-02-17 09:21:02 +00:00
|
|
|
name
|
|
|
|
slug
|
2023-11-28 13:18:25 +00:00
|
|
|
pic
|
2023-02-17 09:21:02 +00:00
|
|
|
}
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|