繁体   English   中英

如何定义适用于 mongoose 和 graphql 的架构

[英]How to define schema that will work both in mongoose & graphql

如何定义适用于 React 和 Graphql promise 的架构。

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

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

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
    }
)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM