2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2022-09-14 11:05:48 +00:00
|
|
|
query ReactionsForShoutsQuery($shouts: [String]!, $limit: Int!, $offset: Int!) {
|
|
|
|
reactionsForShouts(shouts: $shouts, limit: $limit, offset: $offset) {
|
2022-09-09 11:53:35 +00:00
|
|
|
id
|
|
|
|
createdBy {
|
|
|
|
slug
|
|
|
|
name
|
|
|
|
userpic
|
|
|
|
}
|
|
|
|
body
|
|
|
|
kind
|
|
|
|
createdAt
|
|
|
|
updatedAt
|
|
|
|
shout {
|
|
|
|
slug
|
|
|
|
title
|
|
|
|
}
|
|
|
|
replyTo {
|
|
|
|
id
|
|
|
|
createdBy {
|
|
|
|
slug
|
|
|
|
userpic
|
|
|
|
name
|
|
|
|
}
|
|
|
|
body
|
|
|
|
kind
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|