1

我很难弄清楚如何通过中继在普通数组上进行突变。

我正在尝试向帖子添加新标签。在服务器端成功添加后,它不会在客户端更新。

我必须手动重新加载才能看到新标签。我都尝试过REQUIRED_CHILDRENthis.props.relay.forceFetch(),但无济于事。

另外,尝试FIELDS_CHANGE过发帖。

GraphQL 架构:

Post {
  id: ID!
  text: String!
  tags: [Tag!]!
}

Tag {
  id: ID!
  name: String!
}

AddTagToPostMutation:

  static fragments = {
    post: () => Relay.QL`
      fragment on Post {
        id
        tags
      }
    `,
  }

  getMutation() {
    return Relay.QL`mutation { addTagToPost }`;
  }

  getVariables() {
    return {
      name: this.props.tag.name,
    };
  }

  getFatQuery() {
    return Relay.QL`
      fragment on AddTagToPostMutationPayload {
        tag {
          id
          name
        }
        post {
          id
          tags
        }
      }
    `;
  }

  getConfigs() {
    return [{
      type: 'REQUIRED_CHILDREN',
      children: [Relay.QL`
        fragment on AddTagToPostMutationPayload {
          tag {
            id
            name
          }
          post {
            id
            tags
          }
        }
      `],
    }];
  }

  getOptimisticResponse() {
    return {
      tag: {
        name: this.props.tag.name,
      },
      post: {
        id: this.props.post.id,
      },
    };
  }
4

2 回答 2

3

正如freiksenet 已经指出的那样,FIELDS_CHANGE应该在getConfigs()函数中使用。我采用了您的架构,实现了 GraphQL 类型、服务器端和客户端突变以向帖子添加标签。客户端成功更新。我将在我的答案中详细说明解决方案。

首先,检查您的服务器端突变。我的实现使用了 graphqlgraphql-relay库,如下所示。请注意,服务器端突变的输出是已添加标签的帖子。这篇文章的 ID 是作为输入提供的。

const AddTagToPostMutation = mutationWithClientMutationId({
  name: 'AddTagToPost',
  inputFields: {
    postId: { type: new GraphQLNonNull(GraphQLID) },
    name: { type: new GraphQLNonNull(GraphQLString) },
  },
  outputFields: {
    post: {
      type: PostType,
      resolve: ({id}) => getPost(id),
    },
  },
  mutateAndGetPayload: ({postId, name}) => {
    const id = fromGlobalId(postId).id;
    addTagToPost(id, name);
    return {id};
  },
});

使用graphiql,您可以测试您的突变:

mutation {
  addTagToPost(input:{
      postId: "UG9zdDpwb3N0Mg==" 
      name:"a new tag name" 
      clientMutationId:"123244"}) {
    post {
      id
      text
      tags {
        id
        name
      }
    }
  }
}

我为根查询中的所有帖子添加了一个字段posts。使用graphiql,我首先检查了帖子 ID 并使用了上面的一个。

使用react-relay,客户端变异代码如下所示。它传递了一个道具post,其 ID 用作getVariables()函数中的输入变量。在getConfigs()函数中,我们指定post必须更新该字段。有效载荷字段post和传递的道具之间的关联post是使用FIELDS_CHANGE突变类型建立的。

export default class AddTagToPostMutation extends Relay.Mutation {
  getMutation() {
    return Relay.QL`mutation{addTagToPost}`;
  }

  getVariables() {
    return {
      postId: this.props.post.id,
      name: this.props.name,
    };
  }

  getFatQuery() {
    return Relay.QL`
      fragment on AddTagToPostPayload {
        post {
          id,
          tags {
            id,
            name,
          }
        }
      }
    `;
  }

  getConfigs() {
    return [{
      type: 'FIELDS_CHANGE',
      fieldIDs: {
        post: this.props.post.id,
      },
    }];
  }

  static fragments = {
    post: () => Relay.QL`
      fragment on Post {
        id,
      }
    `,
  };
}

客户端突变是这样调用的:

Relay.Store.commitUpdate(new AddTagToPostMutation({
      post: postToModify,
      name: tagName,
    }));
于 2016-04-14T10:06:44.543 回答
1

我认为你应该在这种情况下使用 FIELDS_CHANGE。

  getConfigs() {
    return [{
      type: 'FIELDS_CHANGE',
      fieldIDs: {post: this.props.post.id},
    }];
  }

  getOptimisticResponse() {
    return {
      post: {
        id: this.props.post.id,
        tags: [...this.props.post.tags, this.props.tag],
      },
    };
  }
于 2016-04-13T10:50:15.267 回答