Hacker News new | ask | show | jobs
by colinramsay 4005 days ago
There are certain things that are a bit more elegant if you can have a custom query language. One example:

        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...
1 comments

What about YAML?