Open
Description
Describe the bug
Missing ")" in kusto_graph()
if snap_name:
graph_query = f'graph("{graph_name}", "{snap_name}" | graph-to-table nodes as N with_node_id=NodeId, edges as E with_source_id=src with_target_id=dst; N;E'
else:
graph_query = f'graph("{graph_name}") | graph-to-table nodes as N with_node_id=NodeId, edges as E with_source_id=src with_target_id=dst; N;E'
results = self._query(graph_query)
To Reproduce
graphistry.kusto_graph(graph_name, snap_name="Foo")
Expected behavior
Return latest snapshot of a graph
Actual behavior
Returns syntax error