Christoph Zwerschke
Christoph Zwerschke
> Another option is to make a resolve_property method that can read type annotations so the model doesn't have to be updated. (this is what you said in the original...
Either that, or: class MyModelType(SQLAlchemyObjectType): class Meta: model = MyModel include_properties = {'above_ten': bool} And if `include_properties` is given as a sequence, then the types are derived from type hints,...
Actually pipenv uses neither setup.cfg nor pyproject.toml, but Pipfiles. The advantage of pipenv is that you don't need to explicitly setup a virtualenv, you just say `pipenv install` and then...
Is `product_status` an enum?
Then it's the known problem for which I have proposed a solution in #210. It happens when you use the same enum in different columns (or maybe in your case,...
You would probably need to somehow patch the SalableProduct to make it use the same enum, when using the current version of graphene-sqlalchemy. I expect the fix will be merged...
Hi @dima-dmytruk23, and thanks for contributing. Please understand that the scope of GraphQL-core is to be a straight-forward port of GraphQL.js, so I am very reluctant to add features that...
@kloczek Yes, #180 does not solve this issue. GraphQL-py has both a setup.py and a pyproject.toml to support both ways of installation. Will clean this up eventually and do whatever...
This is now fixed in the main branch (used for the upcoming 3.3 release), we only require poetry as build tool now.
Hi @sebastiandev. Your example should actually work. Which version of GraphQL-core are you using and can you post the exact code that produces this error?