Skip to content

Commit b08e696

Browse files
committed
C#: Add query.
1 parent 31a374a commit b08e696

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)