Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 343 Bytes

README.md

File metadata and controls

35 lines (29 loc) · 343 Bytes

Sample GraphQL project with Fastify

Install

npm install

Run

npm start

Then open up http://127.0.0.1:9000/graphql in your browser.

Test queries

query Query {
  test
}
query Query {
  restaurants {
    id,
    name,
    rating
  },
  courses {
    name,
    priceEuro
  }
}