Oliver Searle-Barnes
Oliver Searle-Barnes
Another when using Hive as a graphql store ``` Crashed in non-app: compact_hash.dart in _LinkedHashMapMixin._init compact_hash.dart in _LinkedHashMapMixin._rehash compact_hash.dart in _LinkedHashMapMixin._insert compact_hash.dart in _LinkedHashMapMixin._set binary_reader_impl.dart in BinaryReaderImpl.readMap within hive In...
Yeah, this has been bugging me. Here's a workaround I've been using... @user.posts.create Post.make.attributes
There's a brew package available now ``` $ brew install shunit2 ```
``` { "todos": [{ "id": 88, "title": "one", "description": "two", "client_id": null, "client_rev": null, "user_id": 1 }], "users": [{ "id": 1, "name": "blah", "todo_ids": [88] }] } ``` I'm not...
Somethings definitely up because if I don't register ``` container.register('serializer:model)', Serializer); ``` then I get the following error (notice the extra bracket at the end of serializer:model) ``` Error while...
BTW, would I be better off using https://github.com/coalescejs/coalesce-ember ? I notice you've ES6ified it.
@ghempton I've already included the typeKey in all the models. There seems to be something strange going on with the key resolution though, I noticed the value of "type" is...
I've just put together a todos app with ember-cli / epf / rails, https://github.com/opsb/ember-cli-epf-todos
It looks like it might be if there's a \n missing at the end of the file.
+1 for an API for global hooks, this would be really helpful for setting up/tearing down any datastores/caches.