Denis Artyushin

Results 7 issues of Denis Artyushin

1. Added a new formatter module (now is not using in main code). Example: ```python from datamodel_code_generator.formatter.base import BaseCodeFormatter class CustomHeaderCodeFormatter(BaseCodeFormatter): formatter_name: ClassVar[str] = "custom" def __init__(self, formatter_kwargs: Dict[str, Any])...

Hello, thanks for Thanks for GraphQL Python Roadmap I see that this project is the most alive in https://github.com/graphql-python I use python as GraphQL client and server in my projects...

✨ enhancement

Hello, thanks for graphql-core. I use it often in my projects with GraphQL. I created my project for pydantic model generation from some graphql schema. And for graphql queries generation...

## Description I added tool for data model generation from a GraphQL schema for python: [datamodel-code-generator](https://koxudaxi.github.io/datamodel-code-generator/). docs: https://koxudaxi.github.io/datamodel-code-generator/ source: https://github.com/koxudaxi/datamodel-code-generator pypi: https://pypi.org/project/datamodel-code-generator/

1. Fix for `datamodel-code-generator` From version [0.25.0](https://github.com/koxudaxi/datamodel-code-generator/releases/tag/0.25.0) datamodel-code-generator can generation pydantic classes from some GraphQL schema 2. `graphql-query` -- Complete Domain Specific Language (DSL) for GraphQL query based on pydantic....

## Problem `bump-pydantic` doesn't change when i using extra fields in `pydantic.Field`. Simple example: ```python # my code from pydantic import BaseModel, Field class Human(BaseModel): name: str = Field(..., min_length=1,...

Hello, thanks for code generation lib for GrtaphQL! It is the real problem in python. I created the package for pydantic data-model generation from some GraphQL schema and for queries...