webapp/src/graphql/query/reactions-for-shouts.ts

33 lines
533 B
TypeScript
Raw Normal View History

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