Evan Owen
Evan Owen
@Acidic9 I would start by [looking here](https://github.com/Acidic9/tailwind-classes-sorter/blob/15a81b85900c7fd082c50618b148b22ad350e9b1/src/index.ts#L125-L195). The algorithmic complexity of that underlying class name sort function is off the charts—so many trivial optimizations possible that would dramatically improve performance.
FWIW we also need a way to send messages that weren't triggered by a specific user... for example to notify channel members of events related to the channel but triggered...
Is there any existing, maintained and extensible framework for generic validations that we could base our validations off of? I don't mind building this ourselves if we need to, but...
Interesting. [`Crepe::Response#status` is simply an accessor](https://github.com/crepe/crepe/blob/master/lib/crepe/response.rb#L9), so it shouldn't take any arguments. Are you overriding that method or using your own response class, by any chance?
Ah yes... that's the issue. `response` is a special method in the endpoints that you shouldn't override. By adding it as a helper, you're preventing Crepe from responding properly. I'll...
We've run into db instance re-use issues regularly. At times (such as when a re-used db creates a subquery that's then passed in as an argument), it can even create...
I believe this changed in v2, as we got bit by this during the upgrade. Previously reading nested fragments worked fine, even with `dedupeFragment` enabled.
fwiw @hwillson @benjamn we're still seeing regular scenarios in the latest release where partial cache can cause `data` to be `undefined` and not be refetched, even with a cache policy...
We've also been seeing this for awhile. Ended up just reloading the window after sign out because there doesn't seem to be a way to actually reset the Apollo cache/store.
Ugh we've been fighting with silently failing queries for months, only to finally stumble on this very old issue. This is really frustrating and there's no indication by default why...