2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2022-11-22 18:20:26 +00:00
|
|
|
query LoadReactions($by: ReactionBy!, $limit: Int, $offset: Int) {
|
2023-11-28 13:18:25 +00:00
|
|
|
load_reactions_by(by: $by, limit: $limit, offset: $offset) {
|
2022-09-09 11:53:35 +00:00
|
|
|
id
|
2023-02-17 09:21:02 +00:00
|
|
|
kind
|
2022-11-22 18:20:26 +00:00
|
|
|
body
|
2022-11-24 07:33:16 +00:00
|
|
|
range
|
2023-11-28 13:18:25 +00:00
|
|
|
reply_to
|
2022-11-27 08:15:03 +00:00
|
|
|
shout {
|
2023-01-20 04:40:55 +00:00
|
|
|
id
|
2022-11-27 08:15:03 +00:00
|
|
|
slug
|
2023-01-20 04:40:55 +00:00
|
|
|
title
|
2022-11-27 08:15:03 +00:00
|
|
|
}
|
2023-11-28 13:18:25 +00:00
|
|
|
created_by {
|
2022-11-22 18:20:26 +00:00
|
|
|
name
|
2022-11-24 07:33:16 +00:00
|
|
|
slug
|
2023-11-28 13:18:25 +00:00
|
|
|
pic
|
|
|
|
created_at
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
2023-11-28 13:18:25 +00:00
|
|
|
created_at
|
|
|
|
updated_at
|
2023-02-17 09:21:02 +00:00
|
|
|
stat {
|
|
|
|
rating
|
|
|
|
}
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|