GraphQL Working Draft
facebook.github.io
GraphQL Working Draft
1–10 of 71 posts
Re: GraphQL Working Draft
#2Re: GraphQL Working Draft
#3Some background: https://facebook.github.io/react/blog/2015/05/01/graphql-int...
Re: GraphQL Working Draft
#4EDIT: Thanks for all the replies, all of them very good points, and clearly show that JSON is not the most elegant option for a complex DSL.
Re: GraphQL Working Draft
#5Why not have the query in JSON? Now you need a new parser. EDIT: Thanks for all the replies, all of them very good points, and clearly show that JSON is not the most elegant option for a complex DSL.
query UseFragment {
luke: human(id: "1000") {
...HumanFragment
}
leia: human(id: "1003") {
...HumanFragment
}
}
fragment HumanFragment on Human {
name
homePlanet
}
You could definitely have some JSON to represent this but it might turn out to be more trouble than it's worth...Re: GraphQL Working Draft
#6Why not have the query in JSON? Now you need a new parser. EDIT: Thanks for all the replies, all of them very good points, and clearly show that JSON is not the most elegant option for a complex DSL.
you could map it to json - but technically you could map everything to json - doesnt mean you decrease complexity
the parser is the lowest problem of parsing and optimizing those queries i'd assume
Re: GraphQL Working Draft
#7Why not have the query in JSON? Now you need a new parser. EDIT: Thanks for all the replies, all of them very good points, and clearly show that JSON is not the most elegant option for a complex DSL.
Re: GraphQL Working Draft
#8Re: GraphQL Working Draft
#9Why not have the query in JSON? Now you need a new parser. EDIT: Thanks for all the replies, all of them very good points, and clearly show that JSON is not the most elegant option for a complex DSL.
Re: GraphQL Working Draft
#10Was this solved ? Did they manage to handle all the data needs of their apps with GraphQL or is it still limited to certain areas ?