From 3ae40f737b21fb3517e2ccc3384137e44e3a3353 Mon Sep 17 00:00:00 2001 From: Michael Brichko Date: Mon, 15 Jun 2026 11:34:03 +0300 Subject: [PATCH] improve graph-to-table doc --- data-explorer/kusto/query/graph-to-table-operator.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/data-explorer/kusto/query/graph-to-table-operator.md b/data-explorer/kusto/query/graph-to-table-operator.md index b76758658a..acbf2fbb5b 100644 --- a/data-explorer/kusto/query/graph-to-table-operator.md +++ b/data-explorer/kusto/query/graph-to-table-operator.md @@ -50,7 +50,9 @@ The `graph-to-table` operator returns a tabular result, in which each row corres ### Nodes and edges -The `graph-to-table` operator returns two tabular results, matching the previous descriptions. +The `graph-to-table` operator can return nodes and edges as separate tabular results using the [as operator](as-operator.md). +Each result is assigned a name, and the `graph-to-table` statement must terminate with a semicolon. +After that, additional tabular expressions (also separated by semicolons) can be used to return the named results. ## Examples