Roberto Estrada
Roberto Estrada
When will this patch be ready?
both are correct, the only difference is the import statement. [tutorial.rst](https://github.com/graphql-python/graphene-sqlalchemy/blob/08fcfc0b2548cd3519e4b19772acda4495089392/docs/tutorial.rst#schema) `from graphene import relay` [test_query.py](https://github.com/graphql-python/graphene-sqlalchemy/blob/08fcfc0b2548cd3519e4b19772acda4495089392/graphene_sqlalchemy/tests/test_query.py#L6) `from graphene.relay import Node`
It depends, To me, the second one is better since it's simple to remember you need a Node instance, and in this case, you only have a `relay.Node` instance but...