Skip to content

Commit

Permalink
Fix typo in reference guide (#529)
Browse files Browse the repository at this point in the history
fix typo in reference guide.
  • Loading branch information
tb06904 committed Sep 3, 2024
1 parent 9e960f0 commit 383a734
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/reference/gremlin-guide/gaffer-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ Note that any options should be passed as a list or dictionary.
=== "Python"

```python
g.with_("operationOptions", {"gaffer.federatedstore.operation.graphIds:graphA"}).V().to_list()
g.with_("operationOptions", ["gaffer.federatedstore.operation.graphIds:graphA"]).V().to_list()
```

or

```python
g.with_("operationOptions", {"gaffer.federatedstore.operation.graphIds": "graphA"}).V().to_list()
```

## GetAllElements Limit
Expand Down

0 comments on commit 383a734

Please sign in to comment.