Commit 0aece20
docs(gfql): fix index_adjacency quick-start — working chain form, not unsupported Cypher
The quick-start ran a Cypher string 'MATCH (a)-[e]->(b) WHERE a.id IN $seeds
RETURN a, e, b' that hits a known limitation (#1273: row lowering supports one
MATCH source alias at a time), so it raised in test-docs and would mislead any
reader who copy-pasted it. Replace with the canonical native seeded-traversal
chain — [n({id: is_in(seeds)}), e_forward(), n()] — which is what this index page
is actually about, uses the index automatically, and runs green. Also defines the
previously-undefined my_seed_ids. Full doc-examples suite now passes locally.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent f395f62 commit 0aece20
1 file changed
Lines changed: 4 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| 33 | + | |
33 | 34 | | |
34 | 35 | | |
35 | 36 | | |
36 | 37 | | |
37 | 38 | | |
38 | 39 | | |
39 | | - | |
40 | | - | |
41 | | - | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
42 | 43 | | |
43 | 44 | | |
44 | 45 | | |
| |||
0 commit comments