mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-04 00:25:47 +00:00
19 lines
234 B
GraphQL
19 lines
234 B
GraphQL
mutation CreateRoom($userId: ID!) {
|
|
CreateRoom(userId: $userId) {
|
|
id
|
|
roomId
|
|
roomName
|
|
lastMessageAt
|
|
unreadCount
|
|
#avatar
|
|
users {
|
|
_id
|
|
id
|
|
name
|
|
avatar {
|
|
url
|
|
}
|
|
}
|
|
}
|
|
}
|