Ilan Shamir

Results 5 comments of Ilan Shamir

> If you have dependencies, try to clear and init or upgrade the dependencies first. This step solved my issue. This did the trick for me. Deleting lock file and...

hi @patrick91 It would be more than just top-level resolvers. for example I might have: ```python @strawberry.type class User: id: strawberry.ID sessions: List[Session] # some more deeply nested fields @strawberry.type...

@patrick91 awesome thanks 👍

@patrick91 I think I found a solution! I use [dacite](https://github.com/konradhalas/dacite) to load the dict into dataclasses, and simply return that. I needed the Enum cast since I also have enums...

@kneeraj-AIDE were you able to solve this?