UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

8 lines (7 loc) 258 B
export function collectionsInFieldMap(fieldMap) { const collections = new Set(); for (const { collection } of [...fieldMap.other.values(), ...fieldMap.read.values()]) { collections.add(collection); } return Array.from(collections); }