📌  相关文章
📜  我们如何知道用户在 Nestjs 查询中选择了哪个字段 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:42.854000             🧑  作者: Mango

代码示例1
@UseGuards(GqlAuthGuard)
  @Query(returns => UserType)
  async getMe(@CurrentUser() user: User, @Info() info): Promise {
    console.log(
      info.fieldNodes[0].selectionSet.selections.map(item => item.name.value),
    );
    return user;
  }