Some comments. - [This](https://github.com/a-la-node/database-project/blob/master/server/routes.js#L34) should be POST. See [here](http://stackoverflow.com/questions/3521290/logout-get-or-post). - Use template literals to construct multiline strings [e.g. here](https://github.com/a-la-node/database-project/blob/master/server/database/queries/resources.js#L5). - Can you do [this](https://github.com/a-la-node/database-project/blob/master/server/routes.js#L53) with one query? If not, please make an issue explaining why. - Apply [this filter](https://github.com/a-la-node/database-project/blob/master/server/routes.js#L78) in the query. - [This](https://github.com/a-la-node/database-project/blob/master/server/routes.js#L89-L91) should be one query (see e.g. [here](http://stackoverflow.com/questions/29564179/insert-in-single-query-into-2-tables-postgresql)). Looks really good!