Full serialisation of related objects in API output

Currently related objects are serialized like

[{
    "id": 1,
    "value": "foo"
}]

In some cases though it might be useful if the whole related object could be serialized (if requested e.g. via additional URL-param), maybe something like

[{
    "id": 1,
    "value": "foo",
    "data": {
        "key1": "value1",
        "key2": "value2",
        "key3": [
            {
                "id": 1,
                "value": "foo"
            }
        ]
    }
}]
1 Like

Hello @csae8092, thanks for the feature request! We’ll discuss it with the team :slightly_smiling_face:

Hello @csae8092! Unfortunately, we don’t plan to introduce the feature you mentioned, for now. But we can advise you to use the Lookup field type to join more data, or make an API request to fetch the data of the related rows. Hope it will help :raised_hands:

Thanks for the follow up

1 Like