Simple vanilla Go CRUD application with mongoDB database with its mflix dataset that I use for my thesis about benchmarking REST API and GraphQL.
To use this application run
go run main.goThe server will be served at http://localhost:8081
This app provides the following endpoints:
GET /movies: return all movies data with limit from query string (default: 10)POST /comments: creates new commentPUT /comments/:id: updates an existing commentDELETE /comments/:id: deletes a comment
Below is another repository used for my thesis.