Merge branch 'refs/heads/master' into sqlalchemy

This commit is contained in:
Syrus Akbary 2016-01-22 21:18:35 -08:00
commit b86b5a7385

View File

@ -125,9 +125,13 @@ class Node(six.with_metaclass(NodeMeta, Interface)):
class Meta:
abstract = True
@classmethod
def global_id(cls, id):
type_name = cls._meta.type_name
return to_global_id(type_name, id)
def to_global_id(self):
type_name = self._meta.type_name
return to_global_id(type_name, self.id)
return self.global_id(self.id)
connection_type = Connection
edge_type = Edge