我在我的一个应用程序中将 AWS AppSync 用于聊天应用程序。我们能够成功地进行设置和基本查询。
在一种情况下,我需要编写一个自定义的 GraphQL 查询,这样我就可以使用来自另一种类型的引用来获得额外的数据。例如,我可以allMessageGroup
来自用户,也可以allMessages
来自特定组。
现在我想添加组中的最后一条消息及其发件人以及所有消息组的列表,就像什么是应用程序主页一样。
但我无法理解如何进行 JOIN 或编写这样的查询,这些查询会根据对话/消息/用户类型/表给出混合结果。
平台:iOS 语言:Swift
以下是我正在使用的架构和 API/查询的详细信息
架构
type Conversation {
conversation_cover_pic: String
conversation_type: String!
createdAt: String
id: ID!
messages(after: String, first: Int): MessageConnection
name: String!
privacy: String
}
type Message {
author: User
content: String!
conversationId: ID!
createdAt: String
id: ID!
recipient: User
sender: String
}
type MessageConnection {
messages: [Message]
nextToken: String
}
询问
query getUserConversationConnectionThroughUser($after: String, $first: Int)
{
me
{
id
__typename
conversations(first: $first, after: $after)
{
__typename
nextToken
userConversations
{
__typename
userId
conversationId
associated
{
__typename
userId
}
conversation
{
__typename
id
name
privacy
messages
{
__typename
id
conversationId
content
createdAt
sender
isSent
}
}
}
}
}
}