js-data-sql icon indicating copy to clipboard operation
js-data-sql copied to clipboard

Postgres/MySQL/MariaDB/SQLite3 adapter for js-data. Main Site: http://js-data.io, API Reference Docs: http://api.js-data.io

Results 14 js-data-sql issues
Sort by recently updated
recently updated
newest added

Fixes # (it's a good idea to open an issue first for discussion) - [x] - `npm test` succeeds - [ ] - Code coverage does not decrease (if any...

I've been working on upgrading all of my js-data stuff to v3 and I've run into an issue with querying through relations. I'm using js-data/js-data-http (both v3) on the front...

enhancement

``` javascript if (params instanceof Object.getPrototypeOf(this.query.client).QueryBuilder) { ``` should spell ``` javascript if (params instanceof Object.getPrototypeOf(this.query.client).queryBuilder) { ``` Refer to knex source: [client.js#L61](https://github.com/tgriesser/knex/blob/master/src/client.js#L61) for reference. `node -v` yields `v4.6.0` and...

Currently all relations loaded via `with` are done so using a [subsequent](https://github.com/js-data/js-data-sql/blob/master/src/index.js#L80) `select * from relationTable where id in (...)`. For `hasOne` and `belongsTo` relations, loading these relatoins should be...

I'm proposing to add the `search` query operator to support full-text search ``` js Comment.filter({ where: { content: { 'search': 'some search terms' } } }); ``` you could also...

Need to create some tests for [this change](https://github.com/js-data/js-data-sql/commit/1f4f2bf4a9d8b92330e98d24899b10187bec8017), which requires some new non-standard tables/relations to test against

Just logging some notes to think about at this point ## Retrieve a subset of properties - asked by aaike on [Slack#i-need-help](https://js-data.slack.com/archives/i-need-help/p1455526001000021) ``` js var users = yield Event.findAll({...}, {...

> Regarding to this documentation LIKEI operator should be supported > > http://www.js-data.io/docs/query-syntax > > but it is not - at least for DSSqlAdapter (PostgreSQL) > > Error is :...

bug

Need to [configure](https://github.com/js-data/js-data-sql/blob/develop/circle.yml) Circle CI to test not just MySQL but also Postgres (and possibly others) https://circleci.com/docs/configuration#services