Easiest GraphQL 🎨 example with Express & Fake JSON server 😉
(1) Start Fake JSON server in 1 Terminal Window
yarn run json:server
(2) Start Express server in another Terminal Window
yarn run dev
(3) Open http://localhost:1337/graphql
& enter the following
{
user(id: "57") {
name,
gender,
age
}
}