├── .gitignore ├── LICENSE ├── README.md ├── app ├── app.json └── src │ ├── Inline Query │ ├── codeunit │ │ ├── InlineQuery.Codeunit.al │ │ ├── InlineQueryCompiler.Codeunit.al │ │ ├── InlineQueryImpl.Codeunit.al │ │ ├── InlineQueryJsonHelper.Codeunit.al │ │ ├── InlineQueryParser.Codeunit.al │ │ ├── InlineQueryTokenizer.Codeunit.al │ │ └── TryInlineQuery.Codeunit.al │ ├── enum │ │ ├── InlineQueryFunctionType.Enum.al │ │ ├── InlineQueryOperatorType.Enum.al │ │ ├── InlineQueryTokenType.Enum.al │ │ └── InlineQueryType.Enum.al │ └── page │ │ └── InlineQueryAnalyzer.Page.al │ └── InlineQueryAnalyzerControlAddin │ ├── QueryAnalyzerControlAddIn.ControlAddIn.al │ ├── css │ └── QueryAnalyzer.css │ └── js │ └── QueryAnalyzer.js └── test ├── app.json └── src ├── InlineQueryTestData.Table.al ├── InlineQueryTestLibrary.Codeunit.al └── InlineQueryTests.Codeunit.al /.gitignore: -------------------------------------------------------------------------------- 1 | .alpackages 2 | .snapshots 3 | .vscode 4 | *.app -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/README.md -------------------------------------------------------------------------------- /app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/app.json -------------------------------------------------------------------------------- /app/src/Inline Query/codeunit/InlineQuery.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/codeunit/InlineQuery.Codeunit.al -------------------------------------------------------------------------------- /app/src/Inline Query/codeunit/InlineQueryCompiler.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/codeunit/InlineQueryCompiler.Codeunit.al -------------------------------------------------------------------------------- /app/src/Inline Query/codeunit/InlineQueryImpl.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/codeunit/InlineQueryImpl.Codeunit.al -------------------------------------------------------------------------------- /app/src/Inline Query/codeunit/InlineQueryJsonHelper.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/codeunit/InlineQueryJsonHelper.Codeunit.al -------------------------------------------------------------------------------- /app/src/Inline Query/codeunit/InlineQueryParser.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/codeunit/InlineQueryParser.Codeunit.al -------------------------------------------------------------------------------- /app/src/Inline Query/codeunit/InlineQueryTokenizer.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/codeunit/InlineQueryTokenizer.Codeunit.al -------------------------------------------------------------------------------- /app/src/Inline Query/codeunit/TryInlineQuery.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/codeunit/TryInlineQuery.Codeunit.al -------------------------------------------------------------------------------- /app/src/Inline Query/enum/InlineQueryFunctionType.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/enum/InlineQueryFunctionType.Enum.al -------------------------------------------------------------------------------- /app/src/Inline Query/enum/InlineQueryOperatorType.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/enum/InlineQueryOperatorType.Enum.al -------------------------------------------------------------------------------- /app/src/Inline Query/enum/InlineQueryTokenType.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/enum/InlineQueryTokenType.Enum.al -------------------------------------------------------------------------------- /app/src/Inline Query/enum/InlineQueryType.Enum.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/enum/InlineQueryType.Enum.al -------------------------------------------------------------------------------- /app/src/Inline Query/page/InlineQueryAnalyzer.Page.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/Inline Query/page/InlineQueryAnalyzer.Page.al -------------------------------------------------------------------------------- /app/src/InlineQueryAnalyzerControlAddin/QueryAnalyzerControlAddIn.ControlAddIn.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/InlineQueryAnalyzerControlAddin/QueryAnalyzerControlAddIn.ControlAddIn.al -------------------------------------------------------------------------------- /app/src/InlineQueryAnalyzerControlAddin/css/QueryAnalyzer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/InlineQueryAnalyzerControlAddin/css/QueryAnalyzer.css -------------------------------------------------------------------------------- /app/src/InlineQueryAnalyzerControlAddin/js/QueryAnalyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/app/src/InlineQueryAnalyzerControlAddin/js/QueryAnalyzer.js -------------------------------------------------------------------------------- /test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/test/app.json -------------------------------------------------------------------------------- /test/src/InlineQueryTestData.Table.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/test/src/InlineQueryTestData.Table.al -------------------------------------------------------------------------------- /test/src/InlineQueryTestLibrary.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/test/src/InlineQueryTestLibrary.Codeunit.al -------------------------------------------------------------------------------- /test/src/InlineQueryTests.Codeunit.al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msnraju/inline-query/HEAD/test/src/InlineQueryTests.Codeunit.al --------------------------------------------------------------------------------