我需要动态更改我的变异文档,以便能够在单个变异中创建多个项目。所以我有这个函数createOrderName
,它接受一个整数并能够创建正确的变异文档。例如。 createOrderName(2)
获取
mutation createOrderMut($input0: AddToOrderMenuItemConnectionInput!, $input1: AddToOrderMenuItemConnectionInput!) {
input0: addToOrderMenuItemConnection (input:$input0) {
changedOrderMenuItem {
id
}
}
input1: addToOrderMenuItemConnection (input:$input1) {
changedOrderMenuItem {
id
}
}
}
我的容器如下。
const CartContainer = compose(
graphql(createOrderName(2), {
props: ({ mutate }) => ({
addToOrderMenuItem: (menus, orderId) => mutate({
variables: createOrdersInput(menus, orderId)
})
})
})
)(CartView)
现在我如何将整数值传递给此突变以便创建正确的突变文档?目前它已修复为2,但我需要它更灵活,所以我可以创建任意数量的项目......
答案 0 :(得分:7)
这听起来像是你正在使用的后端的一个不幸的限制。进行批量突变的正确方法是在服务器上有一个单一的变异字段,该字段接受包含您要插入的所有项目的列表参数。因此,Apollo不支持使用标准react-apollo
API生成此类动态查询。那是因为我们坚信使用静态查询比在运行时生成字段要好得多:https://dev-blog.apollodata.com/5-benefits-of-static-graphql-queries-b7fa90b0b69a#.hp710vxe7
鉴于这种情况,听起来像动态生成突变字符串是一个不错的选择。您可以直接使用Apollo而不是通过graphql
HoC来完成此操作。您可以使用withApollo
HoC执行此操作:http://dev.apollodata.com/react/higher-order-components.html#withApollo
import { withApollo } from 'react-apollo';
const MyComponent = ({ client }) => {
function mutate() {
const dynamicMutationString = // generate mutation string here
client.mutate({
mutation: gql`${dynamicMutationString}`,
variables: { ... },
}).then(...);
}
return <button onClick={mutate}>Click here</button>;
}
const MyComponentWithApollo = withApollo(MyComponent);
我们为此目的构建了这个额外的API - 当标准内容不够时。
以下是mutate
btw:http://dev.apollodata.com/core/apollo-client-api.html#ApolloClient.mutate
答案 1 :(得分:2)
我不确定我是否可以使用您当前的实施回答您的问题,因此我将敦促您重新考虑您的变异定义并使用GraphQLList
和GraphQLInputObject
。
因此,根据您需要变异的字段:
args: {
input: {
type: new GraphQLList(new GraphQLInputObjectType({
name: 'inputObject',
description: 'Your description here',
fields: {
id: { type: GraphQLInt }
},
})),
},
},
通过这种方式,您可以在mutate调用中提供n个对象,并在您的类型上获取一个列表:
{
mutation myMutation {
addToOrderMenuItemConnection(input: [{ id: 123 }, { id: 456 }]) {
id
}
}
}
同样,我并不是100%熟悉您的最终目标,但我认为这将为您提供未来更改/更新的灵活性,因为您处理对象输入而不是单个参数,这也(希望)将你与未来的变化隔离开来。