This repo has been merged into pydantic-resolve and no more maintained
This repo has been merged into pydantic-resolve and no more maintained
This repo has been merged into pydantic-resolve and no more maintained
Pydantic-resolve is a schema based, hierarchical solution for fetching and crafting data.
It combines the advantages of restful and graphql.
Advantages:
- use declaretive way to define view data, easy to maintain and develop
- enhance the traditional restful response, to support gql-like style data structure.
- provide post_method and other tools to craft resolved data.
If you are using pydantic v1, please use pydantic-resolve instead.
pip install pydantic2-resolve
query {
MyBlogSite {
name
blogs {
id
title
comments {
id
content
}
# comment_count
}
# comment_count
}
}
This is how we do queries in GraphQL, dive by describing schema and field names.
Assuming comment_count
is a extra field (length of comment), which is required and calculated by client after fetching the data.
client side so need to iterate over the blogs to get the length and the sum, which is boring (things gets worse if the structure is deeper).
In pydantic-resolve, we can handle comment_count at server side, by transforming the query into pydantic schemas and attach some resolve, post methods.
import blog_service as bs
import comment_service as cs
class MySite(BaseModel):
blogs: list[MySiteBlog] = []
async def resolve_blogs(self):
return await bs.get_blogs()
comment_count: int = 0
def post_comment_count(self):
return sum([b.comment_count for b in self.blogs])
# -------- inherit and extend ----------
class MySiteBlog(bs.Blog):
comments: list[cs.Comment] = []
def resolve_comments(self, loader=LoaderDepend(cs.blog_to_comments_loader)):
return loader.load(self.id)
comment_count: int = 0
def post_comment_count(self):
return len(self.comments)
async def main():
my_blog_site = MyBlogSite(name: "tangkikodo's blog")
my_blog_site = await Resolver().resolve(my_blog_site)
schemas , query functions and loader functions are provided by entity's service modules.
So that we can declare customrized schema by simpily INHERIT and EXTEND from base schemas.
This just sounds like columns of values (inherit) and of foreign keys (extend) in concept of relational database.
After transforming GraphQL query into pydantic schemas, post calculation become dead easy, and no more iterations.
Collector is a powerful feature for adjusting data structures. https://allmonday.github.io/pydantic-resolve/reference_api/#collector
https://allmonday.github.io/pydantic-resolve/reference_api/
https://github.com/allmonday/composition-oriented-development-pattern
poetry run python -m unittest # or
poetry run pytest # or
poetry run tox
poetry run coverage run -m pytest
poetry run coverage report -m