-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Description
Hi, Thank you for the lib.
Would it be possible to add a mechanism for nested fields?
i.e. some how :
Given
GET http://127.0.0.1:8000/things/
[
{
"id": 1,
"key1": "val1",
"key2": "val2",
"key3":{
"id": 2,
"key1": "valA",
"key2": "valB",
"key3": "valC",
},
}
]then we could do :
GET http://127.0.0.1:8000/things/?fields=id,key3__id, key3__key2
[
{
"id": 1,
"key3":{
"id": 2,
"key2": "valB"
},
}
]Reactions are currently unavailable