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

19 lines
347 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
2023-11-16 15:17:48 +00:00
created_at
2022-12-17 03:27:00 +00:00
id
2023-11-16 15:17:48 +00:00
updated_at
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
}
}
`