0

この形式で 2 つの個別のミューテーションを作成しようとしています。

import gql from 'graphql-tag';

const MUTATION = gql`
  mutation setItem($item:String!) {
    setItem(item:$item)
  },
  mutation setAnotherItem($setAnotherItem:Bool) {
    setAnotherItem(setAnotherItem:$setAnotherItem)
  }
`;

しかし、私はこのエラーが発生しています:

Invariant Violation: react-apollo only supports a query, subscription, or a mutation per HOC. [object Object] had 0 queries, 0 subscriptions and 2 mutations. You can use 'compose' to join multiple operation types to a component

両方の突然変異が使用できるようにこれを構造化する適切な方法は何ですか?

4

1 に答える 1