我一直在用React尝试Apollo,目前我遇到了问题。
我有基本数据,其中产品属于许多类别
query getProduct{
product(id: 1){
id
name
categories{id,name}
}
}
正如所料,这会返回类似这样的内容
{
"data": {
"p": {
"id": 1,
"name": "Samsung Galaxy S7",
"categories": [
{
"name": "Phone"
},
{
"name": "Samsung"
}
]
}
}
}
这是我的反应组件
class TileProductComponent extends Component{
constructor(...args){
super(...args)
}
render(){
if(this.props.data.loading)
return <div>Loading...</div>
var product = this.props.data.p
console.log(this.props.data)
return (
<div> {product.name} </div>
)
}
}
var TileProduct = graphql(
gql`
query TestQuery($id: Int!){
product(id: $id){
id
name
categories{id,name}
}
}
`,
{
options : {
variables : {id:1}
}
}
)(TileProductComponent)
但是一旦它在react组件中传递,我发现它(来自console.log(this.props.data))
"product": {
"id": 1,
"name": "Phone",
"categories": [
{
"name": "Phone"
},
{
"name": "Samsung"
}
]
}
产品名称出于某种原因采用第一类的名称?我猜这个id也会。修复方法是更改模式中的字段名称,但在我看来,它不应该真的那么做。
这是一个已知问题,还是我唯一遇到此问题的人?任何建议的解决方案?
答案 0 :(得分:0)
问题在于您的dataIdFromObject
功能。此函数需要为来自服务器的不同对象返回唯一值。一种简单的方法是使用您的ID字段中的GraphQL内置的__typename
字段。这是一个代码段:
const client = new ApolloClient({
queryTransformer: addTypename,
dataIdFromObject: (result) => {
if (result.id && result.__typename) {
return result.__typename + result.id;
}
return null;
}
});
要在应用程序的上下文中查看它,请查看使用SQL增量ID的GitHunt前端示例:https://github.com/apollostack/GitHunt-React/blob/380bedaef97f2a0932c1ab33bd964812d4a8a65e/ui/client.js#L42-L48