Apollo Angular:突变后SwitchMap运算符不起作用

时间:2018-12-31 13:10:35

标签: angular graphql apollo apollo-angular

我正在使用Apollo Angular(GraphQL)管理帖子列表,但是当我将该运算符传递给switchMap时,mutation运算符无法正常工作。

当我从帖子列表中删除一项时,我想再次请求该列表以检索更改。问题是switchMap内的请求从未被订阅(但其中的代码已执行)。

this.removePostGQL.mutate({id: id})
      .pipe(
        switchMap(() => this.allPostsGQL.watch().valueChanges),
      )
      .subscribe(
        posts => this.posts = posts,
      );

0 个答案:

没有答案