JSON data type not showing up in query results when using Kusto
Steps to reproduce:
I connected to a VSCode internal table and queried for a specific event. The columns I was after contained JSON as a data type and all showed up as null making it a dead end for my analysis
Can provide code example on request

Reach out to the ADS team about this.
A code sample or other repro would be helpful.
#!csharp
#i "nuget:https://api.nuget.org/v3/index.json" #r "nuget:Microsoft.DotNet.Interactive.Kql,-""
#!kql
#!connect kql --kernel-name test --cluster "https://help.kusto.windows.net" --database "Samples"
#!kql
#!kql-test
print dynamic({'hello':123})
This prints out the following: print_0 null
Should have been: print_0 { "hello": 123 }
Any news on this ? Would really have use in this if/when it gets fixed :smile: