GraphQL-js 变异可选参数
GraphQL-js mutation optional arguments
我如何在具有可选参数的 nodeJS 中实现 GraphQL 突变?
我当前的 mutation 有一个 args 字段,但所有参数都是强制性的。由于我在文档中找不到任何内容,所以我不知道如何或是否可行。
这是我当前的代码:
const fakeDB = {
count: 0
};
const schema = new GraphQLSchema({
query: //...
mutation: new GraphQLObjectType({
name: 'adsF',
fields: {
updateCount: {
type: GraphQLInt,
args: {
count: { type: GraphQLInt } // I want to make this argument optional
},
resolve: (value, { count }) => {
// Catch if count is null or undefined
if (count == null) {
// If so just update with default
fakeDB.count = 5;
} else {
fakeDB.count = count
}
return fakeDB.count;
})
}
}
})
});
感谢您的帮助!
默认情况下,GraphQL 中的类型可以为空。这意味着您目前指定突变的方式使计数成为可选的。如果您希望某个字段是必填字段,则需要将其标记为 non null
我如何在具有可选参数的 nodeJS 中实现 GraphQL 突变?
我当前的 mutation 有一个 args 字段,但所有参数都是强制性的。由于我在文档中找不到任何内容,所以我不知道如何或是否可行。
这是我当前的代码:
const fakeDB = {
count: 0
};
const schema = new GraphQLSchema({
query: //...
mutation: new GraphQLObjectType({
name: 'adsF',
fields: {
updateCount: {
type: GraphQLInt,
args: {
count: { type: GraphQLInt } // I want to make this argument optional
},
resolve: (value, { count }) => {
// Catch if count is null or undefined
if (count == null) {
// If so just update with default
fakeDB.count = 5;
} else {
fakeDB.count = count
}
return fakeDB.count;
})
}
}
})
});
感谢您的帮助!
默认情况下,GraphQL 中的类型可以为空。这意味着您目前指定突变的方式使计数成为可选的。如果您希望某个字段是必填字段,则需要将其标记为 non null