webapp/src/graphql/query/chat-messages-load-by.ts

19 lines
345 B
TypeScript
Raw Normal View History

2022-11-02 13:44:00 +00:00
import { gql } from '@urql/core'
export default gql`
2022-11-16 07:42:43 +00:00
query LoadMessagesQuery($by: MessagesBy!, $limit: Int, $offset: Int) {
loadMessagesBy(by: $by, limit: $limit, offset: $offset) {
2022-11-03 06:07:57 +00:00
error
messages {
author
body
2022-12-17 03:27:00 +00:00
replyTo
2022-11-03 06:07:57 +00:00
createdAt
2022-12-17 03:27:00 +00:00
id
2022-11-03 06:07:57 +00:00
updatedAt
2022-12-17 03:27:00 +00:00
replyTo
2022-11-03 06:07:57 +00:00
}
2022-11-02 13:44:00 +00:00
}
}
`