Closed alexchandel closed 2 years ago
There's a nice answer on Stack Overflow showing approaches for using kqlmagic without %% commands.
I used the Kqlmagic.kql function and it worked for me for making a reusable Python function that can be called from Jupyter to return KQL query results. But I'm not sure of the best way to document these non-magic techniques.
Kqlmagic module documentation is planned, no ETA at this point
A magic
%%kql
cell runs a multiline query and puts the result into_kql_raw_result_
. How does one perform the same query without using a magic command? There's no documentation of any of Kqlmagic's classes.