Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion modules/ROOT/pages/queries-aggregations/queries.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ query {
}
----

In addition, undirected relationships can also be used in the same fashion with connections:
In addition, undirected relationships can also be used in the same fashion with connections.
For instance, this query is asking for a list of users and their friends' names with an undirected friendship connection:

[source, graphql, indent=0]
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ When you run xref::/type-definitions/directives/indexes-and-constraints.adoc#_as

[source, cypher, indent=0]
----
CALL db.index.fulltext.createNodeIndex("ProductName", ["Product"], ["name"])
CREATE FULLTEXT INDEX ProductName FOR (n:Product) ON EACH [n.name]
----

=== Usage
Expand Down