@phren/cli 0.0.20 → 0.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -292,7 +292,7 @@ export async function buildGraph(phrenPath, profile, focusProject) {
292
292
  db = await buildIndex(phrenPath, profile);
293
293
  const rows = queryRows(db, `SELECT e.id, e.name, e.type, COUNT(DISTINCT el.source_doc) as ref_count
294
294
  FROM entities e JOIN entity_links el ON el.target_id = e.id WHERE e.type != 'document'
295
- GROUP BY e.id, e.name, e.type ORDER BY ref_count DESC LIMIT 500`, []);
295
+ GROUP BY e.id, e.name, e.type ORDER BY ref_count DESC LIMIT 5000`, []);
296
296
  const refRows = queryRows(db, `SELECT e.id, el.source_doc
297
297
  FROM entities e
298
298
  JOIN entity_links el ON el.target_id = e.id