mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-01-31 11:48:38 +03:00
Refactor to use formal to_global_id.
This commit is contained in:
parent
a461e80ee4
commit
959e98eeb0
|
@ -8,6 +8,7 @@ from py.test import raises
|
||||||
|
|
||||||
from django.db.models import Q
|
from django.db.models import Q
|
||||||
|
|
||||||
|
from graphql_relay import to_global_id
|
||||||
import graphene
|
import graphene
|
||||||
from graphene.relay import Node
|
from graphene.relay import Node
|
||||||
|
|
||||||
|
@ -947,19 +948,16 @@ def test_proxy_model_support():
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def str_to_node_id(val):
|
|
||||||
return base64.b64encode(val.encode()).decode()
|
|
||||||
|
|
||||||
expected = {
|
expected = {
|
||||||
"allReporters": {
|
"allReporters": {
|
||||||
"edges": [
|
"edges": [
|
||||||
{"node": {"id": str_to_node_id("ReporterType:{}".format(reporter.id))}},
|
{"node": {"id": to_global_id("ReporterType", reporter.id)}},
|
||||||
{"node": {"id": str_to_node_id("ReporterType:{}".format(cnn_reporter.id))}},
|
{"node": {"id": to_global_id("ReporterType", cnn_reporter.id)}},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"cnnReporters": {
|
"cnnReporters": {
|
||||||
"edges": [
|
"edges": [
|
||||||
{"node": {"id": str_to_node_id("CNNReporterType:{}".format(cnn_reporter.id))}}
|
{"node": {"id": to_global_id("CNNReporterType", cnn_reporter.id)}}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user