Hacker News new | past | comments | ask | show | jobs | submit login

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



What about YAML?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: