【发布时间】:2016-07-14 23:20:18
【问题描述】:
我正在尝试从 json 配置动态生成 graphql 方案。但我无法为自己创建一个 GraphQLList。
json:
{
"label": "user",
"properties": [
{
"key": "name",
"type": "string"
},
{
"key": "id",
"type": "id"
},
{
"key": "birthday",
"type": "date"
},
{
"key": "gender",
"type": "string"
},
{
key: 'friends',
type: 'string'
}
]
}
javascript代码生成:
graphSchemes.forEach(function (graphScheme) {
graphQLObjects[graphScheme.label] = new graphql.GraphQLObjectType({
name: graphScheme.label,
fields: graphScheme.properties.reduce((fields, property) => {
if (property.key === 'friends') {
fields[property.key] = {
type: new graphql.GraphQLList(graphQLObjects[graphScheme.label])
};
return fields;
}
fields[property.key] = {
type: TYPES[property.type]
};
return fields;
}, {})
});
});
这里的问题是:
type: new graphql.GraphQLList(graphQLObjects[graphScheme.label])
没有“graphQLObjects[graphScheme.label]”
我该如何解决这个问题?有什么建议?
【问题讨论】:
标签: javascript graphql