Skip to content

Commit

Permalink
Fetch both nodes and links unlimited in initial graph rendering (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Jun 11, 2024
1 parent a70479f commit c1c7990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/modules/DBMSInfo/MetaItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const LabelItems = ({
if (labels.length) {
const editorCommandTemplate = (text: any, i: any) => {
if (i === 0) {
return 'MATCH (n) RETURN n LIMIT 25'
return 'MATCH (n)-[r]->(m) RETURN r, m, n'
}
return `MATCH (n:${escapeCypherIdentifier(text)}) RETURN n LIMIT 25`
}
Expand Down

0 comments on commit c1c7990

Please sign in to comment.