0.4.1
In the pursuit of closing #45, I also ended up closing #22. So here's a minor update with some major features and performance boosts!
It would be greatly appreciated if you starred and shared this repo!
Nested Queries
fetch
now has all the same methods on it as find_many
and find_unique
, meaning you can fetch relations to an infinite depth, and even paginate relations at the same time!
Direct AST to GraphQL Conversion
The re-implementation of the query AST has made it possible to convert directly from enums and structs to GraphQL structures, bypassing an entire step before execution where a GraphQL string was constructed and then parsed.
Axum GraphQL Example
Thanks to @aaronleopold for creating an example of using Prisma Client Rust with async-graphql
and axum
!