Matt Krick
Matt Krick
Something to think about in free time: - When removing an item from a subscription, sometimes we want to remove that entity (say when a user gets deleted) and other...
ah, sorry for not responding to this... so cashay allows for multi-part queries. for example, part 1 is getting a list of posts, part 2 is getting the comments for...
when using mutations on live data, i have that mutation return a GraphQLBoolean or similar. The reason why is because if it's live, then you aren't going to respond directly,...
yeah, v2 i'm just gonna scrap the mutation-writing heuristic, which will solve this. it was cute, but annoying, specifically for this bug that lies in the graphql package (i still...
i'll need to know all the variables that are used here: https://github.com/mattkrick/cashay/blob/8d9174d478b63883f68b64f82c183b60a3aad0c4/src/normalize/denormalizeStore.js#L75. I'm not sure how `fieldState` could be undefined.
Thanks for the PR! At first glance this looks good, I've got some time to test it tomorrow night to see if it works in all cases. I'm curious how...
whoa, that's amazing!
Whoa, this is huge! If you got an example app I'd love to check it out! The caahay-sandbox is crazy out of date, I'm hoping to find the time to...
just merged your PR, thank you! Another large dep that i'd like to get rid of is GraphQL itself. Currently, aside from a handful of string constants, cashay just uses...
additional thought: suppose each query can take in 2 additional args: - `ids`: The list of IDs that we currently have on the client - `lastUpdatedAt`: The max of all...