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

18 lines
336 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 {
2023-11-16 15:27:49 +00:00
id
2023-11-17 09:00:00 +00:00
created_by
2022-11-03 06:07:57 +00:00
body
2023-11-16 15:27:49 +00:00
reply_to
2023-11-16 15:17:48 +00:00
created_at
updated_at
2022-11-03 06:07:57 +00:00
}
2022-11-02 13:44:00 +00:00
}
}
`