我在 graphql 中与 Mongo go 驱动程序有这种一对多的引用关系。
type User {
id: ObjectID!
email: String!
username: String!
posts: [Post!]!
}
type Post {
id: ObjectID!
author: User!
title: String!
content: String!
}
我知道我可以使用聚合框架来查询引用关系。
但是,如果我想在创建用户的同时还创建一个帖子,我该怎么办?
collection.InsertOne
在解析器中发送两个?