Replies: 1 comment 4 replies
-
I think |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello I am hitting a rest api that uses a convention called "Badgerfish". The response looks something like this
{ "alice": { "bob" : { "$": "charlie" }, "david": { "$": "edgar"} } }
. Notice how some of the keys are "$". This will fail because GraphQL doesn't allow $ to be a field.So In order to hit this api and resolve the $ I need to use the extend transform.
This is what my meshrc.yml looks like but when I run this mesh will throw an error saying Foo is undefined. Where is Foo supposed to be defined?
Beta Was this translation helpful? Give feedback.
All reactions