Christoph Zwerschke
Christoph Zwerschke
In #141 it was discussed whether using a different event loop such as `uvloop` can speed up async use of GraphQL-core. We should do some benchmarking and document how to...
I think it's time to discuss a versioning and naming policy for the graphql-python tools so we can move forward. We currently have three "generations" of the underlying core library:...
It would be nice if the hotkeys (Shift + M/Y/G) would be configurable so that I could use the [Nostalgy](http://alain.frisch.fr/info/ABOUT_NOSTALGY.html) hotkeys (G/S/B/C) which I'm accustomed to and which I like...
We should create a version that uses graphql-core-next instead of graphql-core. @norman-thomas has already created PR #17 for this and I have also created a [private branch](https://github.com/Cito/graphql-server-core/tree/use-core-next) for this. Since...
Added a proper type specifier to the ElementRefs used in the Dropdown component. This allows proper type support (IDE suggestions, linting errors) for the native elements. This PR is only...
Note, this also exists in the 16.x.x branch.
Because this does not work on Windows, and Windows users would get a negative user experience when copying and pasting the command from the docs without knowing or thinking of...
I'm getting this error on the console, raised on line 72 of content.js. I have "fixed" it by changing this line from `if (!app.isStartAllowed() || !app.checkEventForShortcut(e, userData.runShortcut))` to `if (!app.isStartAllowed()...
**Describe the bug** After starting Obsidian, the following error message appears in the developer console: ``` app.js:1 TypeError: Cannot read properties of undefined (reading 'editor') at t.get (app.js:1:2074065) at getEditorFromState...
# Summary HTTPX already supports [calling into WSGI apps](https://www.python-httpx.org/advanced/#calling-into-python-web-apps). However, this support does not include legacy (WSGI 1) apps and frameworks that use a [write callable](https://peps.python.org/pep-3333/#the-write-callable). This small PR adds...