Matt Krick

Results 210 comments of Matt Krick

thanks! i figure we'll get Action out the door, rewrite the mutations API, and then we can lint & unit test it up!

the only time non-null is useful is to create `variableDefinitions`. Aside from that, non-null is an annoying shell we have to take off when walking the ast. https://github.com/mattkrick/cashay/blob/3a4bfbcdc2b17f497dd4626a9c8083f49c283898/src/normalize/denormalizeStore.js#L57 Interface info...

Can you paste a snippet of your client schema?

i've never used an interface as a field before, usually i build an interface internally & then other fields use that: https://github.com/mattkrick/cashay/blob/master/src/__tests__/schema.js#L75 Could you help me understand why account needs...

Talk to your back end dude, seems like account should be an object or maybe a union, but if theres a good use case for it I'll be glad to...

oh for sure, still very much in alpha as stuff is changing on the daily, but i think we (finally) got a good flow for schema creation as of this...

Absolutely, if the spec allows it, cashay should support it, i just desperately need an example that fits into the test schema so I can write tests against it.

for efficiency, let's make them pass in a `type`. eg `getState('Posts')`. That way we don't have to traverse the whole tree. If they are looking for a union, then they...

current thinking: the redux store only holds normalized data. the cashay singleton holds the dependencies (both normalized & denormalized) & the cached denormalized data. Caching denormalized data is necessary because...

@tngan any update here? anything i can do to get this into master?