Resolve lambda fields at runtime#111
Closed
imranolas wants to merge 1 commit intographql-python:masterfrom
imranolas:lambda-fields
Closed
Resolve lambda fields at runtime#111imranolas wants to merge 1 commit intographql-python:masterfrom imranolas:lambda-fields
imranolas wants to merge 1 commit intographql-python:masterfrom
imranolas:lambda-fields
Conversation
Member
|
Hi @imranolas, You can actually do this if you don't want to use string references. class Category(graphene.ObjectType):
Post = graphene.List(graphene.LazyType(lambda _: Post))
from .post_type import Post
# post_type.py
class Post(graphene.ObjectType):
category = graphene.LazyType(lambda _: Category)Sorry it's not documented anywhere (Docs will be improved soon too!) |
Closed
Author
|
@syrusakbary: This is exactly what I was looking for. Thanks |
|
What is the status of it now? I don't see LazyType wrapper in graphene implementation now. Should I use lazy_import? |
|
Seems it has been removed again?! |
|
The currently working method is using string references: #110 (comment) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves #110
The following is now also valid and allow for circular dependencies to be resolved at runtime.