Skip to content

Commit d74a499

Browse files
authored
Merge branch 'main' into gkorland-delete-python
2 parents d1300dc + 1714f25 commit d74a499

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,3 +357,4 @@ table
357357
Explainer
358358
propname
359359
propvalue
360+
ro

commands/graph.ro_query.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,14 @@ Arguments: `Graph name, Query, Timeout [optional]`
1414

1515
Returns: [Result set](/design/result_structure) for a read only query or an error if a write query was given.
1616

17-
```sh
17+
{% capture shell_0 %}
1818
GRAPH.RO_QUERY us_government "MATCH (p:president)-[:born]->(:state {name:'Hawaii'}) RETURN p"
19-
```
19+
{% endcapture %}
20+
21+
{% capture python_0 %}
22+
graph.ro_query("MATCH (p:president)-[:born]->(:state {name:'Hawaii'}) RETURN p")
23+
{% endcapture %}
24+
25+
{% include code_tabs.html id="tabs_0" shell=shell_0 python=python_0 %}
2026

2127
Query-level timeouts can be set as described in [the configuration section](/configuration#timeout).

0 commit comments

Comments
 (0)