You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * GRAPH.EXPLAIN * * Constructs a query execution plan but does not run it. * * Inspect this execution plan to better understand how your query will get executed. * * https://oss.redislabs.com/redisgraph/commands/#graphexplain * * @param {string} [query] cypher query * @return String representation of a query execution plan * @example * * graph.explain("MATCH (p:president)-[:born]->(h:state {name:'Hawaii'}) RETURN p"); */explain(query: string){returnthis._sendCommand("GRAPH.EXPLAIN",[this._graphId,query]).then(res=>{returnnewResultSet(res);});}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: