Learning-graphql-with-dgs

This is an implementation of the sample photo application in Learning GraphQL. But unlike the book I use:

Launch

  • Execute Spring Boot
  • GraphQL query playground is available on http://localhost:8080/graphiql

Tips about MongoDB

How to check if data is correctly inserted?

  • Log in with mongosh -u root -p
  • Choose db by use graphql-practice;
  • Check collection by show collections; , and get data by db.<collection name>.find;
  • If you connect from Intellij, don't forget to specify authSource as admin.