acro5piano / graphql-rest-proxy

Turn your REST API into GraphQL - A Proxy Server that pipes request from GraphQL to REST with GraphQL DSL, performant nested children, mutations, input types, and more.
https://www.npmjs.com/package/graphql-rest-proxy
MIT License
253 stars 10 forks source link

jsonpath-plus implementation to resolve nested parent fields #211

Open JuliPodie opened 1 year ago

JuliPodie commented 1 year ago

Hi, im currently implementing json path support for a proof of concept in my company, will do a PR when its ready to push and if ur interested

example:

type TestMail {
  mailHeader: MailHeader
  body: String @proxy (get: "$.mailHeader._links[0]")
}