Rafał Pitoń
Rafał Pitoń
@davlee1972 support for multiple explorers has been merged to Ariadne. I've did a skim of Apollo's client and decided to open separate issue for that, but I'll prioritize other work...
Yeah, docs are lying here 😅 I am thinking that we should update `ariadne.graphql` and `ariadne.graphql_sync` to accept list of middlewares instead of `MiddlewareManager` for simplicity's sake unless there are...
Ah, I see now where's the inconsistency. `middleware=` argument on `graphql_sync` is supposed to be `MiddlewareManager([middleware_func1, middleware_func2, ...])` and not just list of middlewares. Here's how WSGI server does this:...
Correct, line I've linked to actually does `MiddlewareManager(*middlewares)` ;)
Hi! That PR's main pitch was disabling playground, and it was closed when other PR solved the problem in question. I'm not against new PR happening that adds support for...
Also related: #318
We are moving to GraphiQL 2 but we'll keep playground support as an opt-in, and part of this support is support for setting default options for Playground from python code:...
Fixed on master
Anything new on this issue? I'm using this lib in my project and allowing users to quote messages with fenced code blocks is pretty important for me. Maybe directions how...
I don't think it would cause errors. `str` would get passed down to `DecimalField.to_python` which would happily do `Decimal(str)` that we would then pass to `Money` as usual. Still, our...