hook
hook copied to clipboard
allow clients to count & group
The following example doesn't work in any client:
SELECT `gender`, COUNT(*) FROM `auth` GROUP BY `gender`;
JavaScript client code example:
client.collection('auth').group("gender").count()
It seems a problem with query grammars on Illuminate/Database: https://github.com/laravel/framework/issues/4306