如何定义适用于猫鼬和graphql的模式

Posted

技术标签:

【中文标题】如何定义适用于猫鼬和graphql的模式【英文标题】:How to define schema that will work both in mongoose & graphql 【发布时间】:2020-11-26 13:11:24 【问题描述】:

如何定义一个基于 React 和 Graphql Promise 的模式。

const Cat = mongoose.model('Cat',  name: String );

【问题讨论】:

【参考方案1】:

您可以像这样定义您的架构:

const userSchema = new mongoose.Schema(
    
        __id: mongoose.Schema.Types.ObjectId,
        email: 
            type: String,
            required: true
        ,
        name: 
            type: String,
            required: true
        ,
        password: 
            type: String
        
    ,
    
        timestamps: true
    
)

【讨论】:

感谢您的快速回复!我会尝试评论结果 很高兴能提供帮助。

以上是关于如何定义适用于猫鼬和graphql的模式的主要内容,如果未能解决你的问题,请参考以下文章

使用猫鼬和打字稿创建模式

什么是易于使用的控制流库或模块,可与猫鼬和节点一起使用 [关闭]

如何在猫鼬和节点js中的同一记录上填充两个集合

如何使用猫鼬和异步瀑布模型在 MongoDb 中存储数据

使用猫鼬和nestJS自动增加字段

猫鼬和浮点值