石墨烯创造独特的身份
Graphene creates unique ids
这里 relay tutorial 他们说:
Graphene creates globally unique IDs for all objects.
You may need to copy this value from the results of the first query
这些 ID 看起来像这样 SW5ncmVkaWVudE5vZGU6MQ==。当查询 id 字段中的项目列表时,可以看到 ids.
我怎样才能得到正常的(整数)ID?或者前端应该将 int id 转换为 string id?
创建自定义 relay.Node
class 并覆盖 from_global_id(...)
方法
from graphene import relay
class MyCustomNode(relay.Node):
<b>@classmethod
def from_global_id(cls, global_id):
return global_id</b>
这里 relay tutorial 他们说:
Graphene creates globally unique IDs for all objects.
You may need to copy this value from the results of the first query
这些 ID 看起来像这样 SW5ncmVkaWVudE5vZGU6MQ==。当查询 id 字段中的项目列表时,可以看到 ids.
我怎样才能得到正常的(整数)ID?或者前端应该将 int id 转换为 string id?
创建自定义 relay.Node
class 并覆盖 from_global_id(...)
方法
from graphene import relay
class MyCustomNode(relay.Node):
<b>@classmethod
def from_global_id(cls, global_id):
return global_id</b>