webapp/src/graphql/query/chat-recipients.ts

17 lines
270 B
TypeScript
Raw Normal View History

2022-11-24 09:06:48 +00:00
import { gql } from '@urql/core'
export default gql`
query GetChatsQuery($limit: Int, $offset: Int) {
loadRecipients(limit: $limit, offset: $offset) {
members {
2022-12-02 11:11:45 +00:00
id
2022-11-24 09:06:48 +00:00
name
2022-12-17 03:27:00 +00:00
id
2022-11-24 09:06:48 +00:00
slug
userpic
}
error
}
}
`