如何在GraphQL模式定义中处理连字符

时间:2017-01-02 12:58:45

标签: mongodb mongoose graphql mongoose-schema graphql-js

我的猫鼬模式如下

var ImageFormats = new Schema({
     svg        : String,
     png-xlarge : String,
     png-small  : String
});

当我将其转换为GraphQL Schema时,这就是我尝试的方法

export var GQImageFormatsType: ObjectType = new ObjectType({
     name: 'ImageFormats',

     fields: {
          svg        : { type: GraphQLString },
         'png-xlarge': { type: GraphQLString },
         'png-small' : { type: GraphQLString }
 }
});

GraphQL返回以下错误:Error: Names must match /^[_a-zA-Z][_a-zA-Z0-9]*$/ but "png-xlarge" does not.

如果我想在Mongoose模型之后模拟GraphQL,我该如何协调这些字段?我有办法创建一个别名吗?

(我在涂鸦和stackoverflow论坛上搜索了这个,但找不到类似的问题)

1 个答案:

答案 0 :(得分:2)

  

GraphQL返回以下错误:错误:名称必须匹配/ ^ [_ a-zA-Z] [_ a-zA-Z0-9] * $ /但是" png-xlarge"没有。

GraphQL抱怨字段名'png-xlarge'无效。错误消息中的正则表达式表示第一个字符可以是一个字母,与案例或下划线无关。其余字符也可以有数字。因此,很明显,字段名称都不能使用连字符-和单引号'。规则基本遵循几乎每种编程语言中都可以找到的变量命名规则。您可以查看GraphQL naming rules

  

如果我想在Mongoose模型之后模拟GraphQL,我该如何协调这些字段?我有办法创建一个别名吗?

resolve功能的帮助下,您可以按照以下步骤执行此操作:

pngXLarge: { 
    type: GraphQLString,
    resolve: (imageFormats) => {
        // get the value `xlarge` from the passed mongoose object 'imageFormats'
        const xlarge = imageFormats['png-xlarge'];
        return xlarge;
    },
},