Christoph Zwerschke

Results 68 issues of 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...

documentation
optimization
investigate

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:...

question

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...

enhancement
MailExtension

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...

type: rfc

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...

need revision

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...

bug

# 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...