webapp/src/graphql/mutation/core/reaction-create.ts

30 lines
466 B
TypeScript
Raw Normal View History

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
range
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
}
2023-11-28 13:18:25 +00:00
create_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
}
}
}
`