Alan Slater

Results 43 comments of Alan Slater
trafficstars

Edit: my specific similar issue below (it not working on first load only) seems to be a known issue on Hermes: ['show source' does not work on first run when...

Can we have a list of these known cases? On Mon, 10 Dec 2018, 22:07 Matteo Collina, wrote: > I would also turn on regexp by default. > > —...

We could display it like this, moving the C++ to the space used for paths. This way both the original C++ and the user-friendly JSON.stringify are available to search, and...

The example Snack above crashes in Expo 46 but [doesn't crash when updated to Expo 47](https://snack.expo.dev/@alansl/amused-peanut-expo47) (tested on both Android and iOS), so it looks like this got fixed some...

Great work, very interesting. It's great to be able to explore how common multiple occurrences are. As discussed last week the UX needs some refining so it's a bit less...

On React Native 0.72 release candidates, this seems to happen out of the box now with Fabric (probably because 0.72 stopped pinning the Android Gradle Plugin (AGP) to 7.3.1). Simple...

As a temporary work around for the lack of `queryFn` option support, I'm doing something like this: In `codegen.ts` config: ```ts export default { // ... generates: { // ......

100%, at bare minimum, if `git-credential-manager` is installed, and the option to use it is checked, and a particular repo has been authenticated using a personal access token via git...

I have the same issue, and I found this discussion: https://github.com/dotansimha/graphql-code-generator/discussions/5567 Unfortunately it looks like this is considered a feature not a bug 😢 because "_technically_" a hypothetical server _could_...

I found a good-enough workaround. ```ts type IgnoreTypenameOnlyObjects = T extends { __typename?: Maybe; } // If any key is __typename... ? keyof T extends "__typename" // ...and, EVERY key...