We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab64d9a commit 5eaf682Copy full SHA for 5eaf682
docs/ql-libraries/dataflow/dataflow.md
@@ -618,12 +618,21 @@ impact on performance for large databases.
618
619
### Hidden nodes
620
621
-Certain synthetic nodes can be hidden to exclude them from occurring in path
622
-explanations. This is done through the following predicate:
+Certain synthetic nodes are hidden by default to prevent them from occurring in
+path explanations. Which nodes are included in this is determined by the
623
+following predicate:
624
+
625
```ql
626
predicate nodeIsHidden(Node n)
627
```
628
629
+To include these nodes in path explanations, add the following to a
630
+configuration:
631
632
+```ql
633
+predicate includeHiddenNodes() { any() }
634
+```
635
636
### Unreachable nodes
637
638
Consider:
0 commit comments