Victor Hallberg
Victor Hallberg
I'm having the same issue after migrating to babel.config.js (changing nothing else), even with `npm i [email protected] [email protected]` **.eslintrc** (unchanged) ```json { "parser": "babel-eslint", "extends": [ "eslint:recommended", "plugin:import/errors", "plugin:import/warnings" ],...
**Update:** Running `eslint src` from the same directory as `babel.config.js` actually works, but the following doesn't: ```sh cd src eslint file-to-lint.js ../src/file-to-lint.js 12:19 error Unable to resolve path to module...
The [`cache-and-network` policy](https://www.apollographql.com/docs/react/api/react-apollo/#optionsfetchpolicy) would fit pretty well with this use case. `cacheLife` could specify the TTL during which no additional network request needs to be made: | Cache strategy |...
Would also love to see this merged!
**Edit:** The original comment suggested using vscode keybindings.json for the `[c`/`]c` mappings, but these broke commands such as `ci]` so I updated my suggestion to use regular vscode-vim mappings for...
I'm facing the same issue. Your pull request did seem to improve the performance, but even so ActiveRecord takes a lot of time to return anything.
@gmcnaughton doesn't appear to be possible in @apollo/[email protected], all I get is undefined :( This would've otherwise allowed us to normalize types that lack a ID field themselves but are...
Sounds good, especially the partial cache fetching! A `resetByKey()` would probably be nice to have along with the `readByKey()`.
Agreed on the contribution guide as well - it took an hour or so to get a working dev environment up for this repository. From what I can remember I...
Adding `resetByKey()` (which clears the cache for a key otherwise accessible by `readByKey()`) would keep the reset API in parity with the `read*()` variants (with the addition of `readByKey()`). `clear()`...