mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-03 08:05:33 +00:00
24 lines
391 B
GraphQL
24 lines
391 B
GraphQL
query Message($roomId: ID!, $first: Int, $offset: Int, $beforeIndex: Int) {
|
|
Message(roomId: $roomId, first: $first, offset: $offset, beforeIndex: $beforeIndex, orderBy: indexId_desc) {
|
|
_id
|
|
id
|
|
indexId
|
|
content
|
|
senderId
|
|
author {
|
|
id
|
|
}
|
|
username
|
|
avatar
|
|
date
|
|
saved
|
|
distributed
|
|
seen
|
|
files {
|
|
url
|
|
name
|
|
type
|
|
}
|
|
}
|
|
}
|