@finos/legend-application-query 5.2.8 → 6.0.0

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.
Files changed (986) hide show
  1. package/lib/components/LegendQueryApplication.js +2 -2
  2. package/lib/components/LegendQueryApplication.js.map +1 -1
  3. package/lib/components/QueryEditor.d.ts +2 -2
  4. package/lib/components/QueryEditor.d.ts.map +1 -1
  5. package/lib/components/QueryEditor.js +14 -15
  6. package/lib/components/QueryEditor.js.map +1 -1
  7. package/lib/components/QueryEditorComponentTestUtils.d.ts +5 -1
  8. package/lib/components/QueryEditorComponentTestUtils.d.ts.map +1 -1
  9. package/lib/components/QueryEditorComponentTestUtils.js +17 -14
  10. package/lib/components/QueryEditorComponentTestUtils.js.map +1 -1
  11. package/lib/components/QueryEditorStoreProvider.d.ts +2 -3
  12. package/lib/components/QueryEditorStoreProvider.d.ts.map +1 -1
  13. package/lib/components/QueryEditorStoreProvider.js +5 -5
  14. package/lib/components/QueryEditorStoreProvider.js.map +1 -1
  15. package/lib/components/QuerySetup.js +17 -17
  16. package/lib/components/QuerySetup.js.map +1 -1
  17. package/lib/components/query-builder/QueryBuilder.d.ts +23 -0
  18. package/lib/components/query-builder/QueryBuilder.d.ts.map +1 -0
  19. package/lib/components/query-builder/QueryBuilder.js +111 -0
  20. package/lib/components/query-builder/QueryBuilder.js.map +1 -0
  21. package/lib/components/query-builder/QueryBuilderParametersPanel.d.ts +32 -0
  22. package/lib/components/query-builder/QueryBuilderParametersPanel.d.ts.map +1 -0
  23. package/lib/components/query-builder/QueryBuilderParametersPanel.js +128 -0
  24. package/lib/components/query-builder/QueryBuilderParametersPanel.js.map +1 -0
  25. package/lib/components/query-builder/QueryBuilderPropertyExpressionEditor.d.ts +30 -0
  26. package/lib/components/query-builder/QueryBuilderPropertyExpressionEditor.d.ts.map +1 -0
  27. package/lib/components/query-builder/QueryBuilderPropertyExpressionEditor.js +116 -0
  28. package/lib/components/query-builder/QueryBuilderPropertyExpressionEditor.js.map +1 -0
  29. package/lib/components/query-builder/QueryBuilderResultPanel.d.ts +23 -0
  30. package/lib/components/query-builder/QueryBuilderResultPanel.d.ts.map +1 -0
  31. package/lib/components/query-builder/QueryBuilderResultPanel.js +242 -0
  32. package/lib/components/query-builder/QueryBuilderResultPanel.js.map +1 -0
  33. package/lib/components/query-builder/QueryBuilderSideBar.d.ts +42 -0
  34. package/lib/components/query-builder/QueryBuilderSideBar.d.ts.map +1 -0
  35. package/lib/components/query-builder/QueryBuilderSideBar.js +169 -0
  36. package/lib/components/query-builder/QueryBuilderSideBar.js.map +1 -0
  37. package/lib/components/query-builder/QueryBuilderTextEditor.d.ts +23 -0
  38. package/lib/components/query-builder/QueryBuilderTextEditor.d.ts.map +1 -0
  39. package/lib/components/query-builder/QueryBuilderTextEditor.js +48 -0
  40. package/lib/components/query-builder/QueryBuilderTextEditor.js.map +1 -0
  41. package/lib/components/query-builder/QueryBuilderUnsupportedQueryEditor.d.ts +23 -0
  42. package/lib/components/query-builder/QueryBuilderUnsupportedQueryEditor.d.ts.map +1 -0
  43. package/lib/components/query-builder/QueryBuilderUnsupportedQueryEditor.js +36 -0
  44. package/lib/components/query-builder/QueryBuilderUnsupportedQueryEditor.js.map +1 -0
  45. package/lib/components/{QueryBuilder_TestID.d.ts → query-builder/QueryBuilder_TestID.d.ts} +0 -0
  46. package/lib/components/query-builder/QueryBuilder_TestID.d.ts.map +1 -0
  47. package/lib/components/{QueryBuilder_TestID.js → query-builder/QueryBuilder_TestID.js} +0 -0
  48. package/lib/components/query-builder/QueryBuilder_TestID.js.map +1 -0
  49. package/lib/components/query-builder/explorer/QueryBuilderExplorerPanel.d.ts +36 -0
  50. package/lib/components/query-builder/explorer/QueryBuilderExplorerPanel.d.ts.map +1 -0
  51. package/lib/components/query-builder/explorer/QueryBuilderExplorerPanel.js +340 -0
  52. package/lib/components/query-builder/explorer/QueryBuilderExplorerPanel.js.map +1 -0
  53. package/lib/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.d.ts +23 -0
  54. package/lib/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.d.ts.map +1 -0
  55. package/lib/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.js +147 -0
  56. package/lib/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.js.map +1 -0
  57. package/lib/components/query-builder/explorer/QueryBuilderMilestoneEditor.d.ts +23 -0
  58. package/lib/components/query-builder/explorer/QueryBuilderMilestoneEditor.d.ts.map +1 -0
  59. package/lib/components/query-builder/explorer/QueryBuilderMilestoneEditor.js +122 -0
  60. package/lib/components/query-builder/explorer/QueryBuilderMilestoneEditor.js.map +1 -0
  61. package/lib/components/query-builder/explorer/QueryBuilderPropertySearchPanel.d.ts +24 -0
  62. package/lib/components/query-builder/explorer/QueryBuilderPropertySearchPanel.d.ts.map +1 -0
  63. package/lib/components/query-builder/explorer/QueryBuilderPropertySearchPanel.js +200 -0
  64. package/lib/components/query-builder/explorer/QueryBuilderPropertySearchPanel.js.map +1 -0
  65. package/lib/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.d.ts +23 -0
  66. package/lib/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.d.ts.map +1 -0
  67. package/lib/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.js +52 -0
  68. package/lib/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.js.map +1 -0
  69. package/lib/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts +32 -0
  70. package/lib/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts.map +1 -0
  71. package/lib/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.js +94 -0
  72. package/lib/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.js.map +1 -0
  73. package/lib/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.d.ts +31 -0
  74. package/lib/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.d.ts.map +1 -0
  75. package/lib/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.js +378 -0
  76. package/lib/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.js.map +1 -0
  77. package/lib/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.d.ts +23 -0
  78. package/lib/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.d.ts.map +1 -0
  79. package/lib/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.js +216 -0
  80. package/lib/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.js.map +1 -0
  81. package/lib/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.d.ts +23 -0
  82. package/lib/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.d.ts.map +1 -0
  83. package/lib/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.js +88 -0
  84. package/lib/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.js.map +1 -0
  85. package/lib/components/query-builder/filter/QueryBuilderFilterPanel.d.ts +23 -0
  86. package/lib/components/query-builder/filter/QueryBuilderFilterPanel.d.ts.map +1 -0
  87. package/lib/components/query-builder/filter/QueryBuilderFilterPanel.js +316 -0
  88. package/lib/components/query-builder/filter/QueryBuilderFilterPanel.js.map +1 -0
  89. package/lib/components/{shared → query-builder/shared}/ElementIconUtils.d.ts +0 -0
  90. package/lib/components/query-builder/shared/ElementIconUtils.d.ts.map +1 -0
  91. package/lib/components/{shared → query-builder/shared}/ElementIconUtils.js +0 -0
  92. package/lib/components/query-builder/shared/ElementIconUtils.js.map +1 -0
  93. package/lib/components/query-builder/shared/QueryBuilderLambdaEditor.d.ts +43 -0
  94. package/lib/components/query-builder/shared/QueryBuilderLambdaEditor.d.ts.map +1 -0
  95. package/lib/components/{shared → query-builder/shared}/QueryBuilderLambdaEditor.js +0 -0
  96. package/lib/components/query-builder/shared/QueryBuilderLambdaEditor.js.map +1 -0
  97. package/lib/components/{shared → query-builder/shared}/QueryBuilderPanelIssueCountBadge.d.ts +0 -0
  98. package/lib/components/query-builder/shared/QueryBuilderPanelIssueCountBadge.d.ts.map +1 -0
  99. package/lib/components/{shared → query-builder/shared}/QueryBuilderPanelIssueCountBadge.js +0 -0
  100. package/lib/components/query-builder/shared/QueryBuilderPanelIssueCountBadge.js.map +1 -0
  101. package/lib/components/{shared → query-builder/shared}/QueryBuilderPropertyInfoTooltip.d.ts +0 -0
  102. package/lib/components/query-builder/shared/QueryBuilderPropertyInfoTooltip.d.ts.map +1 -0
  103. package/lib/components/{shared → query-builder/shared}/QueryBuilderPropertyInfoTooltip.js +0 -0
  104. package/lib/components/query-builder/shared/QueryBuilderPropertyInfoTooltip.js.map +1 -0
  105. package/lib/components/query-builder/workflows/ClassQueryBuilder.d.ts +18 -0
  106. package/lib/components/query-builder/workflows/ClassQueryBuilder.d.ts.map +1 -0
  107. package/lib/components/query-builder/workflows/ClassQueryBuilder.js +87 -0
  108. package/lib/components/query-builder/workflows/ClassQueryBuilder.js.map +1 -0
  109. package/lib/components/query-builder/workflows/MappingQueryBuilder.d.ts +18 -0
  110. package/lib/components/query-builder/workflows/MappingQueryBuilder.d.ts.map +1 -0
  111. package/lib/components/query-builder/workflows/MappingQueryBuilder.js +88 -0
  112. package/lib/components/query-builder/workflows/MappingQueryBuilder.js.map +1 -0
  113. package/lib/components/query-builder/workflows/ServiceQueryBuilder.d.ts +18 -0
  114. package/lib/components/query-builder/workflows/ServiceQueryBuilder.d.ts.map +1 -0
  115. package/lib/components/query-builder/workflows/ServiceQueryBuilder.js +69 -0
  116. package/lib/components/query-builder/workflows/ServiceQueryBuilder.js.map +1 -0
  117. package/lib/graphManager/QueryBuilderSupportedFunctions.d.ts +60 -0
  118. package/lib/graphManager/QueryBuilderSupportedFunctions.d.ts.map +1 -0
  119. package/lib/graphManager/QueryBuilderSupportedFunctions.js +65 -0
  120. package/lib/graphManager/QueryBuilderSupportedFunctions.js.map +1 -0
  121. package/lib/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.js +1 -1
  122. package/lib/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.js.map +1 -1
  123. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.d.ts.map +1 -1
  124. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.js +4 -4
  125. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.js.map +1 -1
  126. package/lib/index.css +2 -2
  127. package/lib/index.css.map +1 -1
  128. package/lib/index.d.ts +8 -3
  129. package/lib/index.d.ts.map +1 -1
  130. package/lib/index.js +9 -3
  131. package/lib/index.js.map +1 -1
  132. package/lib/package.json +6 -6
  133. package/lib/stores/LegendQueryApplicationPlugin.d.ts +7 -0
  134. package/lib/stores/LegendQueryApplicationPlugin.d.ts.map +1 -1
  135. package/lib/stores/LegendQueryApplicationPlugin.js.map +1 -1
  136. package/lib/stores/LegendQueryRouter.d.ts +8 -12
  137. package/lib/stores/LegendQueryRouter.d.ts.map +1 -1
  138. package/lib/stores/LegendQueryRouter.js +6 -7
  139. package/lib/stores/LegendQueryRouter.js.map +1 -1
  140. package/lib/stores/QueryEditorStore.d.ts +11 -11
  141. package/lib/stores/QueryEditorStore.d.ts.map +1 -1
  142. package/lib/stores/QueryEditorStore.js +68 -64
  143. package/lib/stores/QueryEditorStore.js.map +1 -1
  144. package/lib/stores/QuerySetupStore.d.ts +3 -3
  145. package/lib/stores/QuerySetupStore.d.ts.map +1 -1
  146. package/lib/stores/QuerySetupStore.js +3 -3
  147. package/lib/stores/QuerySetupStore.js.map +1 -1
  148. package/lib/stores/query-builder/QueryBuilderChangeDetectionState.d.ts +25 -0
  149. package/lib/stores/query-builder/QueryBuilderChangeDetectionState.d.ts.map +1 -0
  150. package/lib/stores/query-builder/QueryBuilderChangeDetectionState.js +32 -0
  151. package/lib/stores/query-builder/QueryBuilderChangeDetectionState.js.map +1 -0
  152. package/lib/stores/query-builder/QueryBuilderConfig.d.ts +32 -0
  153. package/lib/stores/query-builder/QueryBuilderConfig.d.ts.map +1 -0
  154. package/lib/stores/query-builder/QueryBuilderConfig.js +34 -0
  155. package/lib/stores/query-builder/QueryBuilderConfig.js.map +1 -0
  156. package/lib/stores/{QueryBuilderGroupOperationHelper.d.ts → query-builder/QueryBuilderGroupOperationHelper.d.ts} +0 -0
  157. package/lib/stores/query-builder/QueryBuilderGroupOperationHelper.d.ts.map +1 -0
  158. package/lib/stores/query-builder/QueryBuilderGroupOperationHelper.js +43 -0
  159. package/lib/stores/query-builder/QueryBuilderGroupOperationHelper.js.map +1 -0
  160. package/lib/stores/query-builder/QueryBuilderMilestoningState.d.ts +32 -0
  161. package/lib/stores/query-builder/QueryBuilderMilestoningState.d.ts.map +1 -0
  162. package/lib/stores/query-builder/QueryBuilderMilestoningState.js +95 -0
  163. package/lib/stores/query-builder/QueryBuilderMilestoningState.js.map +1 -0
  164. package/lib/stores/query-builder/QueryBuilderParametersState.d.ts +28 -0
  165. package/lib/stores/query-builder/QueryBuilderParametersState.d.ts.map +1 -0
  166. package/lib/stores/query-builder/QueryBuilderParametersState.js +39 -0
  167. package/lib/stores/query-builder/QueryBuilderParametersState.js.map +1 -0
  168. package/lib/stores/{QueryBuilderPreviewDataHelper.d.ts → query-builder/QueryBuilderPreviewDataHelper.d.ts} +0 -0
  169. package/lib/stores/query-builder/QueryBuilderPreviewDataHelper.d.ts.map +1 -0
  170. package/lib/stores/query-builder/QueryBuilderPreviewDataHelper.js +138 -0
  171. package/lib/stores/query-builder/QueryBuilderPreviewDataHelper.js.map +1 -0
  172. package/lib/stores/{QueryBuilderPropertyEditorState.d.ts → query-builder/QueryBuilderPropertyEditorState.d.ts} +0 -0
  173. package/lib/stores/query-builder/QueryBuilderPropertyEditorState.d.ts.map +1 -0
  174. package/lib/stores/query-builder/QueryBuilderPropertyEditorState.js +395 -0
  175. package/lib/stores/query-builder/QueryBuilderPropertyEditorState.js.map +1 -0
  176. package/lib/stores/{QueryBuilderResultState.d.ts → query-builder/QueryBuilderResultState.d.ts} +0 -0
  177. package/lib/stores/query-builder/QueryBuilderResultState.d.ts.map +1 -0
  178. package/lib/stores/query-builder/QueryBuilderResultState.js +176 -0
  179. package/lib/stores/query-builder/QueryBuilderResultState.js.map +1 -0
  180. package/lib/stores/query-builder/QueryBuilderState.d.ts +112 -0
  181. package/lib/stores/query-builder/QueryBuilderState.d.ts.map +1 -0
  182. package/lib/stores/query-builder/QueryBuilderState.js +337 -0
  183. package/lib/stores/query-builder/QueryBuilderState.js.map +1 -0
  184. package/lib/stores/{QueryBuilderStateBuilder.d.ts → query-builder/QueryBuilderStateBuilder.d.ts} +0 -0
  185. package/lib/stores/query-builder/QueryBuilderStateBuilder.d.ts.map +1 -0
  186. package/lib/stores/query-builder/QueryBuilderStateBuilder.js +311 -0
  187. package/lib/stores/query-builder/QueryBuilderStateBuilder.js.map +1 -0
  188. package/lib/stores/query-builder/QueryBuilderStateTestUtils.d.ts +24 -0
  189. package/lib/stores/query-builder/QueryBuilderStateTestUtils.d.ts.map +1 -0
  190. package/lib/stores/query-builder/QueryBuilderStateTestUtils.js +50 -0
  191. package/lib/stores/query-builder/QueryBuilderStateTestUtils.js.map +1 -0
  192. package/lib/stores/query-builder/QueryBuilderTextEditorState.d.ts +49 -0
  193. package/lib/stores/query-builder/QueryBuilderTextEditorState.d.ts.map +1 -0
  194. package/lib/stores/query-builder/QueryBuilderTextEditorState.js +145 -0
  195. package/lib/stores/query-builder/QueryBuilderTextEditorState.js.map +1 -0
  196. package/lib/stores/{QueryBuilderTypeaheadHelper.d.ts → query-builder/QueryBuilderTypeaheadHelper.d.ts} +0 -0
  197. package/lib/stores/query-builder/QueryBuilderTypeaheadHelper.d.ts.map +1 -0
  198. package/lib/stores/query-builder/QueryBuilderTypeaheadHelper.js +85 -0
  199. package/lib/stores/query-builder/QueryBuilderTypeaheadHelper.js.map +1 -0
  200. package/lib/stores/query-builder/QueryBuilderUnsupportedQueryState.d.ts +26 -0
  201. package/lib/stores/query-builder/QueryBuilderUnsupportedQueryState.d.ts.map +1 -0
  202. package/lib/stores/query-builder/QueryBuilderUnsupportedQueryState.js +37 -0
  203. package/lib/stores/query-builder/QueryBuilderUnsupportedQueryState.js.map +1 -0
  204. package/lib/stores/{QueryBuilderValueSpecificationBuilder.d.ts → query-builder/QueryBuilderValueSpecificationBuilder.d.ts} +0 -0
  205. package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilder.d.ts.map +1 -0
  206. package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilder.js +87 -0
  207. package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilder.js.map +1 -0
  208. package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.d.ts +27 -0
  209. package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.d.ts.map +1 -0
  210. package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.js +161 -0
  211. package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.js.map +1 -0
  212. package/lib/stores/{QueryBuilderValueSpecificationHelper.d.ts → query-builder/QueryBuilderValueSpecificationHelper.d.ts} +0 -0
  213. package/lib/stores/query-builder/QueryBuilderValueSpecificationHelper.d.ts.map +1 -0
  214. package/lib/stores/query-builder/QueryBuilderValueSpecificationHelper.js +235 -0
  215. package/lib/stores/query-builder/QueryBuilderValueSpecificationHelper.js.map +1 -0
  216. package/lib/stores/query-builder/explorer/QueryBuilderExplorerState.d.ts +99 -0
  217. package/lib/stores/query-builder/explorer/QueryBuilderExplorerState.d.ts.map +1 -0
  218. package/lib/stores/query-builder/explorer/QueryBuilderExplorerState.js +446 -0
  219. package/lib/stores/query-builder/explorer/QueryBuilderExplorerState.js.map +1 -0
  220. package/lib/stores/query-builder/explorer/QueryBuilderPropertySearchState.d.ts +46 -0
  221. package/lib/stores/query-builder/explorer/QueryBuilderPropertySearchState.d.ts.map +1 -0
  222. package/lib/stores/query-builder/explorer/QueryBuilderPropertySearchState.js +242 -0
  223. package/lib/stores/query-builder/explorer/QueryBuilderPropertySearchState.js.map +1 -0
  224. package/lib/stores/{explorer → query-builder/explorer}/QueryFunctionsExplorerState.d.ts +0 -0
  225. package/lib/stores/query-builder/explorer/QueryFunctionsExplorerState.d.ts.map +1 -0
  226. package/lib/stores/query-builder/explorer/QueryFunctionsExplorerState.js +228 -0
  227. package/lib/stores/query-builder/explorer/QueryFunctionsExplorerState.js.map +1 -0
  228. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/QueryBuilderFetchStructureImplementationState.d.ts +0 -0
  229. package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureImplementationState.d.ts.map +1 -0
  230. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/QueryBuilderFetchStructureImplementationState.js +0 -0
  231. package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureImplementationState.js.map +1 -0
  232. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/QueryBuilderFetchStructureState.d.ts +0 -0
  233. package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureState.d.ts.map +1 -0
  234. package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureState.js +73 -0
  235. package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureState.js.map +1 -0
  236. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/graph-fetch/QueryBuilderGraphFetchTreeState.d.ts +0 -0
  237. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.d.ts.map +1 -0
  238. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js +157 -0
  239. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js.map +1 -0
  240. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.d.ts +0 -0
  241. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.d.ts.map +1 -0
  242. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.js +62 -0
  243. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.js.map +1 -0
  244. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/graph-fetch/QueryBuilderGraphFetchTreeUtil.d.ts +0 -0
  245. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.d.ts.map +1 -0
  246. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/graph-fetch/QueryBuilderGraphFetchTreeUtil.js +0 -0
  247. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.js.map +1 -0
  248. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.d.ts +0 -0
  249. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.d.ts.map +1 -0
  250. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js +72 -0
  251. package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js.map +1 -0
  252. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryBuilderProjectionColumnState.d.ts +0 -0
  253. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.d.ts.map +1 -0
  254. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.js +187 -0
  255. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.js.map +1 -0
  256. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryBuilderProjectionState.d.ts +0 -0
  257. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.d.ts.map +1 -0
  258. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.js +305 -0
  259. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.js.map +1 -0
  260. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryBuilderProjectionStateBuilder.d.ts +0 -0
  261. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionStateBuilder.d.ts.map +1 -0
  262. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionStateBuilder.js +186 -0
  263. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionStateBuilder.js.map +1 -0
  264. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryBuilderProjectionValueSpecificationBuilder.d.ts +0 -0
  265. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.d.ts.map +1 -0
  266. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js +189 -0
  267. package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js.map +1 -0
  268. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryResultSetModifierState.d.ts +0 -0
  269. package/lib/stores/query-builder/fetch-structure/projection/QueryResultSetModifierState.d.ts.map +1 -0
  270. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryResultSetModifierState.js +0 -0
  271. package/lib/stores/query-builder/fetch-structure/projection/QueryResultSetModifierState.js.map +1 -0
  272. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperator.d.ts +0 -0
  273. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.d.ts.map +1 -0
  274. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperator.js +0 -0
  275. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.js.map +1 -0
  276. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperatorLoader.d.ts +0 -0
  277. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.d.ts.map +1 -0
  278. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperatorLoader.js +0 -0
  279. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.js.map +1 -0
  280. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregationState.d.ts +0 -0
  281. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationState.d.ts.map +1 -0
  282. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js +103 -0
  283. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js.map +1 -0
  284. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregationStateBuilder.d.ts +0 -0
  285. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.d.ts.map +1 -0
  286. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.js +96 -0
  287. package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.js.map +1 -0
  288. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.d.ts +0 -0
  289. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.d.ts.map +1 -0
  290. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.js +0 -0
  291. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.js.map +1 -0
  292. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.d.ts +0 -0
  293. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.d.ts.map +1 -0
  294. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js +50 -0
  295. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js.map +1 -0
  296. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.d.ts +0 -0
  297. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.d.ts.map +1 -0
  298. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js +55 -0
  299. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js.map +1 -0
  300. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.d.ts +0 -0
  301. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.d.ts.map +1 -0
  302. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js +50 -0
  303. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js.map +1 -0
  304. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.d.ts +0 -0
  305. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.d.ts.map +1 -0
  306. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js +78 -0
  307. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js.map +1 -0
  308. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.d.ts +0 -0
  309. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.d.ts.map +1 -0
  310. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js +67 -0
  311. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js.map +1 -0
  312. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.d.ts +0 -0
  313. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.d.ts.map +1 -0
  314. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js +86 -0
  315. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js.map +1 -0
  316. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.d.ts +0 -0
  317. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.d.ts.map +1 -0
  318. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js +86 -0
  319. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js.map +1 -0
  320. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.d.ts +0 -0
  321. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.d.ts.map +1 -0
  322. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js +50 -0
  323. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js.map +1 -0
  324. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.d.ts +0 -0
  325. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.d.ts.map +1 -0
  326. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js +50 -0
  327. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js.map +1 -0
  328. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.d.ts +0 -0
  329. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.d.ts.map +1 -0
  330. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js +45 -0
  331. package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js.map +1 -0
  332. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperator.d.ts +0 -0
  333. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.d.ts.map +1 -0
  334. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperator.js +0 -0
  335. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.js.map +1 -0
  336. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperatorLoader.d.ts +0 -0
  337. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.d.ts.map +1 -0
  338. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperatorLoader.js +0 -0
  339. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.js.map +1 -0
  340. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterState.d.ts +0 -0
  341. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.d.ts.map +1 -0
  342. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js +585 -0
  343. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js.map +1 -0
  344. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterStateBuilder.d.ts +0 -0
  345. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.d.ts.map +1 -0
  346. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.js +122 -0
  347. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.js.map +1 -0
  348. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.d.ts +0 -0
  349. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.d.ts.map +1 -0
  350. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js +79 -0
  351. package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js.map +1 -0
  352. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.d.ts +0 -0
  353. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.d.ts.map +1 -0
  354. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js +73 -0
  355. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js.map +1 -0
  356. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.d.ts +0 -0
  357. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.d.ts.map +1 -0
  358. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js +75 -0
  359. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js.map +1 -0
  360. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.d.ts +0 -0
  361. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.d.ts.map +1 -0
  362. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js +75 -0
  363. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js.map +1 -0
  364. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.d.ts +0 -0
  365. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.d.ts.map +1 -0
  366. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js +118 -0
  367. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js.map +1 -0
  368. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.d.ts +0 -0
  369. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.d.ts.map +1 -0
  370. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js +81 -0
  371. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js.map +1 -0
  372. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.d.ts +0 -0
  373. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.d.ts.map +1 -0
  374. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js +43 -0
  375. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js.map +1 -0
  376. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.d.ts +0 -0
  377. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.d.ts.map +1 -0
  378. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js +104 -0
  379. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js.map +1 -0
  380. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.d.ts +0 -0
  381. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.d.ts.map +1 -0
  382. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.js +0 -0
  383. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.js.map +1 -0
  384. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.d.ts +0 -0
  385. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.d.ts.map +1 -0
  386. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js +81 -0
  387. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js.map +1 -0
  388. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.d.ts +0 -0
  389. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.d.ts.map +1 -0
  390. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js +43 -0
  391. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js.map +1 -0
  392. package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.d.ts +0 -0
  393. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.d.ts.map +1 -0
  394. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js +75 -0
  395. package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js.map +1 -0
  396. package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterOperator.d.ts +0 -0
  397. package/lib/stores/query-builder/filter/QueryBuilderFilterOperator.d.ts.map +1 -0
  398. package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterOperator.js +0 -0
  399. package/lib/stores/query-builder/filter/QueryBuilderFilterOperator.js.map +1 -0
  400. package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterOperatorLoader.d.ts +0 -0
  401. package/lib/stores/query-builder/filter/QueryBuilderFilterOperatorLoader.d.ts.map +1 -0
  402. package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterOperatorLoader.js +0 -0
  403. package/lib/stores/query-builder/filter/QueryBuilderFilterOperatorLoader.js.map +1 -0
  404. package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterState.d.ts +0 -0
  405. package/lib/stores/query-builder/filter/QueryBuilderFilterState.d.ts.map +1 -0
  406. package/lib/stores/query-builder/filter/QueryBuilderFilterState.js +531 -0
  407. package/lib/stores/query-builder/filter/QueryBuilderFilterState.js.map +1 -0
  408. package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterStateBuilder.d.ts +0 -0
  409. package/lib/stores/query-builder/filter/QueryBuilderFilterStateBuilder.d.ts.map +1 -0
  410. package/lib/stores/query-builder/filter/QueryBuilderFilterStateBuilder.js +74 -0
  411. package/lib/stores/query-builder/filter/QueryBuilderFilterStateBuilder.js.map +1 -0
  412. package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterValueSpecificationBuilder.d.ts +0 -0
  413. package/lib/stores/query-builder/filter/QueryBuilderFilterValueSpecificationBuilder.d.ts.map +1 -0
  414. package/lib/stores/query-builder/filter/QueryBuilderFilterValueSpecificationBuilder.js +78 -0
  415. package/lib/stores/query-builder/filter/QueryBuilderFilterValueSpecificationBuilder.js.map +1 -0
  416. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperatorHelper.d.ts +0 -0
  417. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperatorHelper.d.ts.map +1 -0
  418. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperatorHelper.js +257 -0
  419. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperatorHelper.js.map +1 -0
  420. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_Contain.d.ts +0 -0
  421. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Contain.d.ts.map +1 -0
  422. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Contain.js +71 -0
  423. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Contain.js.map +1 -0
  424. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_EndWith.d.ts +0 -0
  425. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_EndWith.d.ts.map +1 -0
  426. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_EndWith.js +71 -0
  427. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_EndWith.js.map +1 -0
  428. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_Equal.d.ts +0 -0
  429. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Equal.d.ts.map +1 -0
  430. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Equal.js +115 -0
  431. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Equal.js.map +1 -0
  432. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_GreaterThan.d.ts +0 -0
  433. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThan.d.ts.map +1 -0
  434. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThan.js +83 -0
  435. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThan.js.map +1 -0
  436. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_GreaterThanEqual.d.ts +0 -0
  437. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.d.ts.map +1 -0
  438. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js +83 -0
  439. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js.map +1 -0
  440. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_In.d.ts +0 -0
  441. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_In.d.ts.map +1 -0
  442. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_In.js +103 -0
  443. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_In.js.map +1 -0
  444. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_IsEmpty.d.ts +0 -0
  445. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_IsEmpty.d.ts.map +1 -0
  446. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_IsEmpty.js +65 -0
  447. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_IsEmpty.js.map +1 -0
  448. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_LessThan.d.ts +0 -0
  449. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThan.d.ts.map +1 -0
  450. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThan.js +83 -0
  451. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThan.js.map +1 -0
  452. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_LessThanEqual.d.ts +0 -0
  453. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThanEqual.d.ts.map +1 -0
  454. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js +83 -0
  455. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js.map +1 -0
  456. package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_StartWith.d.ts +0 -0
  457. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_StartWith.d.ts.map +1 -0
  458. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_StartWith.js +71 -0
  459. package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_StartWith.js.map +1 -0
  460. package/lib/stores/query-builder/workflows/ClassQueryBuilderState.d.ts +35 -0
  461. package/lib/stores/query-builder/workflows/ClassQueryBuilderState.d.ts.map +1 -0
  462. package/lib/stores/query-builder/workflows/ClassQueryBuilderState.js +57 -0
  463. package/lib/stores/query-builder/workflows/ClassQueryBuilderState.js.map +1 -0
  464. package/lib/stores/query-builder/workflows/MappingQueryBuilderState.d.ts +33 -0
  465. package/lib/stores/query-builder/workflows/MappingQueryBuilderState.d.ts.map +1 -0
  466. package/lib/stores/query-builder/workflows/MappingQueryBuilderState.js +55 -0
  467. package/lib/stores/query-builder/workflows/MappingQueryBuilderState.js.map +1 -0
  468. package/lib/stores/query-builder/workflows/ServiceQueryBuilderState.d.ts +44 -0
  469. package/lib/stores/query-builder/workflows/ServiceQueryBuilderState.d.ts.map +1 -0
  470. package/lib/stores/query-builder/workflows/ServiceQueryBuilderState.js +90 -0
  471. package/lib/stores/query-builder/workflows/ServiceQueryBuilderState.js.map +1 -0
  472. package/package.json +13 -13
  473. package/src/components/LegendQueryApplication.tsx +7 -7
  474. package/src/components/QueryEditor.tsx +100 -97
  475. package/src/components/QueryEditorComponentTestUtils.tsx +28 -19
  476. package/src/components/QueryEditorStoreProvider.tsx +7 -9
  477. package/src/components/QuerySetup.tsx +25 -25
  478. package/src/components/query-builder/QueryBuilder.tsx +411 -0
  479. package/src/components/query-builder/QueryBuilderParametersPanel.tsx +431 -0
  480. package/src/components/query-builder/QueryBuilderPropertyExpressionEditor.tsx +376 -0
  481. package/src/components/query-builder/QueryBuilderResultPanel.tsx +640 -0
  482. package/src/components/query-builder/QueryBuilderSideBar.tsx +421 -0
  483. package/src/components/query-builder/QueryBuilderTextEditor.tsx +127 -0
  484. package/src/components/query-builder/QueryBuilderUnsupportedQueryEditor.tsx +88 -0
  485. package/src/components/{QueryBuilder_TestID.ts → query-builder/QueryBuilder_TestID.ts} +0 -0
  486. package/src/components/query-builder/explorer/QueryBuilderExplorerPanel.tsx +934 -0
  487. package/src/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.tsx +554 -0
  488. package/src/components/query-builder/explorer/QueryBuilderMilestoneEditor.tsx +296 -0
  489. package/src/components/query-builder/explorer/QueryBuilderPropertySearchPanel.tsx +617 -0
  490. package/src/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.tsx +112 -0
  491. package/src/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.tsx +276 -0
  492. package/src/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.tsx +1103 -0
  493. package/src/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.tsx +649 -0
  494. package/src/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.tsx +254 -0
  495. package/src/components/query-builder/filter/QueryBuilderFilterPanel.tsx +891 -0
  496. package/src/components/{shared → query-builder/shared}/ElementIconUtils.tsx +0 -0
  497. package/src/components/query-builder/shared/QueryBuilderLambdaEditor.tsx +120 -0
  498. package/src/components/{shared → query-builder/shared}/QueryBuilderPanelIssueCountBadge.tsx +0 -0
  499. package/src/components/{shared → query-builder/shared}/QueryBuilderPropertyInfoTooltip.tsx +0 -0
  500. package/src/components/query-builder/workflows/ClassQueryBuilder.tsx +198 -0
  501. package/src/components/query-builder/workflows/MappingQueryBuilder.tsx +195 -0
  502. package/src/components/query-builder/workflows/ServiceQueryBuilder.tsx +192 -0
  503. package/src/graphManager/QueryBuilderSupportedFunctions.ts +67 -0
  504. package/src/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.ts +1 -1
  505. package/src/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.ts +4 -6
  506. package/src/index.ts +14 -7
  507. package/src/stores/LegendQueryApplicationPlugin.ts +12 -0
  508. package/src/stores/LegendQueryRouter.ts +11 -16
  509. package/src/stores/QueryEditorStore.ts +133 -107
  510. package/src/stores/QuerySetupStore.ts +3 -3
  511. package/src/stores/query-builder/QueryBuilderChangeDetectionState.ts +37 -0
  512. package/src/stores/query-builder/QueryBuilderConfig.ts +34 -0
  513. package/src/stores/query-builder/QueryBuilderGroupOperationHelper.ts +54 -0
  514. package/src/stores/query-builder/QueryBuilderMilestoningState.ts +164 -0
  515. package/src/stores/query-builder/QueryBuilderParametersState.ts +52 -0
  516. package/src/stores/query-builder/QueryBuilderPreviewDataHelper.ts +202 -0
  517. package/src/stores/query-builder/QueryBuilderPropertyEditorState.ts +668 -0
  518. package/src/stores/query-builder/QueryBuilderResultState.ts +281 -0
  519. package/src/stores/query-builder/QueryBuilderState.ts +470 -0
  520. package/src/stores/query-builder/QueryBuilderStateBuilder.ts +585 -0
  521. package/src/stores/query-builder/QueryBuilderStateTestUtils.ts +91 -0
  522. package/src/stores/query-builder/QueryBuilderTextEditorState.ts +203 -0
  523. package/src/stores/query-builder/QueryBuilderTypeaheadHelper.ts +152 -0
  524. package/src/stores/query-builder/QueryBuilderUnsupportedQueryState.ts +44 -0
  525. package/src/stores/query-builder/QueryBuilderValueSpecificationBuilder.ts +179 -0
  526. package/src/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.ts +256 -0
  527. package/src/stores/query-builder/QueryBuilderValueSpecificationHelper.ts +359 -0
  528. package/src/stores/query-builder/explorer/QueryBuilderExplorerState.ts +813 -0
  529. package/src/stores/query-builder/explorer/QueryBuilderPropertySearchState.ts +333 -0
  530. package/src/stores/query-builder/explorer/QueryFunctionsExplorerState.ts +375 -0
  531. package/src/stores/{fetch-structure → query-builder/fetch-structure}/QueryBuilderFetchStructureImplementationState.ts +0 -0
  532. package/src/stores/query-builder/fetch-structure/QueryBuilderFetchStructureState.ts +107 -0
  533. package/src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.ts +240 -0
  534. package/src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.ts +131 -0
  535. package/src/stores/{fetch-structure → query-builder/fetch-structure}/graph-fetch/QueryBuilderGraphFetchTreeUtil.ts +0 -0
  536. package/src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.ts +154 -0
  537. package/src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.ts +327 -0
  538. package/src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.ts +569 -0
  539. package/src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionStateBuilder.ts +426 -0
  540. package/src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.ts +416 -0
  541. package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryResultSetModifierState.ts +0 -0
  542. package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperator.ts +0 -0
  543. package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperatorLoader.ts +0 -0
  544. package/src/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationState.ts +145 -0
  545. package/src/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.ts +228 -0
  546. package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.ts +0 -0
  547. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.ts +98 -0
  548. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.ts +106 -0
  549. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.ts +96 -0
  550. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.ts +173 -0
  551. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.ts +155 -0
  552. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.ts +174 -0
  553. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.ts +174 -0
  554. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.ts +98 -0
  555. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.ts +98 -0
  556. package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.ts +88 -0
  557. package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperator.ts +0 -0
  558. package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperatorLoader.ts +0 -0
  559. package/src/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.ts +807 -0
  560. package/src/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.ts +297 -0
  561. package/src/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.ts +121 -0
  562. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.ts +129 -0
  563. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.ts +140 -0
  564. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.ts +135 -0
  565. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.ts +218 -0
  566. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.ts +143 -0
  567. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.ts +70 -0
  568. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.ts +183 -0
  569. package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.ts +0 -0
  570. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.ts +143 -0
  571. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.ts +70 -0
  572. package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.ts +135 -0
  573. package/src/stores/{filter → query-builder/filter}/QueryBuilderFilterOperator.ts +0 -0
  574. package/src/stores/{filter → query-builder/filter}/QueryBuilderFilterOperatorLoader.ts +0 -0
  575. package/src/stores/query-builder/filter/QueryBuilderFilterState.ts +736 -0
  576. package/src/stores/query-builder/filter/QueryBuilderFilterStateBuilder.ts +155 -0
  577. package/src/stores/query-builder/filter/QueryBuilderFilterValueSpecificationBuilder.ts +120 -0
  578. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperatorHelper.ts +524 -0
  579. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Contain.ts +134 -0
  580. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_EndWith.ts +134 -0
  581. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Equal.ts +211 -0
  582. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThan.ts +145 -0
  583. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.ts +145 -0
  584. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_In.ts +181 -0
  585. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_IsEmpty.ts +125 -0
  586. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThan.ts +145 -0
  587. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThanEqual.ts +145 -0
  588. package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_StartWith.ts +134 -0
  589. package/src/stores/query-builder/workflows/ClassQueryBuilderState.ts +80 -0
  590. package/src/stores/query-builder/workflows/MappingQueryBuilderState.ts +86 -0
  591. package/src/stores/query-builder/workflows/ServiceQueryBuilderState.ts +143 -0
  592. package/tsconfig.json +108 -100
  593. package/tsconfig.package.json +1 -1
  594. package/lib/QueryBuilder_Const.d.ts +0 -77
  595. package/lib/QueryBuilder_Const.d.ts.map +0 -1
  596. package/lib/QueryBuilder_Const.js +0 -85
  597. package/lib/QueryBuilder_Const.js.map +0 -1
  598. package/lib/components/QueryBuilder.d.ts +0 -23
  599. package/lib/components/QueryBuilder.d.ts.map +0 -1
  600. package/lib/components/QueryBuilder.js +0 -111
  601. package/lib/components/QueryBuilder.js.map +0 -1
  602. package/lib/components/QueryBuilderParameterPanel.d.ts +0 -30
  603. package/lib/components/QueryBuilderParameterPanel.d.ts.map +0 -1
  604. package/lib/components/QueryBuilderParameterPanel.js +0 -128
  605. package/lib/components/QueryBuilderParameterPanel.js.map +0 -1
  606. package/lib/components/QueryBuilderPropertyExpressionEditor.d.ts +0 -30
  607. package/lib/components/QueryBuilderPropertyExpressionEditor.d.ts.map +0 -1
  608. package/lib/components/QueryBuilderPropertyExpressionEditor.js +0 -116
  609. package/lib/components/QueryBuilderPropertyExpressionEditor.js.map +0 -1
  610. package/lib/components/QueryBuilderResultPanel.d.ts +0 -23
  611. package/lib/components/QueryBuilderResultPanel.d.ts.map +0 -1
  612. package/lib/components/QueryBuilderResultPanel.js +0 -242
  613. package/lib/components/QueryBuilderResultPanel.js.map +0 -1
  614. package/lib/components/QueryBuilderSetupPanel.d.ts +0 -23
  615. package/lib/components/QueryBuilderSetupPanel.d.ts.map +0 -1
  616. package/lib/components/QueryBuilderSetupPanel.js +0 -149
  617. package/lib/components/QueryBuilderSetupPanel.js.map +0 -1
  618. package/lib/components/QueryBuilderTextEditor.d.ts +0 -23
  619. package/lib/components/QueryBuilderTextEditor.d.ts.map +0 -1
  620. package/lib/components/QueryBuilderTextEditor.js +0 -48
  621. package/lib/components/QueryBuilderTextEditor.js.map +0 -1
  622. package/lib/components/QueryBuilderUnsupportedQueryEditor.d.ts +0 -23
  623. package/lib/components/QueryBuilderUnsupportedQueryEditor.d.ts.map +0 -1
  624. package/lib/components/QueryBuilderUnsupportedQueryEditor.js +0 -37
  625. package/lib/components/QueryBuilderUnsupportedQueryEditor.js.map +0 -1
  626. package/lib/components/QueryBuilder_TestID.d.ts.map +0 -1
  627. package/lib/components/QueryBuilder_TestID.js.map +0 -1
  628. package/lib/components/explorer/QueryBuilderExplorerPanel.d.ts +0 -36
  629. package/lib/components/explorer/QueryBuilderExplorerPanel.d.ts.map +0 -1
  630. package/lib/components/explorer/QueryBuilderExplorerPanel.js +0 -335
  631. package/lib/components/explorer/QueryBuilderExplorerPanel.js.map +0 -1
  632. package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.d.ts +0 -23
  633. package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.d.ts.map +0 -1
  634. package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.js +0 -147
  635. package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.js.map +0 -1
  636. package/lib/components/explorer/QueryBuilderMilestoneEditor.d.ts +0 -24
  637. package/lib/components/explorer/QueryBuilderMilestoneEditor.d.ts.map +0 -1
  638. package/lib/components/explorer/QueryBuilderMilestoneEditor.js +0 -120
  639. package/lib/components/explorer/QueryBuilderMilestoneEditor.js.map +0 -1
  640. package/lib/components/explorer/QueryBuilderPropertySearchPanel.d.ts +0 -24
  641. package/lib/components/explorer/QueryBuilderPropertySearchPanel.d.ts.map +0 -1
  642. package/lib/components/explorer/QueryBuilderPropertySearchPanel.js +0 -200
  643. package/lib/components/explorer/QueryBuilderPropertySearchPanel.js.map +0 -1
  644. package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.d.ts +0 -23
  645. package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.d.ts.map +0 -1
  646. package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.js +0 -52
  647. package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.js.map +0 -1
  648. package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts +0 -32
  649. package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts.map +0 -1
  650. package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.js +0 -94
  651. package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.js.map +0 -1
  652. package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.d.ts +0 -31
  653. package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.d.ts.map +0 -1
  654. package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.js +0 -378
  655. package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.js.map +0 -1
  656. package/lib/components/fetch-structure/QueryBuilderProjectionPanel.d.ts +0 -23
  657. package/lib/components/fetch-structure/QueryBuilderProjectionPanel.d.ts.map +0 -1
  658. package/lib/components/fetch-structure/QueryBuilderProjectionPanel.js +0 -216
  659. package/lib/components/fetch-structure/QueryBuilderProjectionPanel.js.map +0 -1
  660. package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.d.ts +0 -23
  661. package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.d.ts.map +0 -1
  662. package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.js +0 -88
  663. package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.js.map +0 -1
  664. package/lib/components/filter/QueryBuilderFilterPanel.d.ts +0 -23
  665. package/lib/components/filter/QueryBuilderFilterPanel.d.ts.map +0 -1
  666. package/lib/components/filter/QueryBuilderFilterPanel.js +0 -316
  667. package/lib/components/filter/QueryBuilderFilterPanel.js.map +0 -1
  668. package/lib/components/shared/ElementIconUtils.d.ts.map +0 -1
  669. package/lib/components/shared/ElementIconUtils.js.map +0 -1
  670. package/lib/components/shared/QueryBuilderLambdaEditor.d.ts +0 -43
  671. package/lib/components/shared/QueryBuilderLambdaEditor.d.ts.map +0 -1
  672. package/lib/components/shared/QueryBuilderLambdaEditor.js.map +0 -1
  673. package/lib/components/shared/QueryBuilderPanelIssueCountBadge.d.ts.map +0 -1
  674. package/lib/components/shared/QueryBuilderPanelIssueCountBadge.js.map +0 -1
  675. package/lib/components/shared/QueryBuilderPropertyInfoTooltip.d.ts.map +0 -1
  676. package/lib/components/shared/QueryBuilderPropertyInfoTooltip.js.map +0 -1
  677. package/lib/stores/QueryBuilderGroupOperationHelper.d.ts.map +0 -1
  678. package/lib/stores/QueryBuilderGroupOperationHelper.js +0 -43
  679. package/lib/stores/QueryBuilderGroupOperationHelper.js.map +0 -1
  680. package/lib/stores/QueryBuilderPreviewDataHelper.d.ts.map +0 -1
  681. package/lib/stores/QueryBuilderPreviewDataHelper.js +0 -143
  682. package/lib/stores/QueryBuilderPreviewDataHelper.js.map +0 -1
  683. package/lib/stores/QueryBuilderPropertyEditorState.d.ts.map +0 -1
  684. package/lib/stores/QueryBuilderPropertyEditorState.js +0 -395
  685. package/lib/stores/QueryBuilderPropertyEditorState.js.map +0 -1
  686. package/lib/stores/QueryBuilderResultState.d.ts.map +0 -1
  687. package/lib/stores/QueryBuilderResultState.js +0 -176
  688. package/lib/stores/QueryBuilderResultState.js.map +0 -1
  689. package/lib/stores/QueryBuilderSetupState.d.ts +0 -46
  690. package/lib/stores/QueryBuilderSetupState.d.ts.map +0 -1
  691. package/lib/stores/QueryBuilderSetupState.js +0 -163
  692. package/lib/stores/QueryBuilderSetupState.js.map +0 -1
  693. package/lib/stores/QueryBuilderState.d.ts +0 -100
  694. package/lib/stores/QueryBuilderState.d.ts.map +0 -1
  695. package/lib/stores/QueryBuilderState.js +0 -308
  696. package/lib/stores/QueryBuilderState.js.map +0 -1
  697. package/lib/stores/QueryBuilderStateBuilder.d.ts.map +0 -1
  698. package/lib/stores/QueryBuilderStateBuilder.js +0 -310
  699. package/lib/stores/QueryBuilderStateBuilder.js.map +0 -1
  700. package/lib/stores/QueryBuilderStateTestUtils.d.ts +0 -24
  701. package/lib/stores/QueryBuilderStateTestUtils.d.ts.map +0 -1
  702. package/lib/stores/QueryBuilderStateTestUtils.js +0 -50
  703. package/lib/stores/QueryBuilderStateTestUtils.js.map +0 -1
  704. package/lib/stores/QueryBuilderTypeaheadHelper.d.ts.map +0 -1
  705. package/lib/stores/QueryBuilderTypeaheadHelper.js +0 -86
  706. package/lib/stores/QueryBuilderTypeaheadHelper.js.map +0 -1
  707. package/lib/stores/QueryBuilderUnsupportedState.d.ts +0 -26
  708. package/lib/stores/QueryBuilderUnsupportedState.d.ts.map +0 -1
  709. package/lib/stores/QueryBuilderUnsupportedState.js +0 -36
  710. package/lib/stores/QueryBuilderUnsupportedState.js.map +0 -1
  711. package/lib/stores/QueryBuilderValueSpecificationBuilder.d.ts.map +0 -1
  712. package/lib/stores/QueryBuilderValueSpecificationBuilder.js +0 -87
  713. package/lib/stores/QueryBuilderValueSpecificationBuilder.js.map +0 -1
  714. package/lib/stores/QueryBuilderValueSpecificationBuilderHelper.d.ts +0 -27
  715. package/lib/stores/QueryBuilderValueSpecificationBuilderHelper.d.ts.map +0 -1
  716. package/lib/stores/QueryBuilderValueSpecificationBuilderHelper.js +0 -156
  717. package/lib/stores/QueryBuilderValueSpecificationBuilderHelper.js.map +0 -1
  718. package/lib/stores/QueryBuilderValueSpecificationHelper.d.ts.map +0 -1
  719. package/lib/stores/QueryBuilderValueSpecificationHelper.js +0 -235
  720. package/lib/stores/QueryBuilderValueSpecificationHelper.js.map +0 -1
  721. package/lib/stores/QueryParametersState.d.ts +0 -28
  722. package/lib/stores/QueryParametersState.d.ts.map +0 -1
  723. package/lib/stores/QueryParametersState.js +0 -39
  724. package/lib/stores/QueryParametersState.js.map +0 -1
  725. package/lib/stores/QueryTextEditorState.d.ts +0 -49
  726. package/lib/stores/QueryTextEditorState.d.ts.map +0 -1
  727. package/lib/stores/QueryTextEditorState.js +0 -145
  728. package/lib/stores/QueryTextEditorState.js.map +0 -1
  729. package/lib/stores/explorer/QueryBuilderExplorerState.d.ts +0 -99
  730. package/lib/stores/explorer/QueryBuilderExplorerState.d.ts.map +0 -1
  731. package/lib/stores/explorer/QueryBuilderExplorerState.js +0 -442
  732. package/lib/stores/explorer/QueryBuilderExplorerState.js.map +0 -1
  733. package/lib/stores/explorer/QueryBuilderPropertySearchPanelState.d.ts +0 -46
  734. package/lib/stores/explorer/QueryBuilderPropertySearchPanelState.d.ts.map +0 -1
  735. package/lib/stores/explorer/QueryBuilderPropertySearchPanelState.js +0 -242
  736. package/lib/stores/explorer/QueryBuilderPropertySearchPanelState.js.map +0 -1
  737. package/lib/stores/explorer/QueryFunctionsExplorerState.d.ts.map +0 -1
  738. package/lib/stores/explorer/QueryFunctionsExplorerState.js +0 -229
  739. package/lib/stores/explorer/QueryFunctionsExplorerState.js.map +0 -1
  740. package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.d.ts.map +0 -1
  741. package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.js.map +0 -1
  742. package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.d.ts.map +0 -1
  743. package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.js +0 -74
  744. package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.js.map +0 -1
  745. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.d.ts.map +0 -1
  746. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js +0 -157
  747. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js.map +0 -1
  748. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.d.ts.map +0 -1
  749. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.js +0 -62
  750. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.js.map +0 -1
  751. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.d.ts.map +0 -1
  752. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.js.map +0 -1
  753. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.d.ts.map +0 -1
  754. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js +0 -72
  755. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js.map +0 -1
  756. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.d.ts.map +0 -1
  757. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.js +0 -187
  758. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.js.map +0 -1
  759. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.d.ts.map +0 -1
  760. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.js +0 -304
  761. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.js.map +0 -1
  762. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionStateBuilder.d.ts.map +0 -1
  763. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionStateBuilder.js +0 -186
  764. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionStateBuilder.js.map +0 -1
  765. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.d.ts.map +0 -1
  766. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js +0 -189
  767. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js.map +0 -1
  768. package/lib/stores/fetch-structure/projection/QueryResultSetModifierState.d.ts.map +0 -1
  769. package/lib/stores/fetch-structure/projection/QueryResultSetModifierState.js.map +0 -1
  770. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.d.ts.map +0 -1
  771. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.js.map +0 -1
  772. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.d.ts.map +0 -1
  773. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.js.map +0 -1
  774. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.d.ts.map +0 -1
  775. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js +0 -103
  776. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js.map +0 -1
  777. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.d.ts.map +0 -1
  778. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.js +0 -96
  779. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.js.map +0 -1
  780. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.d.ts.map +0 -1
  781. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.js.map +0 -1
  782. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.d.ts.map +0 -1
  783. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js +0 -50
  784. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js.map +0 -1
  785. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.d.ts.map +0 -1
  786. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js +0 -55
  787. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js.map +0 -1
  788. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.d.ts.map +0 -1
  789. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js +0 -50
  790. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js.map +0 -1
  791. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.d.ts.map +0 -1
  792. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js +0 -78
  793. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js.map +0 -1
  794. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.d.ts.map +0 -1
  795. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js +0 -67
  796. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js.map +0 -1
  797. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.d.ts.map +0 -1
  798. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js +0 -86
  799. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js.map +0 -1
  800. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.d.ts.map +0 -1
  801. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js +0 -86
  802. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js.map +0 -1
  803. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.d.ts.map +0 -1
  804. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js +0 -50
  805. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js.map +0 -1
  806. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.d.ts.map +0 -1
  807. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js +0 -50
  808. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js.map +0 -1
  809. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.d.ts.map +0 -1
  810. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js +0 -45
  811. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js.map +0 -1
  812. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.d.ts.map +0 -1
  813. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.js.map +0 -1
  814. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.d.ts.map +0 -1
  815. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.js.map +0 -1
  816. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.d.ts.map +0 -1
  817. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js +0 -586
  818. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js.map +0 -1
  819. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.d.ts.map +0 -1
  820. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.js +0 -122
  821. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.js.map +0 -1
  822. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.d.ts.map +0 -1
  823. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js +0 -79
  824. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js.map +0 -1
  825. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.d.ts.map +0 -1
  826. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js +0 -74
  827. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js.map +0 -1
  828. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.d.ts.map +0 -1
  829. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js +0 -75
  830. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js.map +0 -1
  831. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.d.ts.map +0 -1
  832. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js +0 -75
  833. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js.map +0 -1
  834. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.d.ts.map +0 -1
  835. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js +0 -118
  836. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js.map +0 -1
  837. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.d.ts.map +0 -1
  838. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js +0 -81
  839. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js.map +0 -1
  840. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.d.ts.map +0 -1
  841. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js +0 -43
  842. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js.map +0 -1
  843. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.d.ts.map +0 -1
  844. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js +0 -104
  845. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js.map +0 -1
  846. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.d.ts.map +0 -1
  847. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.js.map +0 -1
  848. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.d.ts.map +0 -1
  849. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js +0 -81
  850. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js.map +0 -1
  851. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.d.ts.map +0 -1
  852. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js +0 -43
  853. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js.map +0 -1
  854. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.d.ts.map +0 -1
  855. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js +0 -75
  856. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js.map +0 -1
  857. package/lib/stores/filter/QueryBuilderFilterOperator.d.ts.map +0 -1
  858. package/lib/stores/filter/QueryBuilderFilterOperator.js.map +0 -1
  859. package/lib/stores/filter/QueryBuilderFilterOperatorLoader.d.ts.map +0 -1
  860. package/lib/stores/filter/QueryBuilderFilterOperatorLoader.js.map +0 -1
  861. package/lib/stores/filter/QueryBuilderFilterState.d.ts.map +0 -1
  862. package/lib/stores/filter/QueryBuilderFilterState.js +0 -531
  863. package/lib/stores/filter/QueryBuilderFilterState.js.map +0 -1
  864. package/lib/stores/filter/QueryBuilderFilterStateBuilder.d.ts.map +0 -1
  865. package/lib/stores/filter/QueryBuilderFilterStateBuilder.js +0 -74
  866. package/lib/stores/filter/QueryBuilderFilterStateBuilder.js.map +0 -1
  867. package/lib/stores/filter/QueryBuilderFilterValueSpecificationBuilder.d.ts.map +0 -1
  868. package/lib/stores/filter/QueryBuilderFilterValueSpecificationBuilder.js +0 -78
  869. package/lib/stores/filter/QueryBuilderFilterValueSpecificationBuilder.js.map +0 -1
  870. package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.d.ts.map +0 -1
  871. package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.js +0 -257
  872. package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.js.map +0 -1
  873. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.d.ts.map +0 -1
  874. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.js +0 -71
  875. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.js.map +0 -1
  876. package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.d.ts.map +0 -1
  877. package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.js +0 -71
  878. package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.js.map +0 -1
  879. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.d.ts.map +0 -1
  880. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.js +0 -115
  881. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.js.map +0 -1
  882. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.d.ts.map +0 -1
  883. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.js +0 -83
  884. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.js.map +0 -1
  885. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.d.ts.map +0 -1
  886. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js +0 -83
  887. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js.map +0 -1
  888. package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.d.ts.map +0 -1
  889. package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.js +0 -103
  890. package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.js.map +0 -1
  891. package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.d.ts.map +0 -1
  892. package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.js +0 -65
  893. package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.js.map +0 -1
  894. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.d.ts.map +0 -1
  895. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.js +0 -83
  896. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.js.map +0 -1
  897. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.d.ts.map +0 -1
  898. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js +0 -83
  899. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js.map +0 -1
  900. package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.d.ts.map +0 -1
  901. package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.js +0 -71
  902. package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.js.map +0 -1
  903. package/src/QueryBuilder_Const.ts +0 -88
  904. package/src/components/QueryBuilder.tsx +0 -412
  905. package/src/components/QueryBuilderParameterPanel.tsx +0 -403
  906. package/src/components/QueryBuilderPropertyExpressionEditor.tsx +0 -374
  907. package/src/components/QueryBuilderResultPanel.tsx +0 -640
  908. package/src/components/QueryBuilderSetupPanel.tsx +0 -342
  909. package/src/components/QueryBuilderTextEditor.tsx +0 -127
  910. package/src/components/QueryBuilderUnsupportedQueryEditor.tsx +0 -112
  911. package/src/components/explorer/QueryBuilderExplorerPanel.tsx +0 -927
  912. package/src/components/explorer/QueryBuilderFunctionsExplorerPanel.tsx +0 -554
  913. package/src/components/explorer/QueryBuilderMilestoneEditor.tsx +0 -291
  914. package/src/components/explorer/QueryBuilderPropertySearchPanel.tsx +0 -617
  915. package/src/components/fetch-structure/QueryBuilderFetchStructurePanel.tsx +0 -112
  916. package/src/components/fetch-structure/QueryBuilderGraphFetchTreePanel.tsx +0 -276
  917. package/src/components/fetch-structure/QueryBuilderPostFilterPanel.tsx +0 -1103
  918. package/src/components/fetch-structure/QueryBuilderProjectionPanel.tsx +0 -649
  919. package/src/components/fetch-structure/QueryBuilderResultModifierPanel.tsx +0 -254
  920. package/src/components/filter/QueryBuilderFilterPanel.tsx +0 -890
  921. package/src/components/shared/QueryBuilderLambdaEditor.tsx +0 -120
  922. package/src/stores/QueryBuilderGroupOperationHelper.ts +0 -54
  923. package/src/stores/QueryBuilderPreviewDataHelper.ts +0 -210
  924. package/src/stores/QueryBuilderPropertyEditorState.ts +0 -668
  925. package/src/stores/QueryBuilderResultState.ts +0 -281
  926. package/src/stores/QueryBuilderSetupState.ts +0 -236
  927. package/src/stores/QueryBuilderState.ts +0 -465
  928. package/src/stores/QueryBuilderStateBuilder.ts +0 -584
  929. package/src/stores/QueryBuilderStateTestUtils.ts +0 -96
  930. package/src/stores/QueryBuilderTypeaheadHelper.ts +0 -155
  931. package/src/stores/QueryBuilderUnsupportedState.ts +0 -42
  932. package/src/stores/QueryBuilderValueSpecificationBuilder.ts +0 -179
  933. package/src/stores/QueryBuilderValueSpecificationBuilderHelper.ts +0 -254
  934. package/src/stores/QueryBuilderValueSpecificationHelper.ts +0 -359
  935. package/src/stores/QueryParametersState.ts +0 -52
  936. package/src/stores/QueryTextEditorState.ts +0 -203
  937. package/src/stores/explorer/QueryBuilderExplorerState.ts +0 -810
  938. package/src/stores/explorer/QueryBuilderPropertySearchPanelState.ts +0 -333
  939. package/src/stores/explorer/QueryFunctionsExplorerState.ts +0 -376
  940. package/src/stores/fetch-structure/QueryBuilderFetchStructureState.ts +0 -108
  941. package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.ts +0 -240
  942. package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.ts +0 -131
  943. package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.ts +0 -154
  944. package/src/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.ts +0 -329
  945. package/src/stores/fetch-structure/projection/QueryBuilderProjectionState.ts +0 -569
  946. package/src/stores/fetch-structure/projection/QueryBuilderProjectionStateBuilder.ts +0 -426
  947. package/src/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.ts +0 -416
  948. package/src/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.ts +0 -145
  949. package/src/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.ts +0 -228
  950. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.ts +0 -98
  951. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.ts +0 -106
  952. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.ts +0 -96
  953. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.ts +0 -173
  954. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.ts +0 -155
  955. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.ts +0 -174
  956. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.ts +0 -174
  957. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.ts +0 -98
  958. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.ts +0 -98
  959. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.ts +0 -88
  960. package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.ts +0 -808
  961. package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.ts +0 -297
  962. package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.ts +0 -121
  963. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.ts +0 -129
  964. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.ts +0 -140
  965. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.ts +0 -135
  966. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.ts +0 -218
  967. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.ts +0 -143
  968. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.ts +0 -70
  969. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.ts +0 -183
  970. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.ts +0 -143
  971. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.ts +0 -70
  972. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.ts +0 -135
  973. package/src/stores/filter/QueryBuilderFilterState.ts +0 -738
  974. package/src/stores/filter/QueryBuilderFilterStateBuilder.ts +0 -155
  975. package/src/stores/filter/QueryBuilderFilterValueSpecificationBuilder.ts +0 -120
  976. package/src/stores/filter/operators/QueryBuilderFilterOperatorHelper.ts +0 -524
  977. package/src/stores/filter/operators/QueryBuilderFilterOperator_Contain.ts +0 -134
  978. package/src/stores/filter/operators/QueryBuilderFilterOperator_EndWith.ts +0 -134
  979. package/src/stores/filter/operators/QueryBuilderFilterOperator_Equal.ts +0 -211
  980. package/src/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.ts +0 -145
  981. package/src/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.ts +0 -145
  982. package/src/stores/filter/operators/QueryBuilderFilterOperator_In.ts +0 -181
  983. package/src/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.ts +0 -125
  984. package/src/stores/filter/operators/QueryBuilderFilterOperator_LessThan.ts +0 -145
  985. package/src/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.ts +0 -145
  986. package/src/stores/filter/operators/QueryBuilderFilterOperator_StartWith.ts +0 -134
