* refactor: replacing mobx with jotai Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: Louis <louis@jan.ai>
11 lines
216 B
GraphQL
11 lines
216 B
GraphQL
query getConversations {
|
|
conversations(order_by: {updated_at: desc}) {
|
|
...ConversationDetail
|
|
conversation_messages {
|
|
...MessageDetail
|
|
message_medias {
|
|
...MessageMedia
|
|
}
|
|
}
|
|
}
|
|
} |