GraphQL is rapidly becoming a high-profile alternative to RESTful APIs. This talk will go into its advantages, disadvantages, and when it’s appropriate to use as well as how we can interact with it, both as an API consumer, and API producer.
michael: user(login: "michaelcullum") { name email company } } Without Fragments With Fragments FRAGMENTS { fabien: user(login: "fabpot") { ...userdetails } michael: user(login: "michaelcullum") { ...userdetails } } fragment userdetails on User { name email company }