-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example returns product price and weight as null when query productById(id: '123') at localhost:4000 #13
Comments
@0xR any chance you have a moment to take a look at this? I suspect it might be part of the reason another repo using your work as a dependency is having issues ( |
Did something change? Does the issue occur for older versions of this project? |
I was able to reproduce the issue on tags 2.2.0, 2.1.0, 2.0.1 by checking out corresponding version from github. Did not go to older versions though. |
Tag 1.0.0 also does not blend the two values for
vs.
In fact, it seems that through tag 2.1.0
|
For the list.map error, see #5 @jamesjenkinsjr. You need to set a returnType in the delegateToSchema |
QUERY:
{
productById(id: "123") {
id
name
price
weight
}
}
RESPONSE:
{
"data": {
"productById": {
"id": "123",
"name": "name from transformed service",
"price": null,
"weight": null
}
}
}
Steps to reprouce:
The text was updated successfully, but these errors were encountered: