15 lines
248 B
TypeScript
15 lines
248 B
TypeScript
|
import { gql } from '@urql/core'
|
||
|
|
||
|
export default gql`
|
||
|
query GetChatsQuery($limit: Int, $offset: Int) {
|
||
|
loadRecipients(limit: $limit, offset: $offset) {
|
||
|
members {
|
||
|
name
|
||
|
slug
|
||
|
userpic
|
||
|
}
|
||
|
error
|
||
|
}
|
||
|
}
|
||
|
`
|