elad-aharon

Results 3 comments of elad-aharon

Hi all, We also encountered this issue trying to implement oneof: ``` # Define a @oneof directive for input objects. Those inputs will have to set exactly # one field....

Hi @sdemjanenko I think in your case you can workaround this by using `next` result convert it to the wanted type: ``` func OneOfHandler(ctx context.Context, obj any, next graphql.Resolver) (res...

I also noticed that, as a workaround I added response model to route: ``` @router.get("/{package_name}", response_model=FetchEntitiesPartitions) ``` but this is code repetition..