Skip to content

Releases: stingerlabs/ember-graph

3.15.0

23 Mar 20:24
0b94cd9
Compare
Choose a tag to compare

Updates to remain compatible with ember 3.15 without deprecation warnings.

Pagination Support

19 Jan 15:04
Compare
Choose a tag to compare

Enabled pagination of store

For example, a document model:

name: EG.attr({
  type: 'string'
});

Constructing a query for the store:

const query = {
  limit: 10,
  offset: 2
}

Will allow constructing a get request with query params so a backend server can correctly serve up just 10 documents.

You can also get the total (for pagination UI controls, next/last, X of Y, from the new property:

payload.meta.serverMeta

Selective rollback

Instead of doing a rollback on everything, a single attribute can be rolled back:

object.rollbackSingleAttribute(attribute);

Initial Feature Complete Release

15 Mar 20:33
Compare
Choose a tag to compare
Merge pull request #88 from stingerlabs/prepare-for-bower-release

Prepare for a solid version 1 release via bower