budibase/packages/frontend-core/src/api/relationships.js

17 lines
443 B
JavaScript
Raw Normal View History

export const buildRelationshipEndpoints = API => ({
/**
* Fetches related rows for a certain field of a certain row.
*/
fetchRelationshipData: async ({ tableId, rowId, fieldName }) => {
if (!tableId || !rowId) {
return []
}
const response = await API.get({ url: `/api/${tableId}/${rowId}/enrich` })
if (!fieldName) {
return response || []
} else {
return response[fieldName] || []
}
},
})