Haydn Ewers

Results 28 issues of Haydn Ewers

# Feature request ## Is your feature request related to a problem? Please describe. I'm developing a Next.js app that often hits this error in local development: > sorry, too...

enhancement

**SDK you're using (please complete the following information):** - Version 4.18.0 **Is your feature request related to a problem? Please describe.** The AU payroll `getEmployees()` method (and presumably the underlying...

``` javascript var store = new Store(); store.define("products", { commentCount: Store.meta("total-comments"), comments: Store.hasMany() }); store.define("comments", {}); store.add({ type: "products", id: "1", meta: { "total-comments": 1 }, relationships: { comments: [...

feature

feature
ready
breaking

``` javascript var store = new Store(); store.define("products", { title: Store.attr(), category: Store.hasOne(), comments: Store.hasMany() }); store.describe("products"); // { // fields: [ "title", "category", "comments" ], // attributes: [ "title"...

feature
question

The default behaviour of find should not actually create a resource. There should be an extra param to find or create: ``` javascript store.find("products", "1", true); ``` When a resource...

feature
ready

- [ ] include a link to the waffle board - [ ] explain using "closes/fixes/connected to" in pull requests - [ ] explain release strategy w/ deprecations - [...

documentation

All CLUD actions (`create`, `load`, `update` and `destroy`) could have their events broadcast through `store.observable`. ``` javascript store.observable.filter(x => x.type === "loaded").subscribe(x => console.log(x)); store.load("products", "1"); ``` There might need...

feature
question