j-riebe
j-riebe
Hey @roman-right, first of all, this seems like an awesome project and I'm considering to migrate from mongoengine. The tipping point for me is document inheritance. Don't know if you...
For some reason you need to install `pytz` first. In my case `ImproperlyConfigured` was raised in django.db.utils.py L126 due to a `ModuleNotFound("No module named 'pytz'")` in django.db.utils.py L113. https://github.com/django/django/blob/d3677043fce0fec5d082e8cae142d5e5df35a2b5/django/db/utils.py#L112-L135 Is...
@danseely seems like the root of your problem is located in this [line](https://github.com/webfactory/ssh-agent/blob/209e2d72ff4a448964d26610aceaaf1b3f8764c6/paths.js#L6). As stated in the comment above the line, the location of `homePath` might differ between "classic" github...
Based on the example given above I'd expect the following skeletons: ```python # generated/ariadne_schema.py from ariadne import ObjectType # import input types and enum types from .scalars import ID #...
With `Any`as return type, the "syntactical correctness" I mentioned above is restricted to ensuring that the kwargs match the ones that ariadne expects, which is bascially all that we can...
@rafalp I've got a working PoC for the typed resolvers up and running. You can check it out [here](https://github.com/j-riebe/ariadne-codegen-serverside). It's based on your initial example with `Query` and `Issue`. Right...
Sorry for the even later reply, I was thinking about this topic but didn't came to write a reply. I want to apologize beforehand, because it will be quite large...