1
0
Fork 0

fix typo as pointed out by @agreif

This commit is contained in:
Wilfried Goesgens 2017-08-22 17:15:57 +02:00
parent c64d560231
commit ddb4b3cfd5
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ i.e. `"friends"`, `"family"`, `"married"` or `"workmates"`, so you can later `FI
if you only want to follow the friend edges.
Another way, which may be more efficient in some cases, is to use different edge collections for different
types of edges, so you have `friend_eges`, `family_edges`, `married_edges` and `workmate_edges` as collection names.
types of edges, so you have `friend_edges`, `family_edges`, `married_edges` and `workmate_edges` as collection names.
You can then configure several named graphs including a subset of the available edge and vertex collections -
or you use anonymous graph queries, where you specify a list of edge collections to take into account in that query.
To only follow friend edges, you would specify `friend_edges` as sole edge collection.