如何在阿波罗联邦的@key字段中应用别名

How to apply alias in @key field in apollo federation

提问人:Vasu Rangpariya 提问时间:11/16/2023 最后编辑:Vasu Rangpariya 更新时间:11/16/2023 访问量:12

问:

type oPlayer @key(fields: "id") @key(fields: "name"){
 id:ID
 name: String
}
extend type oPlayer @key(fields: "name") @key(fields: "PlayerId") 
{
 name: String @external
 PlayerId: ID @external
}

我正在尝试使用带有 id 的 PlayerId 字段解析该字段,但我无法在引用解析器中获取数据 如何为“PlayerId:id”提供别名,以便 oPlayer 类型可以解析字段 我希望 apollo 联盟允许将 PlayerId 的别名提供给 id,以便它可以轻松解析字段

节点.js graphql apollo-federation

评论


答: 暂无答案