working load
This commit is contained in:
parent
dda1aa55fa
commit
76460a1289
|
@ -1,32 +1,18 @@
|
||||||
import { gql } from '@urql/core'
|
import { gql } from '@urql/core'
|
||||||
|
|
||||||
export default gql`
|
export default gql`
|
||||||
query LoadReactionsByQuery($by: ReactionBy!, $limit: Int!, $offset: Int!) {
|
query LoadReactions($by: ReactionBy!, $limit: Int, $offset: Int) {
|
||||||
loadReactionsBy(by: $by, limit: $limit, offset: $offset) {
|
loadReactionsBy(by: $by, limit: $limit, offset: $offset) {
|
||||||
id
|
id
|
||||||
createdBy {
|
|
||||||
slug
|
|
||||||
name
|
|
||||||
userpic
|
|
||||||
}
|
|
||||||
body
|
|
||||||
kind
|
|
||||||
createdAt
|
|
||||||
updatedAt
|
|
||||||
shout {
|
shout {
|
||||||
slug
|
|
||||||
title
|
title
|
||||||
}
|
}
|
||||||
replyTo {
|
body
|
||||||
id
|
createdAt
|
||||||
createdBy {
|
createdBy {
|
||||||
slug
|
name
|
||||||
userpic
|
|
||||||
name
|
|
||||||
}
|
|
||||||
body
|
|
||||||
kind
|
|
||||||
}
|
}
|
||||||
|
updatedAt
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
Loading…
Reference in New Issue
Block a user