@finos/legend-application-query 5.2.6 → 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.
- package/lib/components/LegendQueryApplication.js +2 -2
- package/lib/components/LegendQueryApplication.js.map +1 -1
- package/lib/components/QueryEditor.d.ts +2 -2
- package/lib/components/QueryEditor.d.ts.map +1 -1
- package/lib/components/QueryEditor.js +14 -15
- package/lib/components/QueryEditor.js.map +1 -1
- package/lib/components/QueryEditorComponentTestUtils.d.ts +5 -1
- package/lib/components/QueryEditorComponentTestUtils.d.ts.map +1 -1
- package/lib/components/QueryEditorComponentTestUtils.js +17 -14
- package/lib/components/QueryEditorComponentTestUtils.js.map +1 -1
- package/lib/components/QueryEditorStoreProvider.d.ts +2 -3
- package/lib/components/QueryEditorStoreProvider.d.ts.map +1 -1
- package/lib/components/QueryEditorStoreProvider.js +5 -5
- package/lib/components/QueryEditorStoreProvider.js.map +1 -1
- package/lib/components/QuerySetup.js +17 -17
- package/lib/components/QuerySetup.js.map +1 -1
- package/lib/components/query-builder/QueryBuilder.d.ts +23 -0
- package/lib/components/query-builder/QueryBuilder.d.ts.map +1 -0
- package/lib/components/query-builder/QueryBuilder.js +111 -0
- package/lib/components/query-builder/QueryBuilder.js.map +1 -0
- package/lib/components/query-builder/QueryBuilderParametersPanel.d.ts +32 -0
- package/lib/components/query-builder/QueryBuilderParametersPanel.d.ts.map +1 -0
- package/lib/components/query-builder/QueryBuilderParametersPanel.js +128 -0
- package/lib/components/query-builder/QueryBuilderParametersPanel.js.map +1 -0
- package/lib/components/query-builder/QueryBuilderPropertyExpressionEditor.d.ts +30 -0
- package/lib/components/query-builder/QueryBuilderPropertyExpressionEditor.d.ts.map +1 -0
- package/lib/components/query-builder/QueryBuilderPropertyExpressionEditor.js +116 -0
- package/lib/components/query-builder/QueryBuilderPropertyExpressionEditor.js.map +1 -0
- package/lib/components/query-builder/QueryBuilderResultPanel.d.ts +23 -0
- package/lib/components/query-builder/QueryBuilderResultPanel.d.ts.map +1 -0
- package/lib/components/query-builder/QueryBuilderResultPanel.js +242 -0
- package/lib/components/query-builder/QueryBuilderResultPanel.js.map +1 -0
- package/lib/components/query-builder/QueryBuilderSideBar.d.ts +42 -0
- package/lib/components/query-builder/QueryBuilderSideBar.d.ts.map +1 -0
- package/lib/components/query-builder/QueryBuilderSideBar.js +169 -0
- package/lib/components/query-builder/QueryBuilderSideBar.js.map +1 -0
- package/lib/components/query-builder/QueryBuilderTextEditor.d.ts +23 -0
- package/lib/components/query-builder/QueryBuilderTextEditor.d.ts.map +1 -0
- package/lib/components/query-builder/QueryBuilderTextEditor.js +48 -0
- package/lib/components/query-builder/QueryBuilderTextEditor.js.map +1 -0
- package/lib/components/query-builder/QueryBuilderUnsupportedQueryEditor.d.ts +23 -0
- package/lib/components/query-builder/QueryBuilderUnsupportedQueryEditor.d.ts.map +1 -0
- package/lib/components/query-builder/QueryBuilderUnsupportedQueryEditor.js +36 -0
- package/lib/components/query-builder/QueryBuilderUnsupportedQueryEditor.js.map +1 -0
- package/lib/components/{QueryBuilder_TestID.d.ts → query-builder/QueryBuilder_TestID.d.ts} +0 -0
- package/lib/components/query-builder/QueryBuilder_TestID.d.ts.map +1 -0
- package/lib/components/{QueryBuilder_TestID.js → query-builder/QueryBuilder_TestID.js} +0 -0
- package/lib/components/query-builder/QueryBuilder_TestID.js.map +1 -0
- package/lib/components/query-builder/explorer/QueryBuilderExplorerPanel.d.ts +36 -0
- package/lib/components/query-builder/explorer/QueryBuilderExplorerPanel.d.ts.map +1 -0
- package/lib/components/query-builder/explorer/QueryBuilderExplorerPanel.js +340 -0
- package/lib/components/query-builder/explorer/QueryBuilderExplorerPanel.js.map +1 -0
- package/lib/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.d.ts +23 -0
- package/lib/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.d.ts.map +1 -0
- package/lib/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.js +147 -0
- package/lib/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.js.map +1 -0
- package/lib/components/query-builder/explorer/QueryBuilderMilestoneEditor.d.ts +23 -0
- package/lib/components/query-builder/explorer/QueryBuilderMilestoneEditor.d.ts.map +1 -0
- package/lib/components/query-builder/explorer/QueryBuilderMilestoneEditor.js +122 -0
- package/lib/components/query-builder/explorer/QueryBuilderMilestoneEditor.js.map +1 -0
- package/lib/components/query-builder/explorer/QueryBuilderPropertySearchPanel.d.ts +24 -0
- package/lib/components/query-builder/explorer/QueryBuilderPropertySearchPanel.d.ts.map +1 -0
- package/lib/components/query-builder/explorer/QueryBuilderPropertySearchPanel.js +200 -0
- package/lib/components/query-builder/explorer/QueryBuilderPropertySearchPanel.js.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.d.ts +23 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.d.ts.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.js +52 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.js.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts +32 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.js +94 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.js.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.d.ts +31 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.d.ts.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.js +378 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.js.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.d.ts +23 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.d.ts.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.js +216 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.js.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.d.ts +23 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.d.ts.map +1 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.js +88 -0
- package/lib/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.js.map +1 -0
- package/lib/components/query-builder/filter/QueryBuilderFilterPanel.d.ts +23 -0
- package/lib/components/query-builder/filter/QueryBuilderFilterPanel.d.ts.map +1 -0
- package/lib/components/query-builder/filter/QueryBuilderFilterPanel.js +316 -0
- package/lib/components/query-builder/filter/QueryBuilderFilterPanel.js.map +1 -0
- package/lib/components/{shared → query-builder/shared}/ElementIconUtils.d.ts +0 -0
- package/lib/components/query-builder/shared/ElementIconUtils.d.ts.map +1 -0
- package/lib/components/{shared → query-builder/shared}/ElementIconUtils.js +0 -0
- package/lib/components/query-builder/shared/ElementIconUtils.js.map +1 -0
- package/lib/components/query-builder/shared/QueryBuilderLambdaEditor.d.ts +43 -0
- package/lib/components/query-builder/shared/QueryBuilderLambdaEditor.d.ts.map +1 -0
- package/lib/components/{shared → query-builder/shared}/QueryBuilderLambdaEditor.js +0 -0
- package/lib/components/query-builder/shared/QueryBuilderLambdaEditor.js.map +1 -0
- package/lib/components/{shared → query-builder/shared}/QueryBuilderPanelIssueCountBadge.d.ts +0 -0
- package/lib/components/query-builder/shared/QueryBuilderPanelIssueCountBadge.d.ts.map +1 -0
- package/lib/components/query-builder/shared/QueryBuilderPanelIssueCountBadge.js +28 -0
- package/lib/components/query-builder/shared/QueryBuilderPanelIssueCountBadge.js.map +1 -0
- package/lib/components/{shared → query-builder/shared}/QueryBuilderPropertyInfoTooltip.d.ts +0 -0
- package/lib/components/query-builder/shared/QueryBuilderPropertyInfoTooltip.d.ts.map +1 -0
- package/lib/components/{shared → query-builder/shared}/QueryBuilderPropertyInfoTooltip.js +0 -0
- package/lib/components/query-builder/shared/QueryBuilderPropertyInfoTooltip.js.map +1 -0
- package/lib/components/query-builder/workflows/ClassQueryBuilder.d.ts +18 -0
- package/lib/components/query-builder/workflows/ClassQueryBuilder.d.ts.map +1 -0
- package/lib/components/query-builder/workflows/ClassQueryBuilder.js +87 -0
- package/lib/components/query-builder/workflows/ClassQueryBuilder.js.map +1 -0
- package/lib/components/query-builder/workflows/MappingQueryBuilder.d.ts +18 -0
- package/lib/components/query-builder/workflows/MappingQueryBuilder.d.ts.map +1 -0
- package/lib/components/query-builder/workflows/MappingQueryBuilder.js +88 -0
- package/lib/components/query-builder/workflows/MappingQueryBuilder.js.map +1 -0
- package/lib/components/query-builder/workflows/ServiceQueryBuilder.d.ts +18 -0
- package/lib/components/query-builder/workflows/ServiceQueryBuilder.d.ts.map +1 -0
- package/lib/components/query-builder/workflows/ServiceQueryBuilder.js +69 -0
- package/lib/components/query-builder/workflows/ServiceQueryBuilder.js.map +1 -0
- package/lib/graphManager/QueryBuilderSupportedFunctions.d.ts +60 -0
- package/lib/graphManager/QueryBuilderSupportedFunctions.d.ts.map +1 -0
- package/lib/graphManager/QueryBuilderSupportedFunctions.js +65 -0
- package/lib/graphManager/QueryBuilderSupportedFunctions.js.map +1 -0
- package/lib/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.d.ts.map +1 -1
- package/lib/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.js +6 -4
- package/lib/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.js.map +1 -1
- package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.d.ts.map +1 -1
- package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.js +4 -4
- package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +8 -3
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -3
- package/lib/index.js.map +1 -1
- package/lib/package.json +8 -8
- package/lib/stores/LegendQueryApplicationPlugin.d.ts +7 -0
- package/lib/stores/LegendQueryApplicationPlugin.d.ts.map +1 -1
- package/lib/stores/LegendQueryApplicationPlugin.js.map +1 -1
- package/lib/stores/LegendQueryRouter.d.ts +8 -12
- package/lib/stores/LegendQueryRouter.d.ts.map +1 -1
- package/lib/stores/LegendQueryRouter.js +6 -7
- package/lib/stores/LegendQueryRouter.js.map +1 -1
- package/lib/stores/QueryEditorStore.d.ts +11 -11
- package/lib/stores/QueryEditorStore.d.ts.map +1 -1
- package/lib/stores/QueryEditorStore.js +68 -64
- package/lib/stores/QueryEditorStore.js.map +1 -1
- package/lib/stores/QuerySetupStore.d.ts +3 -3
- package/lib/stores/QuerySetupStore.d.ts.map +1 -1
- package/lib/stores/QuerySetupStore.js +3 -3
- package/lib/stores/QuerySetupStore.js.map +1 -1
- package/lib/stores/query-builder/QueryBuilderChangeDetectionState.d.ts +25 -0
- package/lib/stores/query-builder/QueryBuilderChangeDetectionState.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderChangeDetectionState.js +32 -0
- package/lib/stores/query-builder/QueryBuilderChangeDetectionState.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderConfig.d.ts +32 -0
- package/lib/stores/query-builder/QueryBuilderConfig.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderConfig.js +34 -0
- package/lib/stores/query-builder/QueryBuilderConfig.js.map +1 -0
- package/lib/stores/{QueryBuilderGroupOperationHelper.d.ts → query-builder/QueryBuilderGroupOperationHelper.d.ts} +0 -0
- package/lib/stores/query-builder/QueryBuilderGroupOperationHelper.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderGroupOperationHelper.js +43 -0
- package/lib/stores/query-builder/QueryBuilderGroupOperationHelper.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderMilestoningState.d.ts +32 -0
- package/lib/stores/query-builder/QueryBuilderMilestoningState.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderMilestoningState.js +95 -0
- package/lib/stores/query-builder/QueryBuilderMilestoningState.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderParametersState.d.ts +28 -0
- package/lib/stores/query-builder/QueryBuilderParametersState.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderParametersState.js +39 -0
- package/lib/stores/query-builder/QueryBuilderParametersState.js.map +1 -0
- package/lib/stores/{QueryBuilderPreviewDataHelper.d.ts → query-builder/QueryBuilderPreviewDataHelper.d.ts} +0 -0
- package/lib/stores/query-builder/QueryBuilderPreviewDataHelper.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderPreviewDataHelper.js +138 -0
- package/lib/stores/query-builder/QueryBuilderPreviewDataHelper.js.map +1 -0
- package/lib/stores/{QueryBuilderPropertyEditorState.d.ts → query-builder/QueryBuilderPropertyEditorState.d.ts} +0 -0
- package/lib/stores/query-builder/QueryBuilderPropertyEditorState.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderPropertyEditorState.js +395 -0
- package/lib/stores/query-builder/QueryBuilderPropertyEditorState.js.map +1 -0
- package/lib/stores/{QueryBuilderResultState.d.ts → query-builder/QueryBuilderResultState.d.ts} +0 -0
- package/lib/stores/query-builder/QueryBuilderResultState.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderResultState.js +176 -0
- package/lib/stores/query-builder/QueryBuilderResultState.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderState.d.ts +112 -0
- package/lib/stores/query-builder/QueryBuilderState.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderState.js +337 -0
- package/lib/stores/query-builder/QueryBuilderState.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderStateBuilder.d.ts +124 -0
- package/lib/stores/query-builder/QueryBuilderStateBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderStateBuilder.js +311 -0
- package/lib/stores/query-builder/QueryBuilderStateBuilder.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderStateTestUtils.d.ts +24 -0
- package/lib/stores/query-builder/QueryBuilderStateTestUtils.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderStateTestUtils.js +50 -0
- package/lib/stores/query-builder/QueryBuilderStateTestUtils.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderTextEditorState.d.ts +49 -0
- package/lib/stores/query-builder/QueryBuilderTextEditorState.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderTextEditorState.js +145 -0
- package/lib/stores/query-builder/QueryBuilderTextEditorState.js.map +1 -0
- package/lib/stores/{QueryBuilderTypeaheadHelper.d.ts → query-builder/QueryBuilderTypeaheadHelper.d.ts} +0 -0
- package/lib/stores/query-builder/QueryBuilderTypeaheadHelper.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderTypeaheadHelper.js +85 -0
- package/lib/stores/query-builder/QueryBuilderTypeaheadHelper.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderUnsupportedQueryState.d.ts +26 -0
- package/lib/stores/query-builder/QueryBuilderUnsupportedQueryState.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderUnsupportedQueryState.js +37 -0
- package/lib/stores/query-builder/QueryBuilderUnsupportedQueryState.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilder.d.ts +20 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilder.js +87 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilder.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.d.ts +27 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.js +161 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.js.map +1 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationHelper.d.ts +61 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationHelper.d.ts.map +1 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationHelper.js +235 -0
- package/lib/stores/query-builder/QueryBuilderValueSpecificationHelper.js.map +1 -0
- package/lib/stores/query-builder/explorer/QueryBuilderExplorerState.d.ts +99 -0
- package/lib/stores/query-builder/explorer/QueryBuilderExplorerState.d.ts.map +1 -0
- package/lib/stores/query-builder/explorer/QueryBuilderExplorerState.js +446 -0
- package/lib/stores/query-builder/explorer/QueryBuilderExplorerState.js.map +1 -0
- package/lib/stores/query-builder/explorer/QueryBuilderPropertySearchState.d.ts +46 -0
- package/lib/stores/query-builder/explorer/QueryBuilderPropertySearchState.d.ts.map +1 -0
- package/lib/stores/query-builder/explorer/QueryBuilderPropertySearchState.js +242 -0
- package/lib/stores/query-builder/explorer/QueryBuilderPropertySearchState.js.map +1 -0
- package/lib/stores/{explorer → query-builder/explorer}/QueryFunctionsExplorerState.d.ts +0 -0
- package/lib/stores/query-builder/explorer/QueryFunctionsExplorerState.d.ts.map +1 -0
- package/lib/stores/query-builder/explorer/QueryFunctionsExplorerState.js +228 -0
- package/lib/stores/query-builder/explorer/QueryFunctionsExplorerState.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureImplementationState.d.ts +40 -0
- package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureImplementationState.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureImplementationState.js +34 -0
- package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureImplementationState.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureState.d.ts +27 -0
- package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureState.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureState.js +73 -0
- package/lib/stores/query-builder/fetch-structure/QueryBuilderFetchStructureState.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.d.ts +49 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js +157 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.d.ts +20 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.js +62 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.d.ts +42 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.js +173 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.d.ts +26 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js +72 -0
- package/lib/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryBuilderProjectionColumnState.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.js +187 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.d.ts +68 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.js +305 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionStateBuilder.d.ts +25 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionStateBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionStateBuilder.js +186 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionStateBuilder.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.d.ts +26 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js +189 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryResultSetModifierState.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryResultSetModifierState.d.ts.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryResultSetModifierState.js +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/QueryResultSetModifierState.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperator.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.d.ts.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperator.js +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperatorLoader.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.d.ts.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperatorLoader.js +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregationState.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationState.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js +103 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.d.ts +20 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.js +96 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.d.ts.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.js +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js +50 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js +55 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js +50 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js +78 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js +67 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js +86 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js +86 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js +50 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js +50 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js +45 -0
- package/lib/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperator.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.d.ts.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperator.js +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperatorLoader.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.d.ts.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperatorLoader.js +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterState.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js +585 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.d.ts +22 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.js +122 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js +79 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js +73 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js +75 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js +75 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js +118 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js +81 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js +43 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js +104 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.js +67 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js +81 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js +43 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js.map +1 -0
- package/lib/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.d.ts +0 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.d.ts.map +1 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js +75 -0
- package/lib/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterOperator.d.ts +0 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterOperator.d.ts.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterOperator.js +0 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterOperator.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterOperatorLoader.d.ts +0 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterOperatorLoader.d.ts.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterOperatorLoader.js +0 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterOperatorLoader.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/QueryBuilderFilterState.d.ts +0 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterState.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterState.js +531 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterState.js.map +1 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterStateBuilder.d.ts +19 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterStateBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterStateBuilder.js +74 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterStateBuilder.js.map +1 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterValueSpecificationBuilder.d.ts +19 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterValueSpecificationBuilder.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterValueSpecificationBuilder.js +78 -0
- package/lib/stores/query-builder/filter/QueryBuilderFilterValueSpecificationBuilder.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperatorHelper.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperatorHelper.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperatorHelper.js +257 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperatorHelper.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_Contain.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Contain.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Contain.js +71 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Contain.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_EndWith.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_EndWith.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_EndWith.js +71 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_EndWith.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_Equal.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Equal.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Equal.js +115 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Equal.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_GreaterThan.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThan.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThan.js +83 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThan.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_GreaterThanEqual.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js +83 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_In.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_In.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_In.js +103 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_In.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_IsEmpty.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_IsEmpty.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_IsEmpty.js +65 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_IsEmpty.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_LessThan.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThan.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThan.js +83 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThan.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_LessThanEqual.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThanEqual.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js +83 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js.map +1 -0
- package/lib/stores/{filter → query-builder/filter}/operators/QueryBuilderFilterOperator_StartWith.d.ts +0 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_StartWith.d.ts.map +1 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_StartWith.js +71 -0
- package/lib/stores/query-builder/filter/operators/QueryBuilderFilterOperator_StartWith.js.map +1 -0
- package/lib/stores/query-builder/workflows/ClassQueryBuilderState.d.ts +35 -0
- package/lib/stores/query-builder/workflows/ClassQueryBuilderState.d.ts.map +1 -0
- package/lib/stores/query-builder/workflows/ClassQueryBuilderState.js +57 -0
- package/lib/stores/query-builder/workflows/ClassQueryBuilderState.js.map +1 -0
- package/lib/stores/query-builder/workflows/MappingQueryBuilderState.d.ts +33 -0
- package/lib/stores/query-builder/workflows/MappingQueryBuilderState.d.ts.map +1 -0
- package/lib/stores/query-builder/workflows/MappingQueryBuilderState.js +55 -0
- package/lib/stores/query-builder/workflows/MappingQueryBuilderState.js.map +1 -0
- package/lib/stores/query-builder/workflows/ServiceQueryBuilderState.d.ts +44 -0
- package/lib/stores/query-builder/workflows/ServiceQueryBuilderState.d.ts.map +1 -0
- package/lib/stores/query-builder/workflows/ServiceQueryBuilderState.js +90 -0
- package/lib/stores/query-builder/workflows/ServiceQueryBuilderState.js.map +1 -0
- package/package.json +15 -15
- package/src/components/LegendQueryApplication.tsx +7 -7
- package/src/components/QueryEditor.tsx +100 -97
- package/src/components/QueryEditorComponentTestUtils.tsx +28 -19
- package/src/components/QueryEditorStoreProvider.tsx +7 -9
- package/src/components/QuerySetup.tsx +25 -25
- package/src/components/query-builder/QueryBuilder.tsx +411 -0
- package/src/components/query-builder/QueryBuilderParametersPanel.tsx +431 -0
- package/src/components/query-builder/QueryBuilderPropertyExpressionEditor.tsx +376 -0
- package/src/components/query-builder/QueryBuilderResultPanel.tsx +640 -0
- package/src/components/query-builder/QueryBuilderSideBar.tsx +421 -0
- package/src/components/query-builder/QueryBuilderTextEditor.tsx +127 -0
- package/src/components/query-builder/QueryBuilderUnsupportedQueryEditor.tsx +88 -0
- package/src/components/{QueryBuilder_TestID.ts → query-builder/QueryBuilder_TestID.ts} +0 -0
- package/src/components/query-builder/explorer/QueryBuilderExplorerPanel.tsx +934 -0
- package/src/components/query-builder/explorer/QueryBuilderFunctionsExplorerPanel.tsx +554 -0
- package/src/components/query-builder/explorer/QueryBuilderMilestoneEditor.tsx +296 -0
- package/src/components/query-builder/explorer/QueryBuilderPropertySearchPanel.tsx +617 -0
- package/src/components/query-builder/fetch-structure/QueryBuilderFetchStructurePanel.tsx +112 -0
- package/src/components/query-builder/fetch-structure/QueryBuilderGraphFetchTreePanel.tsx +276 -0
- package/src/components/query-builder/fetch-structure/QueryBuilderPostFilterPanel.tsx +1103 -0
- package/src/components/query-builder/fetch-structure/QueryBuilderProjectionPanel.tsx +649 -0
- package/src/components/query-builder/fetch-structure/QueryBuilderResultModifierPanel.tsx +254 -0
- package/src/components/query-builder/filter/QueryBuilderFilterPanel.tsx +891 -0
- package/src/components/{shared → query-builder/shared}/ElementIconUtils.tsx +0 -0
- package/src/components/query-builder/shared/QueryBuilderLambdaEditor.tsx +120 -0
- package/src/components/query-builder/shared/QueryBuilderPanelIssueCountBadge.tsx +40 -0
- package/src/components/{shared → query-builder/shared}/QueryBuilderPropertyInfoTooltip.tsx +0 -0
- package/src/components/query-builder/workflows/ClassQueryBuilder.tsx +198 -0
- package/src/components/query-builder/workflows/MappingQueryBuilder.tsx +195 -0
- package/src/components/query-builder/workflows/ServiceQueryBuilder.tsx +192 -0
- package/src/graphManager/QueryBuilderSupportedFunctions.ts +67 -0
- package/src/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.ts +6 -9
- package/src/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.ts +4 -6
- package/src/index.ts +14 -7
- package/src/stores/LegendQueryApplicationPlugin.ts +12 -0
- package/src/stores/LegendQueryRouter.ts +11 -16
- package/src/stores/QueryEditorStore.ts +133 -107
- package/src/stores/QuerySetupStore.ts +3 -3
- package/src/stores/query-builder/QueryBuilderChangeDetectionState.ts +37 -0
- package/src/stores/query-builder/QueryBuilderConfig.ts +34 -0
- package/src/stores/query-builder/QueryBuilderGroupOperationHelper.ts +54 -0
- package/src/stores/query-builder/QueryBuilderMilestoningState.ts +164 -0
- package/src/stores/query-builder/QueryBuilderParametersState.ts +52 -0
- package/src/stores/query-builder/QueryBuilderPreviewDataHelper.ts +202 -0
- package/src/stores/query-builder/QueryBuilderPropertyEditorState.ts +668 -0
- package/src/stores/query-builder/QueryBuilderResultState.ts +281 -0
- package/src/stores/query-builder/QueryBuilderState.ts +470 -0
- package/src/stores/query-builder/QueryBuilderStateBuilder.ts +585 -0
- package/src/stores/query-builder/QueryBuilderStateTestUtils.ts +91 -0
- package/src/stores/query-builder/QueryBuilderTextEditorState.ts +203 -0
- package/src/stores/query-builder/QueryBuilderTypeaheadHelper.ts +152 -0
- package/src/stores/query-builder/QueryBuilderUnsupportedQueryState.ts +44 -0
- package/src/stores/query-builder/QueryBuilderValueSpecificationBuilder.ts +179 -0
- package/src/stores/query-builder/QueryBuilderValueSpecificationBuilderHelper.ts +256 -0
- package/src/stores/query-builder/QueryBuilderValueSpecificationHelper.ts +359 -0
- package/src/stores/query-builder/explorer/QueryBuilderExplorerState.ts +813 -0
- package/src/stores/query-builder/explorer/QueryBuilderPropertySearchState.ts +333 -0
- package/src/stores/query-builder/explorer/QueryFunctionsExplorerState.ts +375 -0
- package/src/stores/query-builder/fetch-structure/QueryBuilderFetchStructureImplementationState.ts +65 -0
- package/src/stores/query-builder/fetch-structure/QueryBuilderFetchStructureState.ts +107 -0
- package/src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.ts +240 -0
- package/src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.ts +131 -0
- package/src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.ts +282 -0
- package/src/stores/query-builder/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.ts +154 -0
- package/src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionColumnState.ts +327 -0
- package/src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionState.ts +569 -0
- package/src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionStateBuilder.ts +426 -0
- package/src/stores/query-builder/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.ts +416 -0
- package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/QueryResultSetModifierState.ts +0 -0
- package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperator.ts +0 -0
- package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/QueryBuilderAggregateOperatorLoader.ts +0 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationState.ts +145 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.ts +228 -0
- package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.ts +0 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.ts +98 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.ts +106 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.ts +96 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.ts +173 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.ts +155 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.ts +174 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.ts +174 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.ts +98 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.ts +98 -0
- package/src/stores/query-builder/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.ts +88 -0
- package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperator.ts +0 -0
- package/src/stores/{fetch-structure → query-builder/fetch-structure}/projection/post-filter/QueryBuilderPostFilterOperatorLoader.ts +0 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.ts +807 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.ts +297 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.ts +121 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.ts +129 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.ts +140 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.ts +135 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.ts +218 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.ts +143 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.ts +70 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.ts +183 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.ts +113 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.ts +143 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.ts +70 -0
- package/src/stores/query-builder/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.ts +135 -0
- package/src/stores/{filter → query-builder/filter}/QueryBuilderFilterOperator.ts +0 -0
- package/src/stores/{filter → query-builder/filter}/QueryBuilderFilterOperatorLoader.ts +0 -0
- package/src/stores/query-builder/filter/QueryBuilderFilterState.ts +736 -0
- package/src/stores/query-builder/filter/QueryBuilderFilterStateBuilder.ts +155 -0
- package/src/stores/query-builder/filter/QueryBuilderFilterValueSpecificationBuilder.ts +120 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperatorHelper.ts +524 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Contain.ts +134 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_EndWith.ts +134 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_Equal.ts +211 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThan.ts +145 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.ts +145 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_In.ts +181 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_IsEmpty.ts +125 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThan.ts +145 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_LessThanEqual.ts +145 -0
- package/src/stores/query-builder/filter/operators/QueryBuilderFilterOperator_StartWith.ts +134 -0
- package/src/stores/query-builder/workflows/ClassQueryBuilderState.ts +80 -0
- package/src/stores/query-builder/workflows/MappingQueryBuilderState.ts +86 -0
- package/src/stores/query-builder/workflows/ServiceQueryBuilderState.ts +143 -0
- package/tsconfig.json +107 -94
- package/lib/QueryBuilder_Const.d.ts +0 -77
- package/lib/QueryBuilder_Const.d.ts.map +0 -1
- package/lib/QueryBuilder_Const.js +0 -85
- package/lib/QueryBuilder_Const.js.map +0 -1
- package/lib/components/QueryBuilder.d.ts +0 -23
- package/lib/components/QueryBuilder.d.ts.map +0 -1
- package/lib/components/QueryBuilder.js +0 -100
- package/lib/components/QueryBuilder.js.map +0 -1
- package/lib/components/QueryBuilderParameterPanel.d.ts +0 -30
- package/lib/components/QueryBuilderParameterPanel.d.ts.map +0 -1
- package/lib/components/QueryBuilderParameterPanel.js +0 -128
- package/lib/components/QueryBuilderParameterPanel.js.map +0 -1
- package/lib/components/QueryBuilderPropertyExpressionEditor.d.ts +0 -30
- package/lib/components/QueryBuilderPropertyExpressionEditor.d.ts.map +0 -1
- package/lib/components/QueryBuilderPropertyExpressionEditor.js +0 -116
- package/lib/components/QueryBuilderPropertyExpressionEditor.js.map +0 -1
- package/lib/components/QueryBuilderResultPanel.d.ts +0 -23
- package/lib/components/QueryBuilderResultPanel.d.ts.map +0 -1
- package/lib/components/QueryBuilderResultPanel.js +0 -237
- package/lib/components/QueryBuilderResultPanel.js.map +0 -1
- package/lib/components/QueryBuilderSetupPanel.d.ts +0 -23
- package/lib/components/QueryBuilderSetupPanel.d.ts.map +0 -1
- package/lib/components/QueryBuilderSetupPanel.js +0 -149
- package/lib/components/QueryBuilderSetupPanel.js.map +0 -1
- package/lib/components/QueryBuilderTextEditor.d.ts +0 -23
- package/lib/components/QueryBuilderTextEditor.d.ts.map +0 -1
- package/lib/components/QueryBuilderTextEditor.js +0 -48
- package/lib/components/QueryBuilderTextEditor.js.map +0 -1
- package/lib/components/QueryBuilderUnsupportedQueryEditor.d.ts +0 -23
- package/lib/components/QueryBuilderUnsupportedQueryEditor.d.ts.map +0 -1
- package/lib/components/QueryBuilderUnsupportedQueryEditor.js +0 -37
- package/lib/components/QueryBuilderUnsupportedQueryEditor.js.map +0 -1
- package/lib/components/QueryBuilder_TestID.d.ts.map +0 -1
- package/lib/components/QueryBuilder_TestID.js.map +0 -1
- package/lib/components/explorer/QueryBuilderExplorerPanel.d.ts +0 -37
- package/lib/components/explorer/QueryBuilderExplorerPanel.d.ts.map +0 -1
- package/lib/components/explorer/QueryBuilderExplorerPanel.js +0 -337
- package/lib/components/explorer/QueryBuilderExplorerPanel.js.map +0 -1
- package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.d.ts +0 -23
- package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.d.ts.map +0 -1
- package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.js +0 -147
- package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.js.map +0 -1
- package/lib/components/explorer/QueryBuilderMilestoneEditor.d.ts +0 -24
- package/lib/components/explorer/QueryBuilderMilestoneEditor.d.ts.map +0 -1
- package/lib/components/explorer/QueryBuilderMilestoneEditor.js +0 -120
- package/lib/components/explorer/QueryBuilderMilestoneEditor.js.map +0 -1
- package/lib/components/explorer/QueryBuilderPropertySearchPanel.d.ts +0 -24
- package/lib/components/explorer/QueryBuilderPropertySearchPanel.d.ts.map +0 -1
- package/lib/components/explorer/QueryBuilderPropertySearchPanel.js +0 -200
- package/lib/components/explorer/QueryBuilderPropertySearchPanel.js.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.d.ts +0 -23
- package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.d.ts.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.js +0 -135
- package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.js.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts +0 -33
- package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.js +0 -96
- package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.js.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.d.ts +0 -31
- package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.d.ts.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.js +0 -372
- package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.js.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderProjectionPanel.d.ts +0 -23
- package/lib/components/fetch-structure/QueryBuilderProjectionPanel.d.ts.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderProjectionPanel.js +0 -213
- package/lib/components/fetch-structure/QueryBuilderProjectionPanel.js.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.d.ts +0 -23
- package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.d.ts.map +0 -1
- package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.js +0 -93
- package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.js.map +0 -1
- package/lib/components/filter/QueryBuilderFilterPanel.d.ts +0 -23
- package/lib/components/filter/QueryBuilderFilterPanel.d.ts.map +0 -1
- package/lib/components/filter/QueryBuilderFilterPanel.js +0 -316
- package/lib/components/filter/QueryBuilderFilterPanel.js.map +0 -1
- package/lib/components/shared/ElementIconUtils.d.ts.map +0 -1
- package/lib/components/shared/ElementIconUtils.js.map +0 -1
- package/lib/components/shared/QueryBuilderLambdaEditor.d.ts +0 -43
- package/lib/components/shared/QueryBuilderLambdaEditor.d.ts.map +0 -1
- package/lib/components/shared/QueryBuilderLambdaEditor.js.map +0 -1
- package/lib/components/shared/QueryBuilderPanelIssueCountBadge.d.ts.map +0 -1
- package/lib/components/shared/QueryBuilderPanelIssueCountBadge.js +0 -28
- package/lib/components/shared/QueryBuilderPanelIssueCountBadge.js.map +0 -1
- package/lib/components/shared/QueryBuilderPropertyInfoTooltip.d.ts.map +0 -1
- package/lib/components/shared/QueryBuilderPropertyInfoTooltip.js.map +0 -1
- package/lib/stores/QueryBuilderGroupOperationHelper.d.ts.map +0 -1
- package/lib/stores/QueryBuilderGroupOperationHelper.js +0 -43
- package/lib/stores/QueryBuilderGroupOperationHelper.js.map +0 -1
- package/lib/stores/QueryBuilderPreviewDataHelper.d.ts.map +0 -1
- package/lib/stores/QueryBuilderPreviewDataHelper.js +0 -140
- package/lib/stores/QueryBuilderPreviewDataHelper.js.map +0 -1
- package/lib/stores/QueryBuilderPropertyEditorState.d.ts.map +0 -1
- package/lib/stores/QueryBuilderPropertyEditorState.js +0 -385
- package/lib/stores/QueryBuilderPropertyEditorState.js.map +0 -1
- package/lib/stores/QueryBuilderResultState.d.ts.map +0 -1
- package/lib/stores/QueryBuilderResultState.js +0 -176
- package/lib/stores/QueryBuilderResultState.js.map +0 -1
- package/lib/stores/QueryBuilderSetupState.d.ts +0 -46
- package/lib/stores/QueryBuilderSetupState.d.ts.map +0 -1
- package/lib/stores/QueryBuilderSetupState.js +0 -163
- package/lib/stores/QueryBuilderSetupState.js.map +0 -1
- package/lib/stores/QueryBuilderState.d.ts +0 -101
- package/lib/stores/QueryBuilderState.d.ts.map +0 -1
- package/lib/stores/QueryBuilderState.js +0 -317
- package/lib/stores/QueryBuilderState.js.map +0 -1
- package/lib/stores/QueryBuilderTestUtils.d.ts +0 -24
- package/lib/stores/QueryBuilderTestUtils.d.ts.map +0 -1
- package/lib/stores/QueryBuilderTestUtils.js +0 -50
- package/lib/stores/QueryBuilderTestUtils.js.map +0 -1
- package/lib/stores/QueryBuilderTypeaheadHelper.d.ts.map +0 -1
- package/lib/stores/QueryBuilderTypeaheadHelper.js +0 -84
- package/lib/stores/QueryBuilderTypeaheadHelper.js.map +0 -1
- package/lib/stores/QueryBuilderUnsupportedState.d.ts +0 -26
- package/lib/stores/QueryBuilderUnsupportedState.d.ts.map +0 -1
- package/lib/stores/QueryBuilderUnsupportedState.js +0 -36
- package/lib/stores/QueryBuilderUnsupportedState.js.map +0 -1
- package/lib/stores/QueryBuilderValueSpecificationBuilder.d.ts +0 -28
- package/lib/stores/QueryBuilderValueSpecificationBuilder.d.ts.map +0 -1
- package/lib/stores/QueryBuilderValueSpecificationBuilder.js +0 -396
- package/lib/stores/QueryBuilderValueSpecificationBuilder.js.map +0 -1
- package/lib/stores/QueryBuilderValueSpecificationHelper.d.ts +0 -25
- package/lib/stores/QueryBuilderValueSpecificationHelper.d.ts.map +0 -1
- package/lib/stores/QueryBuilderValueSpecificationHelper.js +0 -158
- package/lib/stores/QueryBuilderValueSpecificationHelper.js.map +0 -1
- package/lib/stores/QueryBuilderValueSpecificationProcessor.d.ts +0 -56
- package/lib/stores/QueryBuilderValueSpecificationProcessor.d.ts.map +0 -1
- package/lib/stores/QueryBuilderValueSpecificationProcessor.js +0 -548
- package/lib/stores/QueryBuilderValueSpecificationProcessor.js.map +0 -1
- package/lib/stores/QueryParametersState.d.ts +0 -28
- package/lib/stores/QueryParametersState.d.ts.map +0 -1
- package/lib/stores/QueryParametersState.js +0 -39
- package/lib/stores/QueryParametersState.js.map +0 -1
- package/lib/stores/QueryTextEditorState.d.ts +0 -49
- package/lib/stores/QueryTextEditorState.d.ts.map +0 -1
- package/lib/stores/QueryTextEditorState.js +0 -145
- package/lib/stores/QueryTextEditorState.js.map +0 -1
- package/lib/stores/explorer/QueryBuilderExplorerState.d.ts +0 -98
- package/lib/stores/explorer/QueryBuilderExplorerState.d.ts.map +0 -1
- package/lib/stores/explorer/QueryBuilderExplorerState.js +0 -409
- package/lib/stores/explorer/QueryBuilderExplorerState.js.map +0 -1
- package/lib/stores/explorer/QueryBuilderPropertySearchPanelState.d.ts +0 -46
- package/lib/stores/explorer/QueryBuilderPropertySearchPanelState.d.ts.map +0 -1
- package/lib/stores/explorer/QueryBuilderPropertySearchPanelState.js +0 -240
- package/lib/stores/explorer/QueryBuilderPropertySearchPanelState.js.map +0 -1
- package/lib/stores/explorer/QueryFunctionsExplorerState.d.ts.map +0 -1
- package/lib/stores/explorer/QueryFunctionsExplorerState.js +0 -229
- package/lib/stores/explorer/QueryFunctionsExplorerState.js.map +0 -1
- package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.d.ts +0 -23
- package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.d.ts.map +0 -1
- package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.js +0 -24
- package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.js.map +0 -1
- package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.d.ts +0 -44
- package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.d.ts.map +0 -1
- package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.js +0 -116
- package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.js.map +0 -1
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.d.ts +0 -36
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.d.ts.map +0 -1
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js +0 -68
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js.map +0 -1
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.d.ts +0 -41
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.d.ts.map +0 -1
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.js +0 -178
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.js.map +0 -1
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.d.ts +0 -19
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.d.ts.map +0 -1
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js +0 -49
- package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js.map +0 -1
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.js +0 -187
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.js.map +0 -1
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.d.ts +0 -60
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.js +0 -241
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.js.map +0 -1
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.d.ts +0 -21
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js +0 -73
- package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js.map +0 -1
- package/lib/stores/fetch-structure/projection/QueryResultSetModifierState.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/QueryResultSetModifierState.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js +0 -103
- package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js +0 -50
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js +0 -55
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js +0 -50
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js +0 -78
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js +0 -67
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js +0 -86
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js +0 -86
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js +0 -50
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js +0 -50
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js +0 -45
- package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js +0 -586
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js +0 -82
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationProcessor.d.ts +0 -21
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationProcessor.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationProcessor.js +0 -113
- package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationProcessor.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js +0 -74
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js +0 -75
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js +0 -75
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js +0 -118
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js +0 -81
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js +0 -43
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js +0 -104
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.js +0 -67
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js +0 -81
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js +0 -43
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.d.ts.map +0 -1
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js +0 -75
- package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js.map +0 -1
- package/lib/stores/filter/QueryBuilderFilterOperator.d.ts.map +0 -1
- package/lib/stores/filter/QueryBuilderFilterOperator.js.map +0 -1
- package/lib/stores/filter/QueryBuilderFilterOperatorLoader.d.ts.map +0 -1
- package/lib/stores/filter/QueryBuilderFilterOperatorLoader.js.map +0 -1
- package/lib/stores/filter/QueryBuilderFilterState.d.ts.map +0 -1
- package/lib/stores/filter/QueryBuilderFilterState.js +0 -531
- package/lib/stores/filter/QueryBuilderFilterState.js.map +0 -1
- package/lib/stores/filter/QueryBuilderValueSpecificationBuilder.d.ts +0 -19
- package/lib/stores/filter/QueryBuilderValueSpecificationBuilder.d.ts.map +0 -1
- package/lib/stores/filter/QueryBuilderValueSpecificationBuilder.js +0 -78
- package/lib/stores/filter/QueryBuilderValueSpecificationBuilder.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.js +0 -257
- package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.js +0 -71
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.js +0 -71
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.js +0 -115
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.js +0 -83
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js +0 -83
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.js +0 -103
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.js +0 -65
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.js +0 -83
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js +0 -83
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.d.ts.map +0 -1
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.js +0 -71
- package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.js.map +0 -1
- package/src/QueryBuilder_Const.ts +0 -88
- package/src/components/QueryBuilder.tsx +0 -393
- package/src/components/QueryBuilderParameterPanel.tsx +0 -403
- package/src/components/QueryBuilderPropertyExpressionEditor.tsx +0 -374
- package/src/components/QueryBuilderResultPanel.tsx +0 -633
- package/src/components/QueryBuilderSetupPanel.tsx +0 -342
- package/src/components/QueryBuilderTextEditor.tsx +0 -127
- package/src/components/QueryBuilderUnsupportedQueryEditor.tsx +0 -112
- package/src/components/explorer/QueryBuilderExplorerPanel.tsx +0 -942
- package/src/components/explorer/QueryBuilderFunctionsExplorerPanel.tsx +0 -554
- package/src/components/explorer/QueryBuilderMilestoneEditor.tsx +0 -291
- package/src/components/explorer/QueryBuilderPropertySearchPanel.tsx +0 -617
- package/src/components/fetch-structure/QueryBuilderFetchStructurePanel.tsx +0 -246
- package/src/components/fetch-structure/QueryBuilderGraphFetchTreePanel.tsx +0 -279
- package/src/components/fetch-structure/QueryBuilderPostFilterPanel.tsx +0 -1069
- package/src/components/fetch-structure/QueryBuilderProjectionPanel.tsx +0 -623
- package/src/components/fetch-structure/QueryBuilderResultModifierPanel.tsx +0 -262
- package/src/components/filter/QueryBuilderFilterPanel.tsx +0 -890
- package/src/components/shared/QueryBuilderLambdaEditor.tsx +0 -120
- package/src/components/shared/QueryBuilderPanelIssueCountBadge.tsx +0 -38
- package/src/stores/QueryBuilderGroupOperationHelper.ts +0 -54
- package/src/stores/QueryBuilderPreviewDataHelper.ts +0 -201
- package/src/stores/QueryBuilderPropertyEditorState.ts +0 -659
- package/src/stores/QueryBuilderResultState.ts +0 -281
- package/src/stores/QueryBuilderSetupState.ts +0 -236
- package/src/stores/QueryBuilderState.ts +0 -471
- package/src/stores/QueryBuilderTestUtils.ts +0 -96
- package/src/stores/QueryBuilderTypeaheadHelper.ts +0 -148
- package/src/stores/QueryBuilderUnsupportedState.ts +0 -42
- package/src/stores/QueryBuilderValueSpecificationBuilder.ts +0 -739
- package/src/stores/QueryBuilderValueSpecificationHelper.ts +0 -245
- package/src/stores/QueryBuilderValueSpecificationProcessor.ts +0 -1254
- package/src/stores/QueryParametersState.ts +0 -52
- package/src/stores/QueryTextEditorState.ts +0 -203
- package/src/stores/explorer/QueryBuilderExplorerState.ts +0 -770
- package/src/stores/explorer/QueryBuilderPropertySearchPanelState.ts +0 -331
- package/src/stores/explorer/QueryFunctionsExplorerState.ts +0 -376
- package/src/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.ts +0 -34
- package/src/stores/fetch-structure/QueryBuilderFetchStructureState.ts +0 -173
- package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.ts +0 -100
- package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.ts +0 -291
- package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.ts +0 -90
- package/src/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.ts +0 -329
- package/src/stores/fetch-structure/projection/QueryBuilderProjectionState.ts +0 -464
- package/src/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.ts +0 -170
- package/src/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.ts +0 -145
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.ts +0 -98
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.ts +0 -106
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.ts +0 -96
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.ts +0 -173
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.ts +0 -155
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.ts +0 -174
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.ts +0 -174
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.ts +0 -98
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.ts +0 -98
- package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.ts +0 -88
- package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.ts +0 -808
- package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.ts +0 -131
- package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationProcessor.ts +0 -277
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.ts +0 -129
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.ts +0 -140
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.ts +0 -135
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.ts +0 -218
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.ts +0 -143
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.ts +0 -70
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.ts +0 -183
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.ts +0 -113
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.ts +0 -143
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.ts +0 -70
- package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.ts +0 -135
- package/src/stores/filter/QueryBuilderFilterState.ts +0 -738
- package/src/stores/filter/QueryBuilderValueSpecificationBuilder.ts +0 -120
- package/src/stores/filter/operators/QueryBuilderFilterOperatorHelper.ts +0 -524
- package/src/stores/filter/operators/QueryBuilderFilterOperator_Contain.ts +0 -134
- package/src/stores/filter/operators/QueryBuilderFilterOperator_EndWith.ts +0 -134
- package/src/stores/filter/operators/QueryBuilderFilterOperator_Equal.ts +0 -211
- package/src/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.ts +0 -145
- package/src/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.ts +0 -145
- package/src/stores/filter/operators/QueryBuilderFilterOperator_In.ts +0 -181
- package/src/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.ts +0 -125
- package/src/stores/filter/operators/QueryBuilderFilterOperator_LessThan.ts +0 -145
- package/src/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.ts +0 -145
- package/src/stores/filter/operators/QueryBuilderFilterOperator_StartWith.ts +0 -134
@@ -1,56 +0,0 @@
|
|
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 type { QueryBuilderState } from './QueryBuilderState.js';
|
17
|
-
import { type AlloySerializationConfigInstanceValue, type EnumValueInstanceValue, type FunctionExpression, type MappingInstanceValue, type PairInstanceValue, type PropertyGraphFetchTreeInstanceValue, type PureListInstanceValue, type RootGraphFetchTreeInstanceValue, type RuntimeInstanceValue, type ValueSpecificationVisitor, type InstanceValue, type INTERNAL__UnknownValueSpecification, type LambdaFunction, CollectionInstanceValue, LambdaFunctionInstanceValue, PrimitiveInstanceValue, SimpleFunctionExpression, VariableExpression, AbstractPropertyExpression, type INTERNAL__PropagatedValue } from '@finos/legend-graph';
|
18
|
-
/**
|
19
|
-
* This is the expression processor for query builder.
|
20
|
-
* Unlike expression builder which takes care of transforming the value specification
|
21
|
-
* from `protocol` to `metamodel`, and type-inferencing, this takes care
|
22
|
-
* of traversing the expression to populate the query builder UI state.
|
23
|
-
*
|
24
|
-
* NOTE: While traversing the expression, this processor also does a fair amount of
|
25
|
-
* validations and assertsions but just so enough to populate the UI state.
|
26
|
-
*
|
27
|
-
* Validation and assertion should be done by both the builder and processor, but the builder
|
28
|
-
* will do more structural checks to build the proper metamodel. The processor should never
|
29
|
-
* modify the metamodel, just traversing it.
|
30
|
-
*/
|
31
|
-
export declare class QueryBuilderLambdaProcessor implements ValueSpecificationVisitor<void> {
|
32
|
-
queryBuilderState: QueryBuilderState;
|
33
|
-
precedingExpression?: SimpleFunctionExpression | undefined;
|
34
|
-
constructor(queryBuilderState: QueryBuilderState, precedingExpression: SimpleFunctionExpression | undefined);
|
35
|
-
visit_INTERNAL__UnknownValueSpecification(valueSpecification: INTERNAL__UnknownValueSpecification): void;
|
36
|
-
visit_RootGraphFetchTreeInstanceValue(valueSpecification: RootGraphFetchTreeInstanceValue): void;
|
37
|
-
visit_PropertyGraphFetchTreeInstanceValue(valueSpecification: PropertyGraphFetchTreeInstanceValue): void;
|
38
|
-
visit_AlloySerializationConfigInstanceValue(valueSpecification: AlloySerializationConfigInstanceValue): void;
|
39
|
-
visit_PrimitiveInstanceValue(valueSpecification: PrimitiveInstanceValue): void;
|
40
|
-
visit_EnumValueInstanceValue(valueSpecification: EnumValueInstanceValue): void;
|
41
|
-
visit_RuntimeInstanceValue(valueSpecification: RuntimeInstanceValue): void;
|
42
|
-
visit_PairInstanceValue(valueSpecification: PairInstanceValue): void;
|
43
|
-
visit_MappingInstanceValue(valueSpecification: MappingInstanceValue): void;
|
44
|
-
visit_PureListInstanceValue(valueSpecification: PureListInstanceValue): void;
|
45
|
-
visit_CollectionInstanceValue(valueSpecification: CollectionInstanceValue): void;
|
46
|
-
visit_FunctionExpression(valueSpecification: FunctionExpression): void;
|
47
|
-
visit_INTERNAL__PropagatedValue(valueSpecification: INTERNAL__PropagatedValue): void;
|
48
|
-
visit_SimpleFunctionExpression(valueSpecification: SimpleFunctionExpression): void;
|
49
|
-
visit_VariableExpression(valueSpecification: VariableExpression): void;
|
50
|
-
visit_LambdaFunctionInstanceValue(valueSpecification: LambdaFunctionInstanceValue): void;
|
51
|
-
visit_AbstractPropertyExpression(valueSpecification: AbstractPropertyExpression): void;
|
52
|
-
visit_InstanceValue(valueSpecification: InstanceValue): void;
|
53
|
-
}
|
54
|
-
export declare const processQueryParameters: (parameters: VariableExpression[], queryBuilderState: QueryBuilderState) => void;
|
55
|
-
export declare const processQueryBuilderLambdaFunction: (queryBuilderState: QueryBuilderState, lambdaFunc: LambdaFunction) => void;
|
56
|
-
//# sourceMappingURL=QueryBuilderValueSpecificationProcessor.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"QueryBuilderValueSpecificationProcessor.d.ts","sourceRoot":"","sources":["../../src/stores/QueryBuilderValueSpecificationProcessor.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAeH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAWhE,OAAO,EACL,KAAK,qCAAqC,EAC1C,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,mCAAmC,EACxC,KAAK,qBAAqB,EAC1B,KAAK,+BAA+B,EACpC,KAAK,oBAAoB,EAEzB,KAAK,yBAAyB,EAC9B,KAAK,aAAa,EAClB,KAAK,mCAAmC,EACxC,KAAK,cAAc,EAMnB,uBAAuB,EAEvB,2BAA2B,EAC3B,sBAAsB,EAEtB,wBAAwB,EACxB,kBAAkB,EAClB,0BAA0B,EAI1B,KAAK,yBAAyB,EAE/B,MAAM,qBAAqB,CAAC;AAmR7B;;;;;;;;;;;;GAYG;AACH,qBAAa,2BACX,YAAW,yBAAyB,CAAC,IAAI,CAAC;IAE1C,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,mBAAmB,CAAC,EAAE,wBAAwB,GAAG,SAAS,CAAC;gBAGzD,iBAAiB,EAAE,iBAAiB,EACpC,mBAAmB,EAAE,wBAAwB,GAAG,SAAS;IAM3D,yCAAyC,CACvC,kBAAkB,EAAE,mCAAmC,GACtD,IAAI;IAwCP,qCAAqC,CACnC,kBAAkB,EAAE,+BAA+B,GAClD,IAAI;IAIP,yCAAyC,CACvC,kBAAkB,EAAE,mCAAmC,GACtD,IAAI;IAIP,2CAA2C,CACzC,kBAAkB,EAAE,qCAAqC,GACxD,IAAI;IAIP,4BAA4B,CAC1B,kBAAkB,EAAE,sBAAsB,GACzC,IAAI;IAIP,4BAA4B,CAC1B,kBAAkB,EAAE,sBAAsB,GACzC,IAAI;IAIP,0BAA0B,CAAC,kBAAkB,EAAE,oBAAoB,GAAG,IAAI;IAI1E,uBAAuB,CAAC,kBAAkB,EAAE,iBAAiB,GAAG,IAAI;IAIpE,0BAA0B,CAAC,kBAAkB,EAAE,oBAAoB,GAAG,IAAI;IAI1E,2BAA2B,CAAC,kBAAkB,EAAE,qBAAqB,GAAG,IAAI;IAI5E,6BAA6B,CAC3B,kBAAkB,EAAE,uBAAuB,GAC1C,IAAI;IAIP,wBAAwB,CAAC,kBAAkB,EAAE,kBAAkB,GAAG,IAAI;IAItE,+BAA+B,CAC7B,kBAAkB,EAAE,yBAAyB,GAC5C,IAAI;IAIP,8BAA8B,CAC5B,kBAAkB,EAAE,wBAAwB,GAC3C,IAAI;IA2nBP,wBAAwB,CAAC,kBAAkB,EAAE,kBAAkB,GAAG,IAAI;IAItE,iCAAiC,CAC/B,kBAAkB,EAAE,2BAA2B,GAC9C,IAAI;IAaP,gCAAgC,CAC9B,kBAAkB,EAAE,0BAA0B,GAC7C,IAAI;IAgFP,mBAAmB,CAAC,kBAAkB,EAAE,aAAa,GAAG,IAAI;CAG7D;AAED,eAAO,MAAM,sBAAsB,eACrB,kBAAkB,EAAE,qBACb,iBAAiB,KACnC,IAWF,CAAC;AAEF,eAAO,MAAM,iCAAiC,sBACzB,iBAAiB,cACxB,cAAc,KACzB,IAYF,CAAC"}
|
@@ -1,548 +0,0 @@
|
|
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 { assertNonNullable, assertTrue, assertType, guaranteeNonNullable, guaranteeType, isNonNullable, isNumber, isString, returnUndefOnError, UnsupportedOperationError, } from '@finos/legend-shared';
|
17
|
-
import { COLUMN_SORT_TYPE, SortColumnState, } from './fetch-structure/projection/QueryResultSetModifierState.js';
|
18
|
-
import { QueryBuilderFilterTreeGroupNodeData, QueryBuilderFilterTreeConditionNodeData, } from './filter/QueryBuilderFilterState.js';
|
19
|
-
import { FETCH_STRUCTURE_MODE } from './fetch-structure/QueryBuilderFetchStructureState.js';
|
20
|
-
import { MILESTONING_STEREOTYPE, DerivedProperty, RawLambda, matchFunctionName, Class, CollectionInstanceValue, GraphFetchTreeInstanceValue, LambdaFunctionInstanceValue, PrimitiveInstanceValue, RootGraphFetchTree, SimpleFunctionExpression, VariableExpression, AbstractPropertyExpression, V1_deserializeRawValueSpecification, V1_RawLambda, getMilestoneTemporalStereotype, } from '@finos/legend-graph';
|
21
|
-
import { QueryBuilderDerivationProjectionColumnState, QueryBuilderSimpleProjectionColumnState, } from './fetch-structure/projection/QueryBuilderProjectionColumnState.js';
|
22
|
-
import { processPostFilterLambda } from './fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationProcessor.js';
|
23
|
-
import { getDerivedPropertyMilestoningSteoreotype } from './QueryBuilderPropertyEditorState.js';
|
24
|
-
import { QUERY_BUILDER_SUPPORTED_FUNCTIONS } from '../QueryBuilder_Const.js';
|
25
|
-
import { LambdaParameterState } from '@finos/legend-application';
|
26
|
-
import { toGroupOperation } from './QueryBuilderGroupOperationHelper.js';
|
27
|
-
const getNullableStringValueFromValueSpec = (valueSpec) => {
|
28
|
-
if (valueSpec instanceof PrimitiveInstanceValue &&
|
29
|
-
isString(valueSpec.values[0])) {
|
30
|
-
return valueSpec.values[0];
|
31
|
-
}
|
32
|
-
return undefined;
|
33
|
-
};
|
34
|
-
const getNullableNumberValueFromValueSpec = (valueSpec) => {
|
35
|
-
if (valueSpec instanceof PrimitiveInstanceValue &&
|
36
|
-
isNumber(valueSpec.values[0])) {
|
37
|
-
return valueSpec.values[0];
|
38
|
-
}
|
39
|
-
return undefined;
|
40
|
-
};
|
41
|
-
/**
|
42
|
-
* Checks if the milestoning property expression is valid in terms of number of parameter values provided
|
43
|
-
* in relation to its milestoning type.
|
44
|
-
*
|
45
|
-
* NOTE: this takes date propgation into account. See the table below for all
|
46
|
-
* the combination:
|
47
|
-
*
|
48
|
-
* | [source] | | | | |
|
49
|
-
* ----------------------------------------------------------------------
|
50
|
-
* [target] | | NONE | PR_TMP | BI_TMP | BU_TMP |
|
51
|
-
* ----------------------------------------------------------------------
|
52
|
-
* | NONE | N.A. | PRD | PRD,BUD | BUD |
|
53
|
-
* ----------------------------------------------------------------------
|
54
|
-
* | PR_TMP | N.A. | X | PRD,BUD | BUD |
|
55
|
-
* ----------------------------------------------------------------------
|
56
|
-
* | BI_TMP | N.A. | X | X | X |
|
57
|
-
* ----------------------------------------------------------------------
|
58
|
-
* | BU_TMP | N.A. | PRD | PRD,BUD | X |
|
59
|
-
* ----------------------------------------------------------------------
|
60
|
-
*
|
61
|
-
* Annotations:
|
62
|
-
*
|
63
|
-
* [source]: source temporal type
|
64
|
-
* [target]: target temporal type
|
65
|
-
*
|
66
|
-
* PR_TMP : processing temporal
|
67
|
-
* BI_TMP : bitemporal
|
68
|
-
* BU_TMP : business temporal
|
69
|
-
*
|
70
|
-
* X : no default date propagated
|
71
|
-
* PRD : default processing date is propagated
|
72
|
-
* BUD : default business date is propgated
|
73
|
-
*/
|
74
|
-
const validatePropertyExpressionChain = (propertyExpression, graph) => {
|
75
|
-
if (propertyExpression.func.genericType.value.rawType instanceof Class &&
|
76
|
-
propertyExpression.func._OWNER._generatedMilestonedProperties.length !== 0) {
|
77
|
-
const name = propertyExpression.func.name;
|
78
|
-
const func = propertyExpression.func._OWNER._generatedMilestonedProperties.find((e) => e.name === name);
|
79
|
-
if (func) {
|
80
|
-
const targetStereotype = getMilestoneTemporalStereotype(propertyExpression.func.genericType.value.rawType, graph);
|
81
|
-
if (targetStereotype) {
|
82
|
-
const sourceStereotype = getDerivedPropertyMilestoningSteoreotype(guaranteeType(func, DerivedProperty), graph);
|
83
|
-
if (sourceStereotype !== MILESTONING_STEREOTYPE.BITEMPORAL &&
|
84
|
-
targetStereotype !== sourceStereotype) {
|
85
|
-
if (targetStereotype === MILESTONING_STEREOTYPE.BITEMPORAL) {
|
86
|
-
if (propertyExpression.parametersValues.length !== 3 &&
|
87
|
-
!sourceStereotype) {
|
88
|
-
throw new UnsupportedOperationError(`Property of milestoning sterotype '${MILESTONING_STEREOTYPE.BITEMPORAL}' should have exactly two parameters`);
|
89
|
-
}
|
90
|
-
else if (propertyExpression.parametersValues.length < 2) {
|
91
|
-
throw new UnsupportedOperationError(`Property of milestoning sterotype '${MILESTONING_STEREOTYPE.BITEMPORAL}' should have at least one parameter`);
|
92
|
-
}
|
93
|
-
else if (propertyExpression.parametersValues.length > 3) {
|
94
|
-
throw new UnsupportedOperationError(`Property of milestoning sterotype '${MILESTONING_STEREOTYPE.BITEMPORAL}' should not have more than two parameters`);
|
95
|
-
}
|
96
|
-
}
|
97
|
-
else if (propertyExpression.parametersValues.length !== 2) {
|
98
|
-
throw new UnsupportedOperationError(`Property of milestoning sterotype '${targetStereotype}' should have exactly one parameter`);
|
99
|
-
}
|
100
|
-
}
|
101
|
-
}
|
102
|
-
}
|
103
|
-
}
|
104
|
-
};
|
105
|
-
const processFilterExpression = (expression, filterState, parentFilterNodeId) => {
|
106
|
-
const parentNode = parentFilterNodeId
|
107
|
-
? filterState.getNode(parentFilterNodeId)
|
108
|
-
: undefined;
|
109
|
-
if ([
|
110
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.AND,
|
111
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.OR,
|
112
|
-
].some((fn) => matchFunctionName(expression.functionName, fn))) {
|
113
|
-
const groupNode = new QueryBuilderFilterTreeGroupNodeData(parentFilterNodeId, toGroupOperation(expression.functionName));
|
114
|
-
filterState.nodes.set(groupNode.id, groupNode);
|
115
|
-
expression.parametersValues.forEach((filterExpression) => processFilterExpression(guaranteeType(filterExpression, SimpleFunctionExpression, `Can't process filter group expression: each child expression must be a function expression`), filterState, groupNode.id));
|
116
|
-
filterState.addNodeFromNode(groupNode, parentNode);
|
117
|
-
}
|
118
|
-
else {
|
119
|
-
const propertyExpression = expression.parametersValues[0];
|
120
|
-
if (propertyExpression instanceof AbstractPropertyExpression) {
|
121
|
-
const currentPropertyExpression = propertyExpression.parametersValues[0];
|
122
|
-
if (currentPropertyExpression instanceof AbstractPropertyExpression) {
|
123
|
-
validatePropertyExpressionChain(currentPropertyExpression, filterState.queryBuilderState.graphManagerState.graph);
|
124
|
-
}
|
125
|
-
}
|
126
|
-
for (const operator of filterState.operators) {
|
127
|
-
// NOTE: this allow plugin author to either return `undefined` or throw error
|
128
|
-
// if there is a problem with building the lambda. Either case, the plugin is
|
129
|
-
// considered as not supporting the lambda.
|
130
|
-
const filterConditionState = returnUndefOnError(() => operator.buildFilterConditionState(filterState, expression));
|
131
|
-
if (filterConditionState) {
|
132
|
-
filterState.addNodeFromNode(new QueryBuilderFilterTreeConditionNodeData(undefined, filterConditionState), parentNode);
|
133
|
-
return;
|
134
|
-
}
|
135
|
-
}
|
136
|
-
throw new UnsupportedOperationError(`Can't process filter() expression: no compatible filter operator processer available from plugins`);
|
137
|
-
}
|
138
|
-
};
|
139
|
-
const processFilterLambda = (filterLambda, filterState) => {
|
140
|
-
const lambdaFunc = guaranteeNonNullable(filterLambda.values[0], `Can't process filter() lambda: filter() lambda function is missing`);
|
141
|
-
assertTrue(lambdaFunc.expressionSequence.length === 1, `Can't process filter() lambda: only support filter() lambda body with 1 expression`);
|
142
|
-
const rootExpression = guaranteeType(lambdaFunc.expressionSequence[0], SimpleFunctionExpression, `Can't process filter() lambda: only support filter() lambda body with 1 expression`);
|
143
|
-
assertTrue(lambdaFunc.functionType.parameters.length === 1, `Can't process filter() lambda: only support filter() lambda with 1 parameter`);
|
144
|
-
filterState.setLambdaParameterName(guaranteeType(lambdaFunc.functionType.parameters[0], VariableExpression, `Can't process filter() lambda: only support filter() lambda with 1 parameter`).name);
|
145
|
-
processFilterExpression(rootExpression, filterState, undefined);
|
146
|
-
};
|
147
|
-
const processAggregateLambda = (aggregateLambda, projectionColumnState, aggregationState) => {
|
148
|
-
const lambdaFunc = guaranteeNonNullable(aggregateLambda.values[0], `Can't process agg() lambda: agg() lambda function is missing`);
|
149
|
-
assertTrue(lambdaFunc.expressionSequence.length === 1, `Can't process agg() lambda: only support agg() lambda body with 1 expression`);
|
150
|
-
const expression = guaranteeType(lambdaFunc.expressionSequence[0], SimpleFunctionExpression, `Can't process agg() lambda: only support agg() lambda body with 1 expression`);
|
151
|
-
assertTrue(lambdaFunc.functionType.parameters.length === 1, `Can't process agg() lambda: only support agg() lambda with 1 parameter`);
|
152
|
-
const lambdaParam = guaranteeType(lambdaFunc.functionType.parameters[0], VariableExpression, `Can't process agg() lambda: only support agg() lambda with 1 parameter`);
|
153
|
-
for (const operator of aggregationState.operators) {
|
154
|
-
// NOTE: this allow plugin author to either return `undefined` or throw error
|
155
|
-
// if there is a problem with building the lambda. Either case, the plugin is
|
156
|
-
// considered as not supporting the lambda.
|
157
|
-
const aggregateColumnState = returnUndefOnError(() => operator.buildAggregateColumnState(expression, lambdaParam, projectionColumnState));
|
158
|
-
if (aggregateColumnState) {
|
159
|
-
aggregationState.addColumn(aggregateColumnState);
|
160
|
-
return;
|
161
|
-
}
|
162
|
-
}
|
163
|
-
throw new UnsupportedOperationError(`Can't process aggregate expression function: no compatible aggregate operator processer available from plugins`);
|
164
|
-
};
|
165
|
-
/**
|
166
|
-
* This is the expression processor for query builder.
|
167
|
-
* Unlike expression builder which takes care of transforming the value specification
|
168
|
-
* from `protocol` to `metamodel`, and type-inferencing, this takes care
|
169
|
-
* of traversing the expression to populate the query builder UI state.
|
170
|
-
*
|
171
|
-
* NOTE: While traversing the expression, this processor also does a fair amount of
|
172
|
-
* validations and assertsions but just so enough to populate the UI state.
|
173
|
-
*
|
174
|
-
* Validation and assertion should be done by both the builder and processor, but the builder
|
175
|
-
* will do more structural checks to build the proper metamodel. The processor should never
|
176
|
-
* modify the metamodel, just traversing it.
|
177
|
-
*/
|
178
|
-
export class QueryBuilderLambdaProcessor {
|
179
|
-
queryBuilderState;
|
180
|
-
precedingExpression;
|
181
|
-
constructor(queryBuilderState, precedingExpression) {
|
182
|
-
this.queryBuilderState = queryBuilderState;
|
183
|
-
this.precedingExpression = precedingExpression;
|
184
|
-
}
|
185
|
-
visit_INTERNAL__UnknownValueSpecification(valueSpecification) {
|
186
|
-
assertNonNullable(this.precedingExpression, `Can't process unknown value: unknown value preceding expression cannot be retrieved`);
|
187
|
-
const precedingExpressionName = this.precedingExpression.functionName;
|
188
|
-
if ([
|
189
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_PROJECT,
|
190
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_GROUP_BY,
|
191
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_AGG,
|
192
|
-
].some((fn) => matchFunctionName(precedingExpressionName, fn))) {
|
193
|
-
const projectionState = this.queryBuilderState.fetchStructureState.projectionState;
|
194
|
-
const rawLambdaProtocol = returnUndefOnError(() => guaranteeType(V1_deserializeRawValueSpecification(valueSpecification.content), V1_RawLambda));
|
195
|
-
assertNonNullable(rawLambdaProtocol, `Can't process unknown value: only support ${precedingExpressionName}() column expression as a lambda`);
|
196
|
-
const columnState = new QueryBuilderDerivationProjectionColumnState(projectionState, new RawLambda(rawLambdaProtocol.parameters, rawLambdaProtocol.body));
|
197
|
-
projectionState.addColumn(columnState, { skipSorting: true });
|
198
|
-
return;
|
199
|
-
}
|
200
|
-
throw new UnsupportedOperationError(`Can't process unknown value with preceding expression of function ${this.precedingExpression.functionName}()`);
|
201
|
-
}
|
202
|
-
visit_RootGraphFetchTreeInstanceValue(valueSpecification) {
|
203
|
-
throw new UnsupportedOperationError();
|
204
|
-
}
|
205
|
-
visit_PropertyGraphFetchTreeInstanceValue(valueSpecification) {
|
206
|
-
throw new UnsupportedOperationError();
|
207
|
-
}
|
208
|
-
visit_AlloySerializationConfigInstanceValue(valueSpecification) {
|
209
|
-
throw new UnsupportedOperationError();
|
210
|
-
}
|
211
|
-
visit_PrimitiveInstanceValue(valueSpecification) {
|
212
|
-
throw new UnsupportedOperationError();
|
213
|
-
}
|
214
|
-
visit_EnumValueInstanceValue(valueSpecification) {
|
215
|
-
throw new UnsupportedOperationError();
|
216
|
-
}
|
217
|
-
visit_RuntimeInstanceValue(valueSpecification) {
|
218
|
-
throw new UnsupportedOperationError();
|
219
|
-
}
|
220
|
-
visit_PairInstanceValue(valueSpecification) {
|
221
|
-
throw new UnsupportedOperationError();
|
222
|
-
}
|
223
|
-
visit_MappingInstanceValue(valueSpecification) {
|
224
|
-
throw new UnsupportedOperationError();
|
225
|
-
}
|
226
|
-
visit_PureListInstanceValue(valueSpecification) {
|
227
|
-
throw new UnsupportedOperationError();
|
228
|
-
}
|
229
|
-
visit_CollectionInstanceValue(valueSpecification) {
|
230
|
-
throw new UnsupportedOperationError();
|
231
|
-
}
|
232
|
-
visit_FunctionExpression(valueSpecification) {
|
233
|
-
throw new UnsupportedOperationError();
|
234
|
-
}
|
235
|
-
visit_INTERNAL__PropagatedValue(valueSpecification) {
|
236
|
-
throw new UnsupportedOperationError();
|
237
|
-
}
|
238
|
-
visit_SimpleFunctionExpression(valueSpecification) {
|
239
|
-
const functionName = valueSpecification.functionName;
|
240
|
-
if (matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.GET_ALL)) {
|
241
|
-
const _class = valueSpecification.genericType?.value.rawType;
|
242
|
-
assertType(_class, Class, `Can't process getAll() expression: getAll() return type is missing`);
|
243
|
-
this.queryBuilderState.querySetupState.setClass(_class, true);
|
244
|
-
this.queryBuilderState.explorerState.refreshTreeData();
|
245
|
-
let acceptedNoOfParameters = 1;
|
246
|
-
const stereotype = getMilestoneTemporalStereotype(_class, this.queryBuilderState.graphManagerState.graph);
|
247
|
-
switch (stereotype) {
|
248
|
-
case MILESTONING_STEREOTYPE.BITEMPORAL:
|
249
|
-
acceptedNoOfParameters = 3;
|
250
|
-
assertTrue(valueSpecification.parametersValues.length ===
|
251
|
-
acceptedNoOfParameters, `Can't process getAll() expression: when used with a bitemporal milestoned class getAll() expects two parameters`);
|
252
|
-
this.queryBuilderState.querySetupState.setProcessingDate(valueSpecification.parametersValues[1]);
|
253
|
-
this.queryBuilderState.querySetupState.setBusinessDate(valueSpecification.parametersValues[2]);
|
254
|
-
break;
|
255
|
-
case MILESTONING_STEREOTYPE.BUSINESS_TEMPORAL:
|
256
|
-
acceptedNoOfParameters = 2;
|
257
|
-
assertTrue(valueSpecification.parametersValues.length ===
|
258
|
-
acceptedNoOfParameters, `Can't process getAll() expression: when used with a milestoned class getAll() expects a parameter`);
|
259
|
-
this.queryBuilderState.querySetupState.setBusinessDate(valueSpecification.parametersValues[1]);
|
260
|
-
break;
|
261
|
-
case MILESTONING_STEREOTYPE.PROCESSING_TEMPORAL:
|
262
|
-
acceptedNoOfParameters = 2;
|
263
|
-
assertTrue(valueSpecification.parametersValues.length ===
|
264
|
-
acceptedNoOfParameters, `Can't process getAll() expression: when used with a milestoned class getAll() expects a parameter`);
|
265
|
-
this.queryBuilderState.querySetupState.setProcessingDate(valueSpecification.parametersValues[1]);
|
266
|
-
break;
|
267
|
-
default:
|
268
|
-
assertTrue(valueSpecification.parametersValues.length ===
|
269
|
-
acceptedNoOfParameters, `Can't process getAll() expression: getAll() expects no arguments`);
|
270
|
-
}
|
271
|
-
return;
|
272
|
-
}
|
273
|
-
else if (matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.FILTER) ||
|
274
|
-
matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_FILTER)) {
|
275
|
-
assertTrue(valueSpecification.parametersValues.length === 2, `Can't process filter() expression: filter() expects 1 argument`);
|
276
|
-
const filterState = this.queryBuilderState.filterState;
|
277
|
-
const precedingExpression = guaranteeType(valueSpecification.parametersValues[0], SimpleFunctionExpression, `Can't process filter() expression: only support filter() immediately following an expression`);
|
278
|
-
precedingExpression.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, undefined));
|
279
|
-
if (matchFunctionName(precedingExpression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.GET_ALL)) {
|
280
|
-
assertTrue(matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.FILTER), `Can't process filter() expression: only supports ${QUERY_BUILDER_SUPPORTED_FUNCTIONS.FILTER}() immediately following getAll() (got '${functionName}')`);
|
281
|
-
const filterLambda = valueSpecification.parametersValues[1];
|
282
|
-
assertType(filterLambda, LambdaFunctionInstanceValue, `Can't process filter() expression: filter() expects argument #1 to be a lambda function`);
|
283
|
-
processFilterLambda(filterLambda, filterState);
|
284
|
-
/**
|
285
|
-
* NOTE: Since group operations like and/or do not take more than 2 parameters, if there are
|
286
|
-
* more than 2 clauses in each group operations, then these clauses are converted into an
|
287
|
-
* unbalanced tree. However, this would look quite bad for UX, as such, we simplify the tree.
|
288
|
-
* After building the filter state.
|
289
|
-
*/
|
290
|
-
filterState.simplifyTree();
|
291
|
-
return;
|
292
|
-
}
|
293
|
-
else if (matchFunctionName(precedingExpression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_PROJECT) ||
|
294
|
-
matchFunctionName(precedingExpression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_GROUP_BY)) {
|
295
|
-
assertTrue(matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_FILTER), `Can't process post-filter expression: only supports ${QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_FILTER}() immediately following TDS project()/groupBy() (got '${functionName}')`);
|
296
|
-
const postFilterState = this.queryBuilderState.fetchStructureState.projectionState
|
297
|
-
.postFilterState;
|
298
|
-
const postFilterLambda = valueSpecification.parametersValues[1];
|
299
|
-
assertType(postFilterLambda, LambdaFunctionInstanceValue, `Can't process post-filter expression: expects argument #1 to be a lambda function`);
|
300
|
-
processPostFilterLambda(postFilterLambda, postFilterState);
|
301
|
-
this.queryBuilderState.fetchStructureState.projectionState.setShowPostFilterPanel(true);
|
302
|
-
postFilterState.simplifyTree();
|
303
|
-
return;
|
304
|
-
}
|
305
|
-
else {
|
306
|
-
throw new UnsupportedOperationError("`Can't process filter() expression: only support filter() immediately following getAll() or TDS project()/groupBy()");
|
307
|
-
}
|
308
|
-
}
|
309
|
-
else if (matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_PROJECT)) {
|
310
|
-
const params = valueSpecification.parametersValues;
|
311
|
-
assertTrue(params.length === 3, `Can't process project() expression: project() expects 2 arguments`);
|
312
|
-
const precedingExpression = guaranteeType(params[0], SimpleFunctionExpression, `Can't process project() expression: only support project() immediately following an expression`);
|
313
|
-
precedingExpression.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, undefined));
|
314
|
-
// check caller
|
315
|
-
assertTrue([
|
316
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.GET_ALL,
|
317
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.FILTER,
|
318
|
-
].some((fn) => matchFunctionName(precedingExpression.functionName, fn)), `Can't process project() expression: only support project() immediately following either getAll() or filter()`);
|
319
|
-
// columns
|
320
|
-
const columnLambdas = params[1];
|
321
|
-
assertType(columnLambdas, CollectionInstanceValue, `Can't process project() expression: project() expects argument #1 to be a collection`);
|
322
|
-
columnLambdas.values.map((value) => value.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, valueSpecification)));
|
323
|
-
// aliases
|
324
|
-
const columnAliases = params[2];
|
325
|
-
assertType(columnAliases, CollectionInstanceValue, `Can't process project() expression: project() expects argument #2 to be a collection`);
|
326
|
-
assertTrue(columnLambdas.values.length === columnAliases.values.length, `Can't process project() expression: number of aliases does not match the number of columns`);
|
327
|
-
const aliases = columnAliases.values
|
328
|
-
.map(getNullableStringValueFromValueSpec)
|
329
|
-
.filter(isNonNullable);
|
330
|
-
this.queryBuilderState.fetchStructureState.projectionState.columns.forEach((e, idx) => e.setColumnName(aliases[idx]));
|
331
|
-
this.queryBuilderState.fetchStructureState.setFetchStructureMode(FETCH_STRUCTURE_MODE.PROJECTION);
|
332
|
-
return;
|
333
|
-
}
|
334
|
-
else if (matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_TAKE)) {
|
335
|
-
assertTrue(valueSpecification.parametersValues.length === 2, `Can't process take() expression: take() expects 1 argument`);
|
336
|
-
const precedingExpression = guaranteeType(valueSpecification.parametersValues[0], SimpleFunctionExpression, `Can't process take() expression: only support take() immediately following an expression`);
|
337
|
-
precedingExpression.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, undefined));
|
338
|
-
// check caller
|
339
|
-
assertTrue([
|
340
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_TAKE,
|
341
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_DISTINCT,
|
342
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_SORT,
|
343
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_PROJECT,
|
344
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_GROUP_BY,
|
345
|
-
].some((fn) => matchFunctionName(precedingExpression.functionName, fn)), `Can't process take() expression: only support take() in TDS expression`);
|
346
|
-
const takeValue = getNullableNumberValueFromValueSpec(guaranteeNonNullable(valueSpecification.parametersValues[1]));
|
347
|
-
this.queryBuilderState.fetchStructureState.projectionState.resultSetModifierState.setLimit(takeValue);
|
348
|
-
return;
|
349
|
-
}
|
350
|
-
else if (matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_DISTINCT)) {
|
351
|
-
assertTrue(valueSpecification.parametersValues.length === 1, `Can't process disctinct() expression: distinct() expects no parameter`);
|
352
|
-
const precedingExpression = guaranteeType(valueSpecification.parametersValues[0], SimpleFunctionExpression, `Can't process distinct() expression: only support distinct() immediately following an expression`);
|
353
|
-
precedingExpression.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, undefined));
|
354
|
-
// check caller
|
355
|
-
assertTrue([
|
356
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_TAKE,
|
357
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_DISTINCT,
|
358
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_SORT,
|
359
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_PROJECT,
|
360
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_GROUP_BY,
|
361
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_FILTER,
|
362
|
-
].some((fn) => matchFunctionName(precedingExpression.functionName, fn)), `Can't process distinct() expression: only support distinct() in TDS expression`);
|
363
|
-
this.queryBuilderState.fetchStructureState.projectionState.resultSetModifierState.distinct =
|
364
|
-
true;
|
365
|
-
return;
|
366
|
-
}
|
367
|
-
else if (matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_SORT)) {
|
368
|
-
assertTrue(valueSpecification.parametersValues.length === 2, `Can't process sort() expression: sort() expects 1 argument`);
|
369
|
-
const precedingExpression = guaranteeType(valueSpecification.parametersValues[0], SimpleFunctionExpression, `Can't process sort() expression: only support sort() immediately following an expression`);
|
370
|
-
precedingExpression.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, undefined));
|
371
|
-
// check caller
|
372
|
-
assertTrue([
|
373
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_TAKE,
|
374
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_DISTINCT,
|
375
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_SORT,
|
376
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_PROJECT,
|
377
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_GROUP_BY,
|
378
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_FILTER,
|
379
|
-
].some((fn) => matchFunctionName(precedingExpression.functionName, fn)), `Can't process sort() expression: only support sort() in TDS expression`);
|
380
|
-
const sortParam = valueSpecification.parametersValues[1];
|
381
|
-
assertType(sortParam, CollectionInstanceValue, `Can't process sort() expression: sort() argument should be a collection`);
|
382
|
-
sortParam.values.map((e) => e.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, valueSpecification)));
|
383
|
-
return;
|
384
|
-
}
|
385
|
-
else if ((matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_ASC) ||
|
386
|
-
matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_DESC)) &&
|
387
|
-
this.precedingExpression &&
|
388
|
-
matchFunctionName(this.precedingExpression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_SORT)) {
|
389
|
-
assertTrue(valueSpecification.parametersValues.length === 1, `Can't process ${functionName}() expression: ${functionName}() expects no argument`);
|
390
|
-
const sortColumnName = getNullableStringValueFromValueSpec(guaranteeNonNullable(valueSpecification.parametersValues[0]));
|
391
|
-
const queryBuilderProjectionColumnState = this.queryBuilderState.fetchStructureState.projectionState.columns.find((e) => e.columnName === sortColumnName);
|
392
|
-
if (queryBuilderProjectionColumnState) {
|
393
|
-
const sortColumnState = new SortColumnState(queryBuilderProjectionColumnState);
|
394
|
-
sortColumnState.sortType = matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_ASC)
|
395
|
-
? COLUMN_SORT_TYPE.ASC
|
396
|
-
: COLUMN_SORT_TYPE.DESC;
|
397
|
-
this.queryBuilderState.fetchStructureState.projectionState.resultSetModifierState.addSortColumn(sortColumnState);
|
398
|
-
}
|
399
|
-
return;
|
400
|
-
}
|
401
|
-
else if (matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_GROUP_BY)) {
|
402
|
-
assertTrue(valueSpecification.parametersValues.length === 4, `Can't process groupBy() expression: groupBy() expects 3 arguments`);
|
403
|
-
const params = valueSpecification.parametersValues;
|
404
|
-
const precedingExpression = guaranteeType(params[0], SimpleFunctionExpression, `Can't process groupBy() expression: only support groupBy() immediately following an expression`);
|
405
|
-
precedingExpression.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, undefined));
|
406
|
-
// check caller
|
407
|
-
assertTrue([
|
408
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.GET_ALL,
|
409
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.FILTER,
|
410
|
-
].some((fn) => matchFunctionName(precedingExpression.functionName, fn)), `Can't process groupBy() expression: only support groupBy() immediately following either getAll() or filter()`);
|
411
|
-
// columns
|
412
|
-
const columnExpressions = params[1];
|
413
|
-
assertType(columnExpressions, CollectionInstanceValue, `Can't process groupBy() expression: groupBy() expects argument #1 to be a collection`);
|
414
|
-
columnExpressions.values.map((e) => e.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, valueSpecification)));
|
415
|
-
// aggregations
|
416
|
-
const aggregationExpressions = params[2];
|
417
|
-
assertType(aggregationExpressions, CollectionInstanceValue, `Can't process groupBy() expression: groupBy() expects argument #2 to be a collection`);
|
418
|
-
aggregationExpressions.values.map((e) => e.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, valueSpecification)));
|
419
|
-
// aliases
|
420
|
-
const columnAliases = params[3];
|
421
|
-
assertType(columnAliases, CollectionInstanceValue, `Can't process groupBy() expression: groupBy() expects argument #3 to be a collection`);
|
422
|
-
assertTrue(columnAliases.values.length ===
|
423
|
-
columnExpressions.values.length +
|
424
|
-
aggregationExpressions.values.length, `Can't process groupBy() expression: number of aliases does not match the number of columns`);
|
425
|
-
const aliases = columnAliases.values
|
426
|
-
.map(getNullableStringValueFromValueSpec)
|
427
|
-
.filter(isNonNullable);
|
428
|
-
this.queryBuilderState.fetchStructureState.projectionState.columns.forEach((e, idx) => e.setColumnName(aliases[idx]));
|
429
|
-
this.queryBuilderState.fetchStructureState.setFetchStructureMode(FETCH_STRUCTURE_MODE.PROJECTION);
|
430
|
-
return;
|
431
|
-
}
|
432
|
-
else if (matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_AGG)) {
|
433
|
-
assertTrue(valueSpecification.parametersValues.length === 2, `Can't process agg() expression: agg() expects 2 arguments`);
|
434
|
-
// check caller
|
435
|
-
assertNonNullable(this.precedingExpression);
|
436
|
-
assertTrue(matchFunctionName(this.precedingExpression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_GROUP_BY), `Can't process agg() expression: only support agg() in aggregation`);
|
437
|
-
const columnLambdas = guaranteeNonNullable(valueSpecification.parametersValues[0]);
|
438
|
-
columnLambdas.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, valueSpecification));
|
439
|
-
const aggregateLambda = valueSpecification.parametersValues[1];
|
440
|
-
assertType(aggregateLambda, LambdaFunctionInstanceValue, `Can't process agg() expression: agg() expects argument #1 to be a lambda function`);
|
441
|
-
// NOTE: since we process agg() expressions one by one, we know that the current agg()
|
442
|
-
// always correspond to the last column projection state, based on our processing procedure
|
443
|
-
processAggregateLambda(aggregateLambda, guaranteeNonNullable(this.queryBuilderState.fetchStructureState.projectionState.columns[this.queryBuilderState.fetchStructureState.projectionState.columns
|
444
|
-
.length - 1]), this.queryBuilderState.fetchStructureState.projectionState
|
445
|
-
.aggregationState);
|
446
|
-
return;
|
447
|
-
}
|
448
|
-
else if (matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.SERIALIZE)) {
|
449
|
-
assertTrue(valueSpecification.parametersValues.length === 2, `Can't process serialize() expression: serialize() expects 1 argument`);
|
450
|
-
const precedingExpression = guaranteeType(valueSpecification.parametersValues[0], SimpleFunctionExpression, `Can't process serialize() expression: only support serialize() immediately following an expression`);
|
451
|
-
precedingExpression.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, valueSpecification));
|
452
|
-
// check caller
|
453
|
-
assertTrue([
|
454
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH,
|
455
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH_CHECKED,
|
456
|
-
].some((fn) => matchFunctionName(precedingExpression.functionName, fn)), `Can't process serialize() expression: only support serialize() in graph-fetch expression`);
|
457
|
-
const serializeFunc = guaranteeType(valueSpecification.parametersValues[1], GraphFetchTreeInstanceValue, `Can't process serialize() expression: serialize() graph-fetch is missing`);
|
458
|
-
const value = guaranteeType(serializeFunc.values[0], RootGraphFetchTree, `Can't process serialize() expression: serialize() graph-fetch tree root is missing`);
|
459
|
-
this.queryBuilderState.fetchStructureState.setFetchStructureMode(FETCH_STRUCTURE_MODE.GRAPH_FETCH);
|
460
|
-
this.queryBuilderState.fetchStructureState.graphFetchTreeState.initialize(value);
|
461
|
-
return;
|
462
|
-
}
|
463
|
-
else if ((matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH_CHECKED) ||
|
464
|
-
matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH)) &&
|
465
|
-
this.precedingExpression &&
|
466
|
-
matchFunctionName(this.precedingExpression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.SERIALIZE)) {
|
467
|
-
assertTrue(valueSpecification.parametersValues.length === 2, `Can't process ${functionName}() expression: ${functionName}() expects 1 argument`);
|
468
|
-
const precedingExpression = guaranteeType(valueSpecification.parametersValues[0], SimpleFunctionExpression, `Can't process ${functionName}() expression: only support ${functionName}() immediately following an expression`);
|
469
|
-
precedingExpression.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, valueSpecification));
|
470
|
-
// check caller
|
471
|
-
assertTrue([
|
472
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.FILTER,
|
473
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.GET_ALL,
|
474
|
-
].some((fn) => matchFunctionName(precedingExpression.functionName, fn)), `Can't process ${functionName}(): only support ${functionName}() immediately following either getAll() or filter()`);
|
475
|
-
this.queryBuilderState.fetchStructureState.graphFetchTreeState.setChecked(matchFunctionName(functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.GRAPH_FETCH_CHECKED));
|
476
|
-
return;
|
477
|
-
}
|
478
|
-
throw new UnsupportedOperationError(`Can't process expression of function ${functionName}()`);
|
479
|
-
}
|
480
|
-
visit_VariableExpression(valueSpecification) {
|
481
|
-
throw new UnsupportedOperationError();
|
482
|
-
}
|
483
|
-
visit_LambdaFunctionInstanceValue(valueSpecification) {
|
484
|
-
valueSpecification.values.forEach((value) => value.expressionSequence.forEach((expression) => expression.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(this.queryBuilderState, this.precedingExpression))));
|
485
|
-
}
|
486
|
-
visit_AbstractPropertyExpression(valueSpecification) {
|
487
|
-
assertNonNullable(this.precedingExpression, `Can't process property expression: property expression preceding expression cannot be retrieved`);
|
488
|
-
const precedingExpressionName = this.precedingExpression.functionName;
|
489
|
-
if ([
|
490
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_PROJECT,
|
491
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_GROUP_BY,
|
492
|
-
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_AGG,
|
493
|
-
].some((fn) => matchFunctionName(precedingExpressionName, fn))) {
|
494
|
-
// NOTE: we do this before creating the projection state, as we will
|
495
|
-
// auto-fill arguments for derived properties when missing as part of building
|
496
|
-
// the property expression state.
|
497
|
-
let currentPropertyExpression = valueSpecification;
|
498
|
-
while (currentPropertyExpression instanceof AbstractPropertyExpression) {
|
499
|
-
const propertyExpression = currentPropertyExpression;
|
500
|
-
validatePropertyExpressionChain(currentPropertyExpression, this.queryBuilderState.graphManagerState.graph);
|
501
|
-
currentPropertyExpression = guaranteeNonNullable(currentPropertyExpression.parametersValues[0]);
|
502
|
-
// here we just do a simple check to ensure that if we encounter derived properties
|
503
|
-
// the number of parameters and arguments provided match
|
504
|
-
if (propertyExpression.func instanceof DerivedProperty) {
|
505
|
-
assertTrue((Array.isArray(propertyExpression.func.parameters)
|
506
|
-
? propertyExpression.func.parameters.length
|
507
|
-
: 0) ===
|
508
|
-
propertyExpression.parametersValues.length - 1, `Can't process property expression: derived property '${propertyExpression.func.name}' expects number of provided arguments to match number of parameters`);
|
509
|
-
}
|
510
|
-
// Take care of chains of subtype (a pattern that is not useful, but we want to support and rectify)
|
511
|
-
// $x.employees->subType(@Person)->subType(@Staff)
|
512
|
-
while (currentPropertyExpression instanceof SimpleFunctionExpression &&
|
513
|
-
matchFunctionName(currentPropertyExpression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.SUBTYPE)) {
|
514
|
-
currentPropertyExpression = guaranteeNonNullable(currentPropertyExpression.parametersValues[0]);
|
515
|
-
}
|
516
|
-
}
|
517
|
-
assertType(currentPropertyExpression, VariableExpression, `Can't process property expression: expects expression root to be a variable`);
|
518
|
-
const projectionState = this.queryBuilderState.fetchStructureState.projectionState;
|
519
|
-
const columnState = new QueryBuilderSimpleProjectionColumnState(projectionState, valueSpecification, false);
|
520
|
-
projectionState.addColumn(columnState, { skipSorting: true });
|
521
|
-
// NOTE: technically we should set the lambda parameter name when we process
|
522
|
-
// the lambda, not when we process the lambda body like this, but that requires
|
523
|
-
// some setup, so it's easier to do it here. The validation of this should have
|
524
|
-
// already been taken care of by the builder.
|
525
|
-
columnState.setLambdaParameterName(currentPropertyExpression.name);
|
526
|
-
return;
|
527
|
-
}
|
528
|
-
throw new UnsupportedOperationError(`Can't process property expression with preceding expression of function ${this.precedingExpression.functionName}()`);
|
529
|
-
}
|
530
|
-
visit_InstanceValue(valueSpecification) {
|
531
|
-
throw new UnsupportedOperationError();
|
532
|
-
}
|
533
|
-
}
|
534
|
-
export const processQueryParameters = (parameters, queryBuilderState) => {
|
535
|
-
const queryParameterState = queryBuilderState.queryParametersState;
|
536
|
-
parameters.forEach((parameter) => {
|
537
|
-
const parameterState = new LambdaParameterState(parameter, queryBuilderState.observableContext, queryBuilderState.graphManagerState.graph);
|
538
|
-
parameterState.mockParameterValue();
|
539
|
-
queryParameterState.addParameter(parameterState);
|
540
|
-
});
|
541
|
-
};
|
542
|
-
export const processQueryBuilderLambdaFunction = (queryBuilderState, lambdaFunc) => {
|
543
|
-
if (lambdaFunc.functionType.parameters.length) {
|
544
|
-
processQueryParameters(lambdaFunc.functionType.parameters, queryBuilderState);
|
545
|
-
}
|
546
|
-
lambdaFunc.expressionSequence.map((e) => e.accept_ValueSpecificationVisitor(new QueryBuilderLambdaProcessor(queryBuilderState, undefined)));
|
547
|
-
};
|
548
|
-
//# sourceMappingURL=QueryBuilderValueSpecificationProcessor.js.map
|