(entitySetId)
| 51 | } |
| 52 | |
| 53 | export function entitySetSchemaCountsQuery(entitySetId) { |
| 54 | const path = entitySetId ? `entitysets/${entitySetId}/entities` : undefined; |
| 55 | return new Query(path, {}, {}, 'entities') |
| 56 | .add('facet', 'schema') |
| 57 | .add('filter:schemata', 'Thing') |
| 58 | .add('filter:schemata', 'Interval') |
| 59 | .limit(0); |
| 60 | } |
| 61 | |
| 62 | export function entitySetEntitiesQuery( |
| 63 | location, |
no test coverage detected