webapp/src/graphql/query/reactions-load-by.ts

19 lines
325 B
TypeScript
Raw Normal View History

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) {
2022-11-16 07:42:43 +00:00
loadReactionsBy(by: $by, limit: $limit, offset: $offset) {
2022-09-09 11:53:35 +00:00
id
shout {
title
}
2022-11-22 18:20:26 +00:00
body
createdAt
createdBy {
name
2022-09-09 11:53:35 +00:00
}
2022-11-22 18:20:26 +00:00
updatedAt
2022-09-09 11:53:35 +00:00
}
}
`