(location, collectionId)
| 25 | } |
| 26 | |
| 27 | export function collectionDocumentsQuery(location, collectionId) { |
| 28 | const context = { |
| 29 | 'filter:collection_id': collectionId, |
| 30 | 'filter:schemata': 'Document', |
| 31 | 'empty:properties.parent': true, |
| 32 | }; |
| 33 | return collectionContextQuery(context, location, collectionId, 'documents'); |
| 34 | } |
| 35 | |
| 36 | export function collectionEntitiesQuery(location, collectionId, schema) { |
| 37 | const context = { |
no test coverage detected