Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kusto show function | show info about function

Is there a keyword to show a function in Kusto? For example if I have a function like this:

let EnterString = (a:string) { strcat("You entered '", a, "'.") };

Can I call something like .show to show the function?

.show EnterString

Expected output:

let EnterString = (a:string) { strcat("You entered '", a, "'.") };
like image 411
SendETHToThisAddress Avatar asked Oct 29 '25 12:10

SendETHToThisAddress


1 Answers

You could use:

.show function EnterString 

.show function

Parameters

The parameters required by the function.

Body

(Zero or more) let statements followed by a valid CSL expression that is evaluated upon function invocation.

like image 193
Lukasz Szozda Avatar answered Nov 01 '25 02:11

Lukasz Szozda