-
Notifications
You must be signed in to change notification settings - Fork 766
Closed
Labels
Description
Hi,
I would appreciate an insight about how to extend connection info with a custom object on the same level as "edges" and "pageInfo". For example please see "custom_object" below for location:
{
"data": {
"my_function": {
"custom_object": {
"field1": 101,
"field2": 66,
},
"pageInfo": {
"endCursor": "foo"
},
"edges": [
{
"node": {
"id": "bar",
}
},
...
]
}
}
}Python 2.7
graphene 2.0
Django 1.10
Thank you!
leahein