Object relations
List related rows
Returns rows linked to this row via the given relation field.
get/public/v1/objects/{name}/rows/{id}/relations/{relation}
Path parameters
namestring required
Example:deals
idstring required
Row id (Mongo ObjectId)
Example:65cf9b3a4b7c2a0012a3b4c5
relationstring required
Example:companies
Response
Related rows
Example response
{
"ok": true,
"data": [
{
"id": "example",
"auto_id": 1,
"created_at": "example",
"updated_at": "example"
}
]
}