Denis Artyushin
Denis Artyushin
@Rogalek Hello The quick answer is no. What do you mean by request body? Can you give an example of expected behavior?
Thank for found bug! I will check your problem in tests soon
Log from single failed test: ```bash ChefBuildError Backend 'setuptools.build_meta:__legacy__' is not available. at ~\.local\venv\Lib\site-packages\poetry\installation\chef.py:152 in _prepare 148| 149| error = ChefBuildError("\n\n".join(message_parts)) 150| 151| if error is not None: > 152|...
Hello, you can using [graphql-query](https://github.com/denisart/graphql-query) package: ```python from graphql_query import Argument, Field, Operation, Query, Variable var_language = Variable(name="language", type="[String!]") var_gender = Variable(name="gender", type="[String!]") var_function = Variable(name="function", type="[String!]") var_city = Variable(name="city",...
Hello, thanks for the question. You are right, the current result is not correct. I will fix this problem soon. After pydantic version 2 support.
@NT-Timm , hello last release (https://github.com/denisart/graphql-query/releases/tag/v1.2.0) supported `bool` and `List[bool]`. And based on pydantic v2. Later I will think about your original question.
Hello, thanks for using graphql-query. I'm glad the library is useful. i think that this is a nice idea. Can you create a PR with general context for each render...
Yes, it works like that by default. I think that this need fix Thank for your feedback about this feature! I haven't tested it much.
I understood why it was done this way. Because `Union[ClassA]` it is defined as a type `ClassA`. See https://docs.python.org/3/library/typing.html#typing.Union