Lili Serfaty
Lili Serfaty
When trying to reference an object that's defined later in the file... This works: ``` class Foo(graphene.ObjectType): bars = graphene.List(graphene.NonNull(lambda: Bar)) class Bar(graphene.ObjectType): baz = graphene.String() ``` This does not...
I'm currently using `get_thumbnail` to upload an image and then immediate fetch it on a subsequent request. As it's well known, generating that thumbnail is a slow process, so it...
I'm currently using `gql_optimizer.query` in my resolvers to query for my objects of type `OptimizedDjangoObjectType`. However, I'm refactoring now so that the resolvers will derive from `graphene.Union` types so that...