We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31a374a commit b08e696Copy full SHA for b08e696
csharp/ql/src/utils/model-generator/CaptureSummaryModelsQuery.ql
@@ -0,0 +1,16 @@
1
+/**
2
+ * @name Capture summary models.
3
+ * @description Finds applicable summary models to be used by other queries.
4
+ * @id csharp/utils/model-generator/summary-models
5
+ */
6
+
7
+import CaptureSummaryModels
8
9
+private string captureFlow(TargetAPI api) {
10
+ result = captureQualifierFlow(api) or
11
+ result = captureThroughFlow(api)
12
+}
13
14
+from TargetAPI api, string flow
15
+where flow = captureFlow(api)
16
+select flow order by flow
0 commit comments