Hacker News new | ask | show | jobs
by 18nleung 3252 days ago
GraphQL supports both queries to access data and _mutations_ to change data:

  mutation {
    createUser(u: "user", p: "pass") {
      u,
      p
    }
  }
1 comments

That's actually awesome, thanks for pointing that out!