Abdessamad MOUHASSINE

Results 6 comments of Abdessamad MOUHASSINE

> We can discuss what does it mean "right HTTP error". In other words, the right http `status code` of the response. > In my opinion 404 is correct, because...

> This is a router and not an entire framework I know, so I'm using a wrapper around `find-my-way` which composes multiple handlers into a single function, and I use...

@RobAWilkinson try to replace `hasMany->through` with `belongsToMany`

@dwoowb ```js languages () { return this.belongsToMany('Language', 'userLanguages', 'userId', 'languageId') } ``` Visit the [docs](http://bookshelfjs.org/#Model-instance-belongsToMany) for more info

@guoqiao try this ```js SQL`select * from articles where title like ${`%${q}%`}`; ```

I don't think so! Slonik is both, a SQL template string helper as this package, and a layer on top of the `pg` driver for PostgreSQL databases. The feature you...