flowquery 1.0.74 → 1.0.75
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.
- package/README.md +7 -0
- package/dist/flowquery.min.js +1 -1
- package/dist/parsing/statement_info_crawler.d.ts +20 -0
- package/dist/parsing/statement_info_crawler.d.ts.map +1 -1
- package/dist/parsing/statement_info_crawler.js +93 -10
- package/dist/parsing/statement_info_crawler.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1708,6 +1708,13 @@ Notes:
|
|
|
1708
1708
|
property reference.
|
|
1709
1709
|
- Multi-label intersection matches (`MATCH (n:A:B)`) populate every
|
|
1710
1710
|
label in `references[i].labels`.
|
|
1711
|
+
- For queries composed with `UNION` / `UNION ALL`, each output column's
|
|
1712
|
+
lineage is the **union** of the references contributed by every branch
|
|
1713
|
+
(deduplicated by `alias`, `kind`, `property`, and `labels`). The
|
|
1714
|
+
column `kind` is `aggregate` if any branch aggregates, the shared kind
|
|
1715
|
+
when all branches agree, and `expression` otherwise. Node labels,
|
|
1716
|
+
relationship types, and accessed properties are likewise collected
|
|
1717
|
+
from every branch.
|
|
1711
1718
|
|
|
1712
1719
|
#### Combining Lineage and Provenance: `traceRow()` and `lineage()`
|
|
1713
1720
|
|