@@ -0,0 +1,157 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { action, makeObservable, observable } from 'mobx';
17
+ import { PackageableElementExplicitReference, RootGraphFetchTree, getAllSuperclasses, } from '@finos/legend-graph';
18
+ import { addQueryBuilderPropertyNode, buildGraphFetchTreeData, } from './QueryBuilderGraphFetchTreeUtil.js';
19
+ import { generateExplorerTreePropertyNodeID, generateExplorerTreeSubtypeNodeID, } from '../../explorer/QueryBuilderExplorerState.js';
20
+ import { FETCH_STRUCTURE_IMPLEMENTATION, QueryBuilderFetchStructureImplementationState, } from '../QueryBuilderFetchStructureImplementationState.js';
21
+ import { ActionAlertActionType, ActionAlertType, } from '@finos/legend-application';
22
+ import { appendGraphFetch } from './QueryBuilderGraphFetchValueSpecificationBuilder.js';
23
+ import { guaranteeNonNullable } from '@finos/legend-shared';
24
+ export class QueryBuilderGraphFetchTreeState extends QueryBuilderFetchStructureImplementationState {
25
+ treeData;
26
+ /**
27
+ * If set to `true` we will use `graphFetchChecked` function instead of `graphFetch`.
28
+ * `graphFetchChecked` will do extra checks on constraints and only work on M2M use case for now.
29
+ * Hence we default this to `false` for graph fetch to work universally.
30
+ */
31
+ isChecked = false;
32
+ constructor(queryBuilderState, fetchStructureState) {
33
+ super(queryBuilderState, fetchStructureState);
34
+ makeObservable(this, {
35
+ treeData: observable.ref,
36
+ isChecked: observable,
37
+ setGraphFetchTree: action,
38
+ setChecked: action,
39
+ });
40
+ // try to initialize the graph-fetch tree data using the setup class
41
+ this.updateTreeData(this.queryBuilderState.class);
42
+ }
43
+ get type() {
44
+ return FETCH_STRUCTURE_IMPLEMENTATION.GRAPH_FETCH;
45
+ }
46
+ get usedExplorerTreePropertyNodeIDs() {
47
+ if (!this.treeData) {
48
+ return [];
49
+ }
50
+ const explorerTreeNodeIDIndex = new Map();
51
+ const ids = [];
52
+ // traverse in breadth-first fashion
53
+ const nodesToProcess = this.treeData.rootIds.slice();
54
+ while (nodesToProcess.length) {
55
+ const currentNodeID = guaranteeNonNullable(nodesToProcess[0]);
56
+ const node = this.treeData.nodes.get(currentNodeID);
57
+ if (!node) {
58
+ continue;
59
+ }
60
+ let nodeID;
61
+ const parentNodeID = node.parentId
62
+ ? // since we traverse the nodes in order, parent node ID should already been computed
63
+ guaranteeNonNullable(explorerTreeNodeIDIndex.get(node.parentId))
64
+ : '';
65
+ const propertyNodeID = generateExplorerTreePropertyNodeID(parentNodeID, node.tree.property.value.name);
66
+ ids.push(propertyNodeID);
67
+ if (node.tree.subType) {
68
+ nodeID = generateExplorerTreeSubtypeNodeID(propertyNodeID, node.tree.subType.value.path);
69
+ getAllSuperclasses(node.tree.subType.value)
70
+ .concat(node.tree.subType.value)
71
+ .forEach((_class) => ids.push(generateExplorerTreeSubtypeNodeID(propertyNodeID, _class.path)));
72
+ }
73
+ else {
74
+ nodeID = propertyNodeID;
75
+ }
76
+ explorerTreeNodeIDIndex.set(node.id, nodeID);
77
+ // update list of nodes to process
78
+ nodesToProcess.shift();
79
+ node.childrenIds.forEach((childId) => nodesToProcess.push(childId));
80
+ }
81
+ // de-duplicate
82
+ return Array.from(new Set(ids).values());
83
+ }
84
+ get validationIssues() {
85
+ return undefined;
86
+ }
87
+ setGraphFetchTree(val) {
88
+ this.treeData = val;
89
+ }
90
+ setChecked(val) {
91
+ this.isChecked = val;
92
+ }
93
+ updateTreeData(_class) {
94
+ this.setGraphFetchTree(_class
95
+ ? buildGraphFetchTreeData(new RootGraphFetchTree(PackageableElementExplicitReference.create(_class)))
96
+ : undefined);
97
+ }
98
+ onClassChange(_class) {
99
+ this.updateTreeData(_class);
100
+ }
101
+ appendFetchStructure(lambdaFunction, options) {
102
+ appendGraphFetch(this, lambdaFunction, options);
103
+ }
104
+ addProperty(node, options) {
105
+ if (!this.treeData) {
106
+ this.queryBuilderState.applicationStore.notifyWarning(`Can't add property: graph-fetch tree has not been properly initialized`);
107
+ return;
108
+ }
109
+ addQueryBuilderPropertyNode(this.treeData, this.queryBuilderState.explorerState.nonNullableTreeData, node, this.queryBuilderState);
110
+ if (options?.refreshTreeData) {
111
+ this.setGraphFetchTree({ ...this.treeData });
112
+ }
113
+ }
114
+ revealCompilationError(compilationError) {
115
+ return false;
116
+ }
117
+ clearCompilationError() {
118
+ return;
119
+ }
120
+ fetchProperty(node) {
121
+ this.addProperty(node, { refreshTreeData: true });
122
+ }
123
+ fetchProperties(nodes) {
124
+ if (!this.treeData) {
125
+ this.queryBuilderState.applicationStore.notifyWarning(`Can't add property: graph-fetch tree has not been properly initialized`);
126
+ return;
127
+ }
128
+ nodes.forEach((nodeToAdd) => this.addProperty(nodeToAdd));
129
+ this.setGraphFetchTree({
130
+ ...this.treeData,
131
+ });
132
+ }
133
+ checkBeforeChangingImplementation(onChange) {
134
+ if (this.treeData?.rootIds.length) {
135
+ this.queryBuilderState.applicationStore.setActionAlertInfo({
136
+ message: 'Current graph-fetch will be lost when switching to projection mode. Do you still want to proceed?',
137
+ type: ActionAlertType.CAUTION,
138
+ actions: [
139
+ {
140
+ label: 'Proceed',
141
+ type: ActionAlertActionType.PROCEED_WITH_CAUTION,
142
+ handler: this.queryBuilderState.applicationStore.guardUnhandledError(async () => onChange()),
143
+ },
144
+ {
145
+ label: 'Cancel',
146
+ type: ActionAlertActionType.PROCEED,
147
+ default: true,
148
+ },
149
+ ],
150
+ });
151
+ }
152
+ else {
153
+ onChange();
154
+ }
155
+ }
156
+ }
157
+ //# sourceMappingURL=QueryBuilderGraphFetchTreeState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderGraphFetchTreeState.js","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderGraphFetchTreeStateBuilder.d.ts","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAIL,wBAAwB,EACzB,MAAM,qBAAqB,CAAC;AAG7B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAMpE,eAAO,MAAM,2BAA2B,eAC1B,wBAAwB,qBACjB,iBAAiB,KACnC,IAyCF,CAAC;AAEF,eAAO,MAAM,oCAAoC,eACnC,wBAAwB,qBACjB,iBAAiB,KACnC,IAmDF,CAAC"}
@@ -0,0 +1,62 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { GraphFetchTreeInstanceValue, matchFunctionName, RootGraphFetchTree, SimpleFunctionExpression, } from '@finos/legend-graph';
17
+ import { assertTrue, guaranteeType } from '@finos/legend-shared';
18
+ import { QUERY_BUILDER_SUPPORTED_FUNCTIONS } from '../../../../graphManager/QueryBuilderSupportedFunctions.js';
19
+ import { QueryBuilderValueSpecificationProcessor } from '../../QueryBuilderStateBuilder.js';
20
+ import { FETCH_STRUCTURE_IMPLEMENTATION } from '../QueryBuilderFetchStructureImplementationState.js';
21
+ import { QueryBuilderGraphFetchTreeState } from './QueryBuilderGraphFetchTreeState.js';
22
+ import { buildGraphFetchTreeData } from './QueryBuilderGraphFetchTreeUtil.js';
23
+ export const processGraphFetchExpression = (expression, queryBuilderState) => {
24
+ const functionName = expression.functionName;
25
+ // check parameters
26
+ assertTrue(expression.parametersValues.length === 2, `Can't process ${functionName}() expression: ${functionName}() expects 1 argument`);
27
+ // check preceding expression
28
+ const precedingExpression = guaranteeType(expression.parametersValues[0], SimpleFunctionExpression, `Can't process ${functionName}() expression: only support ${functionName}() immediately following an expression`);
29
+ assertTrue(matchFunctionName(precedingExpression.functionName, [
30
+ QUERY_BUILDER_SUPPORTED_FUNCTIONS.FILTER,
31
+ QUERY_BUILDER_SUPPORTED_FUNCTIONS.GET_ALL,
32
+ ]), `Can't process ${functionName}(): only support ${functionName}() immediately following either getAll() or filter()`);
33
+ QueryBuilderValueSpecificationProcessor.process(precedingExpression, queryBuilderState);
34
+ // build state
35
+ if (queryBuilderState.fetchStructureState.implementation instanceof
36
+ QueryBuilderGraphFetchTreeState) {
37
+ const graphFetchTreeState = queryBuilderState.fetchStructureState.implementation;
38
+ graphFetchTreeState.setChecked(matchFunctionName(expression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH_CHECKED));
39
+ }
40
+ };
41
+ export const processGraphFetchSerializeExpression = (expression, queryBuilderState) => {
42
+ // update fetch-structure
43
+ queryBuilderState.fetchStructureState.changeImplementation(FETCH_STRUCTURE_IMPLEMENTATION.GRAPH_FETCH);
44
+ // check parameters
45
+ assertTrue(expression.parametersValues.length === 2, `Can't process serialize() expression: serialize() expects 1 argument`);
46
+ // check preceding expression
47
+ const precedingExpression = guaranteeType(expression.parametersValues[0], SimpleFunctionExpression, `Can't process serialize() expression: only support serialize() immediately following an expression`);
48
+ assertTrue(matchFunctionName(precedingExpression.functionName, [
49
+ QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH,
50
+ QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH_CHECKED,
51
+ ]), `Can't process serialize() expression: only support serialize() in graph-fetch expression`);
52
+ QueryBuilderValueSpecificationProcessor.process(precedingExpression, queryBuilderState);
53
+ // build state
54
+ if (queryBuilderState.fetchStructureState.implementation instanceof
55
+ QueryBuilderGraphFetchTreeState) {
56
+ const graphFetchTreeState = queryBuilderState.fetchStructureState.implementation;
57
+ const graphFetchTree = guaranteeType(expression.parametersValues[1], GraphFetchTreeInstanceValue, `Can't process serialize() expression: serialize() graph-fetch is missing`);
58
+ const graphFetchTreeRoot = guaranteeType(graphFetchTree.values[0], RootGraphFetchTree, `Can't process serialize() expression: serialize() graph-fetch tree root is missing`);
59
+ graphFetchTreeState.setGraphFetchTree(buildGraphFetchTreeData(graphFetchTreeRoot));
60
+ }
61
+ };
62
+ //# sourceMappingURL=QueryBuilderGraphFetchTreeStateBuilder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderGraphFetchTreeStateBuilder.js","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,2BAA2B,EAC3B,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,GACzB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACjE,OAAO,EAAE,iCAAiC,EAAE,MAAM,4DAA4D,CAAC;AAE/G,OAAO,EAAE,uCAAuC,EAAE,MAAM,mCAAmC,CAAC;AAC5F,OAAO,EAAE,8BAA8B,EAAE,MAAM,qDAAqD,CAAC;AACrG,OAAO,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AACvF,OAAO,EAAE,uBAAuB,EAAE,MAAM,qCAAqC,CAAC;AAE9E,MAAM,CAAC,MAAM,2BAA2B,GAAG,CACzC,UAAoC,EACpC,iBAAoC,EAC9B,EAAE;IACR,MAAM,YAAY,GAAG,UAAU,CAAC,YAAY,CAAC;IAE7C,mBAAmB;IACnB,UAAU,CACR,UAAU,CAAC,gBAAgB,CAAC,MAAM,KAAK,CAAC,EACxC,iBAAiB,YAAY,kBAAkB,YAAY,uBAAuB,CACnF,CAAC;IAEF,6BAA6B;IAC7B,MAAM,mBAAmB,GAAG,aAAa,CACvC,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAC9B,wBAAwB,EACxB,iBAAiB,YAAY,+BAA+B,YAAY,wCAAwC,CACjH,CAAC;IACF,UAAU,CACR,iBAAiB,CAAC,mBAAmB,CAAC,YAAY,EAAE;QAClD,iCAAiC,CAAC,MAAM;QACxC,iCAAiC,CAAC,OAAO;KAC1C,CAAC,EACF,iBAAiB,YAAY,oBAAoB,YAAY,sDAAsD,CACpH,CAAC;IACF,uCAAuC,CAAC,OAAO,CAC7C,mBAAmB,EACnB,iBAAiB,CAClB,CAAC;IAEF,cAAc;IACd,IACE,iBAAiB,CAAC,mBAAmB,CAAC,cAAc;QACpD,+BAA+B,EAC/B;QACA,MAAM,mBAAmB,GACvB,iBAAiB,CAAC,mBAAmB,CAAC,cAAc,CAAC;QACvD,mBAAmB,CAAC,UAAU,CAC5B,iBAAiB,CACf,UAAU,CAAC,YAAY,EACvB,iCAAiC,CAAC,mBAAmB,CACtD,CACF,CAAC;KACH;AACH,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,oCAAoC,GAAG,CAClD,UAAoC,EACpC,iBAAoC,EAC9B,EAAE;IACR,yBAAyB;IACzB,iBAAiB,CAAC,mBAAmB,CAAC,oBAAoB,CACxD,8BAA8B,CAAC,WAAW,CAC3C,CAAC;IAEF,mBAAmB;IACnB,UAAU,CACR,UAAU,CAAC,gBAAgB,CAAC,MAAM,KAAK,CAAC,EACxC,sEAAsE,CACvE,CAAC;IAEF,6BAA6B;IAC7B,MAAM,mBAAmB,GAAG,aAAa,CACvC,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAC9B,wBAAwB,EACxB,oGAAoG,CACrG,CAAC;IACF,UAAU,CACR,iBAAiB,CAAC,mBAAmB,CAAC,YAAY,EAAE;QAClD,iCAAiC,CAAC,WAAW;QAC7C,iCAAiC,CAAC,mBAAmB;KACtD,CAAC,EACF,0FAA0F,CAC3F,CAAC;IACF,uCAAuC,CAAC,OAAO,CAC7C,mBAAmB,EACnB,iBAAiB,CAClB,CAAC;IAEF,cAAc;IACd,IACE,iBAAiB,CAAC,mBAAmB,CAAC,cAAc;QACpD,+BAA+B,EAC/B;QACA,MAAM,mBAAmB,GACvB,iBAAiB,CAAC,mBAAmB,CAAC,cAAc,CAAC;QACvD,MAAM,cAAc,GAAG,aAAa,CAClC,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAC9B,2BAA2B,EAC3B,0EAA0E,CAC3E,CAAC;QACF,MAAM,kBAAkB,GAAG,aAAa,CACtC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,EACxB,kBAAkB,EAClB,oFAAoF,CACrF,CAAC;QACF,mBAAmB,CAAC,iBAAiB,CACnC,uBAAuB,CAAC,kBAAkB,CAAC,CAC5C,CAAC;KACH;AACH,CAAC,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderGraphFetchTreeUtil.d.ts","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAChE,OAAO,EACL,KAAK,gBAAgB,EAErB,KAAK,IAAI,EACT,KAAK,kBAAkB,EAGvB,sBAAsB,EAGvB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,KAAK,gCAAgC,EACrC,wCAAwC,EAEzC,MAAM,6CAA6C,CAAC;AACrD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAMpE,qBAAa,kCAAmC,YAAW,YAAY;IACrE,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACjC,MAAM,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,EAAE,CAAM;IAC3B,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B,IAAI,EAAE,sBAAsB,CAAC;gBAG3B,EAAE,EAAE,MAAM,EACV,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,GAAG,SAAS,EAC5B,kBAAkB,EAAE,sBAAsB;IAU5C,IAAI,IAAI,IAAI,IAAI,CAEf;CACF;AAED,MAAM,WAAW,8BACf,SAAQ,QAAQ,CAAC,kCAAkC,CAAC;IACpD,IAAI,EAAE,kBAAkB,CAAC;CAC1B;AAED,eAAO,MAAM,4BAA4B,aAC7B,gBAAgB,gBACZ,MAAM,GAAG,SAAS,WACvB,IAAI,GAAG,SAAS,KACxB,MAGC,CAAC;AA6BL;;GAEG;AACH,eAAO,MAAM,uBAAuB,SAC5B,kBAAkB,KACvB,8BASF,CAAC;AAEF,eAAO,MAAM,yBAAyB,aAC1B,8BAA8B,KACvC,OAA8C,CAAC;AA6ClD,eAAO,MAAM,qBAAqB,aACtB,8BAA8B,QAClC,kCAAkC,KACvC,IAGF,CAAC;AAEF,eAAO,MAAM,2BAA2B,aAC5B,8BAA8B,oBACtB,SAAS,gCAAgC,CAAC,QACtD,wCAAwC,qBAC3B,iBAAiB,KACnC,IAgGF,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderGraphFetchTreeUtil.js","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderGraphFetchValueSpecificationBuilder.d.ts","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAUL,KAAK,cAAc,EAEpB,MAAM,qBAAqB,CAAC;AAI7B,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AA8D5F,eAAO,MAAM,gBAAgB,wBACN,+BAA+B,kBACpC,cAAc,YACpB;IACR;;;OAGG;IACH,wBAAwB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/C,qBAAqB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CAC7C,KACA,IAgDF,CAAC"}
@@ -0,0 +1,72 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { extractElementNameFromPath, GenericType, GenericTypeExplicitReference, matchFunctionName, PrimitiveInstanceValue, PRIMITIVE_TYPE, SimpleFunctionExpression, TYPICAL_MULTIPLICITY_TYPE, RootGraphFetchTreeInstanceValue, } from '@finos/legend-graph';
17
+ import { guaranteeNonNullable, guaranteeType } from '@finos/legend-shared';
18
+ import { QUERY_BUILDER_SUPPORTED_FUNCTIONS } from '../../../../graphManager/QueryBuilderSupportedFunctions.js';
19
+ import { isGraphFetchTreeDataEmpty } from './QueryBuilderGraphFetchTreeUtil.js';
20
+ const appendTakeLimit = (queryBuilderState, lambda, previewLimit) => {
21
+ if (!previewLimit) {
22
+ return lambda;
23
+ }
24
+ const multiplicityOne = queryBuilderState.graphManagerState.graph.getTypicalMultiplicity(TYPICAL_MULTIPLICITY_TYPE.ONE);
25
+ if (lambda.expressionSequence.length === 1) {
26
+ const func = lambda.expressionSequence[0];
27
+ if (func instanceof SimpleFunctionExpression) {
28
+ if (matchFunctionName(func.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.SERIALIZE)) {
29
+ const limit = new PrimitiveInstanceValue(GenericTypeExplicitReference.create(new GenericType(queryBuilderState.graphManagerState.graph.getPrimitiveType(PRIMITIVE_TYPE.INTEGER))), multiplicityOne);
30
+ limit.values = [previewLimit];
31
+ const takeFunction = new SimpleFunctionExpression(extractElementNameFromPath(QUERY_BUILDER_SUPPORTED_FUNCTIONS.TAKE), multiplicityOne);
32
+ // NOTE: `take()` does not work on `graphFetch()` or `serialize()` so we need to
33
+ // put it next to `all()`
34
+ const serializeFunction = func;
35
+ const graphFetchFunc = guaranteeType(serializeFunction.parametersValues[0], SimpleFunctionExpression);
36
+ const getAllFunc = graphFetchFunc
37
+ .parametersValues[0];
38
+ takeFunction.parametersValues[0] = getAllFunc;
39
+ takeFunction.parametersValues[1] = limit;
40
+ graphFetchFunc.parametersValues = [
41
+ takeFunction,
42
+ graphFetchFunc.parametersValues[1],
43
+ ];
44
+ return lambda;
45
+ }
46
+ }
47
+ }
48
+ return lambda;
49
+ };
50
+ export const appendGraphFetch = (graphFetchTreeState, lambdaFunction, options) => {
51
+ const queryBuilderState = graphFetchTreeState.queryBuilderState;
52
+ const precedingExpression = guaranteeNonNullable(lambdaFunction.expressionSequence[0], `Can't build graph-fetch tree expression: preceding expression is not defined`);
53
+ const multiplicityOne = queryBuilderState.graphManagerState.graph.getTypicalMultiplicity(TYPICAL_MULTIPLICITY_TYPE.ONE);
54
+ // build graph-fetch tree
55
+ if (graphFetchTreeState.treeData &&
56
+ !isGraphFetchTreeDataEmpty(graphFetchTreeState.treeData)) {
57
+ const graphFetchInstance = new RootGraphFetchTreeInstanceValue(multiplicityOne);
58
+ graphFetchInstance.values = [graphFetchTreeState.treeData.tree];
59
+ const serializeFunction = new SimpleFunctionExpression(extractElementNameFromPath(QUERY_BUILDER_SUPPORTED_FUNCTIONS.SERIALIZE), multiplicityOne);
60
+ const graphFetchFunc = new SimpleFunctionExpression(graphFetchTreeState.isChecked
61
+ ? extractElementNameFromPath(QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH_CHECKED)
62
+ : extractElementNameFromPath(QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH), multiplicityOne);
63
+ graphFetchFunc.parametersValues = [precedingExpression, graphFetchInstance];
64
+ serializeFunction.parametersValues = [graphFetchFunc, graphFetchInstance];
65
+ lambdaFunction.expressionSequence[0] = serializeFunction;
66
+ }
67
+ // build result set modifier: i.e. preview limit
68
+ if (options?.isBuildingExecutionQuery) {
69
+ appendTakeLimit(queryBuilderState, lambdaFunction, queryBuilderState.resultState.previewLimit);
70
+ }
71
+ };
72
+ //# sourceMappingURL=QueryBuilderGraphFetchValueSpecificationBuilder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderGraphFetchValueSpecificationBuilder.js","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderProjectionColumnState.d.ts","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EACL,KAAK,WAAW,EAOjB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,KAAK,wCAAwC,EAE9C,MAAM,6CAA6C,CAAC;AACrD,OAAO,EAEL,mCAAmC,EACpC,MAAM,0CAA0C,CAAC;AAClD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EACL,KAAK,0BAA0B,EAC/B,KAAK,IAAI,EAUT,SAAS,EAEV,MAAM,qBAAqB,CAAC;AAK7B,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAEpF,eAAO,MAAM,wCAAwC,sBAAsB,CAAC;AAE5E,MAAM,WAAW,sCAAsC;IACrD,WAAW,EAAE,iCAAiC,CAAC;CAChD;AAED,8BAAsB,iCAAiC;IACrD,QAAQ,CAAC,IAAI,SAAU;IACvB,eAAe,EAAE,2BAA2B,CAAC;IAC7C,UAAU,EAAE,MAAM,CAAC;gBAGjB,eAAe,EAAE,2BAA2B,EAC5C,UAAU,EAAE,MAAM;IAapB,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIhC,QAAQ,CAAC,aAAa,IAAI,IAAI,GAAG,SAAS;CAC3C;AAED,qBAAa,uCAAwC,SAAQ,iCAAiC;IAC5F,mBAAmB,EAAE,MAAM,CAAgC;IAC3D,uBAAuB,EAAE,mCAAmC,CAAC;gBAG3D,eAAe,EAAE,2BAA2B,EAC5C,kBAAkB,EAAE,0BAA0B,EAC9C,oBAAoB,EAAE,OAAO;IAqB/B,sBAAsB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIzC,cAAc,CACZ,IAAI,EAAE,wCAAwC,EAC9C,oBAAoB,EAAE,OAAO,GAC5B,IAAI;IAkBE,aAAa,IAAI,IAAI,GAAG,SAAS;CAI3C;AAED,cAAM,2CAA4C,SAAQ,iBAAiB;IACzE,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,+BAA+B,EAAE,2CAA2C,CAAC;IAC7E;;;OAGG;IACH,kBAAkB,SAAM;gBAGtB,iBAAiB,EAAE,iBAAiB,EACpC,+BAA+B,EAAE,2CAA2C;IAO9E,IAAI,QAAQ,IAAI,MAAM,CAQrB;IAED,aAAa,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;IAItC,kCAAkC,IAAI,WAAW,CAAC,IAAI,CAAC;IA2BvD,kCAAkC,CAAC,MAAM,EAAE,OAAO,GAAG,WAAW,CAAC,IAAI,CAAC;CAmCxE;AAED,qBAAa,2CAA4C,SAAQ,iCAAiC;IAChG,2BAA2B,EAAE,2CAA2C,CAAC;IACzE,MAAM,EAAE,SAAS,CAAC;IAClB,UAAU,EAAE,IAAI,GAAG,SAAS,CAAC;gBAEjB,eAAe,EAAE,2BAA2B,EAAE,MAAM,EAAE,SAAS;IAkB3E,SAAS,CAAC,GAAG,EAAE,SAAS,GAAG,IAAI;IAI/B,aAAa,CAAC,GAAG,EAAE,IAAI,GAAG,SAAS,GAAG,IAAI;IAI1C;;;;OAIG;IACF,+BAA+B,IAAI,WAAW,CAAC,IAAI,CAAC;IA0C5C,aAAa,IAAI,IAAI,GAAG,SAAS;CAG3C"}
@@ -0,0 +1,187 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { action, makeObservable, observable, flow } from 'mobx';
17
+ import { LogEvent, assertErrorThrown, uuid, guaranteeNonNullable, assertTrue, assertNonEmptyString, } from '@finos/legend-shared';
18
+ import { buildPropertyExpressionFromExplorerTreeNodeData, } from '../../explorer/QueryBuilderExplorerState.js';
19
+ import { getPropertyChainName, QueryBuilderPropertyExpressionState, } from '../../QueryBuilderPropertyEditorState.js';
20
+ import { PackageableElementExplicitReference, GRAPH_MANAGER_EVENT, PRIMITIVE_TYPE, buildSourceInformationSourceId, ParserError, TYPICAL_MULTIPLICITY_TYPE, RawVariableExpression, Enumeration, RawLambda, stub_RawLambda, } from '@finos/legend-graph';
21
+ import { DEFAULT_LAMBDA_VARIABLE_NAME, QUERY_BUILDER_SOURCE_ID_LABEL, } from '../../QueryBuilderConfig.js';
22
+ import { LambdaEditorState } from '@finos/legend-application';
23
+ export const QUERY_BUILDER_PROJECTION_COLUMN_DND_TYPE = 'PROJECTION_COLUMN';
24
+ export class QueryBuilderProjectionColumnState {
25
+ uuid = uuid();
26
+ projectionState;
27
+ columnName;
28
+ constructor(projectionState, columnName) {
29
+ makeObservable(this, {
30
+ uuid: false,
31
+ projectionState: false,
32
+ columnName: observable,
33
+ setColumnName: action,
34
+ });
35
+ this.projectionState = projectionState;
36
+ this.columnName = columnName;
37
+ }
38
+ setColumnName(val) {
39
+ this.columnName = val;
40
+ }
41
+ }
42
+ export class QueryBuilderSimpleProjectionColumnState extends QueryBuilderProjectionColumnState {
43
+ lambdaParameterName = DEFAULT_LAMBDA_VARIABLE_NAME;
44
+ propertyExpressionState;
45
+ constructor(projectionState, propertyExpression, humanizePropertyName) {
46
+ super(projectionState, '');
47
+ makeObservable(this, {
48
+ lambdaParameterName: observable,
49
+ propertyExpressionState: observable,
50
+ setLambdaParameterName: action,
51
+ changeProperty: action,
52
+ });
53
+ this.propertyExpressionState = new QueryBuilderPropertyExpressionState(projectionState.queryBuilderState, propertyExpression);
54
+ this.columnName = getPropertyChainName(this.propertyExpressionState.propertyExpression, humanizePropertyName);
55
+ }
56
+ setLambdaParameterName(val) {
57
+ this.lambdaParameterName = val;
58
+ }
59
+ changeProperty(node, humanizePropertyName) {
60
+ this.propertyExpressionState = new QueryBuilderPropertyExpressionState(this.projectionState.queryBuilderState, buildPropertyExpressionFromExplorerTreeNodeData(this.projectionState.queryBuilderState.explorerState
61
+ .nonNullableTreeData, node, this.projectionState.queryBuilderState.graphManagerState.graph, this.projectionState.queryBuilderState.explorerState.propertySearchState
62
+ .allMappedPropertyNodes));
63
+ this.columnName = getPropertyChainName(this.propertyExpressionState.propertyExpression, humanizePropertyName);
64
+ }
65
+ getReturnType() {
66
+ return this.propertyExpressionState.propertyExpression.func.genericType
67
+ .value.rawType;
68
+ }
69
+ }
70
+ class QueryBuilderDerivationProjectionLambdaState extends LambdaEditorState {
71
+ queryBuilderState;
72
+ derivationProjectionColumnState;
73
+ /**
74
+ * This is used to store the JSON string when viewing the query in JSON mode
75
+ * TODO: consider moving this to another state if we need to simplify the logic of text-mode
76
+ */
77
+ readOnlylambdaJson = '';
78
+ constructor(queryBuilderState, derivationProjectionColumnState) {
79
+ super('', '');
80
+ this.queryBuilderState = queryBuilderState;
81
+ this.derivationProjectionColumnState = derivationProjectionColumnState;
82
+ }
83
+ get lambdaId() {
84
+ return buildSourceInformationSourceId([
85
+ // TODO: to be reworked
86
+ // See https://github.com/finos/legend-studio/issues/1168
87
+ QUERY_BUILDER_SOURCE_ID_LABEL.QUERY_BUILDER,
88
+ QUERY_BUILDER_SOURCE_ID_LABEL.PROJECTION,
89
+ this.derivationProjectionColumnState.uuid,
90
+ ]);
91
+ }
92
+ setLambdaJson(lambdaJson) {
93
+ this.readOnlylambdaJson = lambdaJson;
94
+ }
95
+ *convertLambdaGrammarStringToObject() {
96
+ const emptyLambda = stub_RawLambda();
97
+ if (this.lambdaString) {
98
+ try {
99
+ const lambda = (yield this.queryBuilderState.graphManagerState.graphManager.pureCodeToLambda(this.fullLambdaString, this.lambdaId));
100
+ this.setParserError(undefined);
101
+ this.derivationProjectionColumnState.setLambda(lambda);
102
+ }
103
+ catch (error) {
104
+ assertErrorThrown(error);
105
+ if (error instanceof ParserError) {
106
+ this.setParserError(error);
107
+ }
108
+ this.queryBuilderState.applicationStore.log.error(LogEvent.create(GRAPH_MANAGER_EVENT.PARSING_FAILURE), error);
109
+ }
110
+ }
111
+ else {
112
+ this.clearErrors();
113
+ this.derivationProjectionColumnState.setLambda(emptyLambda);
114
+ }
115
+ }
116
+ *convertLambdaObjectToGrammarString(pretty) {
117
+ if (this.derivationProjectionColumnState.lambda.body) {
118
+ try {
119
+ const lambdas = new Map();
120
+ lambdas.set(this.lambdaId, new RawLambda(this.derivationProjectionColumnState.lambda.parameters, this.derivationProjectionColumnState.lambda.body));
121
+ const isolatedLambdas = (yield this.queryBuilderState.graphManagerState.graphManager.lambdasToPureCode(lambdas, pretty));
122
+ const grammarText = isolatedLambdas.get(this.lambdaId);
123
+ this.setLambdaString(grammarText !== undefined
124
+ ? this.extractLambdaString(grammarText)
125
+ : '');
126
+ this.clearErrors();
127
+ }
128
+ catch (error) {
129
+ assertErrorThrown(error);
130
+ this.queryBuilderState.applicationStore.log.error(LogEvent.create(GRAPH_MANAGER_EVENT.PARSING_FAILURE), error);
131
+ }
132
+ }
133
+ else {
134
+ this.clearErrors();
135
+ this.setLambdaString('');
136
+ }
137
+ }
138
+ }
139
+ export class QueryBuilderDerivationProjectionColumnState extends QueryBuilderProjectionColumnState {
140
+ derivationLambdaEditorState;
141
+ lambda;
142
+ returnType;
143
+ constructor(projectionState, lambda) {
144
+ super(projectionState, '(derivation)');
145
+ makeObservable(this, {
146
+ lambda: observable,
147
+ returnType: observable,
148
+ setLambda: action,
149
+ fetchDerivationLambdaReturnType: flow,
150
+ });
151
+ this.derivationLambdaEditorState =
152
+ new QueryBuilderDerivationProjectionLambdaState(projectionState.queryBuilderState, this);
153
+ this.lambda = lambda;
154
+ }
155
+ setLambda(val) {
156
+ this.lambda = val;
157
+ }
158
+ setReturnType(val) {
159
+ this.returnType = val;
160
+ }
161
+ /**
162
+ * Fetches lambda return type for derivation column.
163
+ * Throws error if unable to fetch type or if type is not primitive or an enumeration
164
+ * as expected by a projection column
165
+ */
166
+ *fetchDerivationLambdaReturnType() {
167
+ assertTrue(Array.isArray(this.lambda.parameters));
168
+ const projectionParameter = this.lambda.parameters;
169
+ const graph = this.projectionState.queryBuilderState.graphManagerState.graph;
170
+ const multiplicityOne = graph.getTypicalMultiplicity(TYPICAL_MULTIPLICITY_TYPE.ONE);
171
+ assertTrue(projectionParameter.length === 1);
172
+ const variable = projectionParameter[0];
173
+ assertNonEmptyString(variable.name);
174
+ // assign variable to query class
175
+ const rawVariableExpression = new RawVariableExpression(variable.name, multiplicityOne, PackageableElementExplicitReference.create(guaranteeNonNullable(this.projectionState.queryBuilderState.class)));
176
+ const _rawVariableExpression = this.projectionState.queryBuilderState.graphManagerState.graphManager.serializeRawValueSpecification(rawVariableExpression);
177
+ const isolatedLambda = new RawLambda([_rawVariableExpression], this.lambda.body);
178
+ const type = (yield this.projectionState.queryBuilderState.graphManagerState.graphManager.getLambdaReturnType(isolatedLambda, graph));
179
+ const resolvedType = graph.getType(type);
180
+ assertTrue(Object.values(PRIMITIVE_TYPE).includes(resolvedType.path) || resolvedType instanceof Enumeration, 'projection column must have primitive return type');
181
+ this.setReturnType(resolvedType);
182
+ }
183
+ getReturnType() {
184
+ return this.returnType;
185
+ }
186
+ }
187
+ //# sourceMappingURL=QueryBuilderProjectionColumnState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderProjectionColumnState.js","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderProjectionState.d.ts","sourceRoot":"","sources":["../../../../../src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAUH,OAAO,EACL,KAAK,WAAW,EAUjB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EACL,KAAK,gBAAgB,EAMrB,KAAK,EACL,KAAK,cAAc,EAMpB,MAAM,qBAAqB,CAAC;AAK7B,OAAO,EAAE,4BAA4B,EAAE,MAAM,+CAA+C,CAAC;AAE7F,OAAO,EAEL,6CAA6C,EAC9C,MAAM,qDAAqD,CAAC;AAC7D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAC/E,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAC3F,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,iDAAiD,CAAC;AAEtG,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,gDAAgD,CAAC;AAEpG,OAAO,EACL,2CAA2C,EAC3C,uCAAuC,EACvC,KAAK,iCAAiC,EACvC,MAAM,wCAAwC,CAAC;AAChD,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,uCAAuC,CAAC;AAC7F,OAAO,EAIL,KAAK,wCAAwC,EAC9C,MAAM,6CAA6C,CAAC;AAKrD,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,sDAAsD,CAAC;AAIxG,qBAAa,2BAA4B,SAAQ,6CAA6C;IAC5F,OAAO,EAAE,iCAAiC,EAAE,CAAM;IAClD,gBAAgB,EAAE,4BAA4B,CAAC;IAC/C,eAAe,EAAE,2BAA2B,CAAC;IAC7C,sBAAsB,EAAE,2BAA2B,CAAC;IACpD,oCAAoC,UAAS;IAC7C,mBAAmB,UAAS;IAE5B,mBAAmB,EAAE,8BAA8B,EAAE,CACV;IAC3C,oBAAoB,EAAE,6BAA6B,EAAE,CACR;gBAG3C,iBAAiB,EAAE,iBAAiB,EACpC,mBAAmB,EAAE,+BAA+B;IA+BtD,IAAI,IAAI,IAAI,MAAM,CAEjB;IAED,IAAI,WAAW,IAAI,2CAA2C,EAAE,CAI/D;IAED,IAAI,cAAc,IAAI,OAAO,CAI5B;IAED,IAAI,+BAA+B,IAAI,MAAM,EAAE,CAwE9C;IAED,IAAI,gBAAgB,IAAI,MAAM,EAAE,GAAG,SAAS,CAc3C;IAED,aAAa,CAAC,MAAM,EAAE,KAAK,GAAG,SAAS,GAAG,IAAI;IAI9C,oBAAoB,CAClB,cAAc,EAAE,cAAc,EAC9B,OAAO,CAAC,EAAE,2BAA2B,GACpC,IAAI;IAIP,sBAAsB,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;IAIzC,kCAAkC,IAAI,WAAW,CAAC,IAAI,CAAC;IA8CxD,qCAAqC,CACnC,2BAA2B,EAAE,uCAAuC,GACnE,IAAI;IA8BP,aAAa,CACX,MAAM,EAAE,iCAAiC,EACzC,MAAM,EAAE,iCAAiC,GACxC,IAAI;IAuBP,YAAY,CAAC,GAAG,EAAE,iCAAiC,GAAG,IAAI;IAc1D,SAAS,CACP,GAAG,EAAE,iCAAiC,EACtC,OAAO,CAAC,EAAE;QACR;;;;;WAKG;QACH,WAAW,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;KACnC,GACA,IAAI;IAuBP,UAAU,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,IAAI;IA8C1D,qBAAqB,IAAI,IAAI;IAa7B,sBAAsB,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,OAAO;IA2BnE,qBAAqB,IAAI,IAAI;IAQ7B,aAAa,CAAC,IAAI,EAAE,wCAAwC,GAAG,IAAI;IAgBnE,eAAe,CAAC,KAAK,EAAE,wCAAwC,EAAE,GAAG,IAAI;IAkBxE,iCAAiC,CAAC,QAAQ,EAAE,MAAM,IAAI,GAAG,IAAI;CAiC9D"}