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
{{ message }}
This repository was archived by the owner on Dec 13, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: 3.10/appendix-glossary.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -182,10 +182,12 @@ The fulltext index type is deprecated from version 3.10 onwards.
182
182
A fulltext index can be used to find words, or prefixes of words inside documents. A fulltext index can be defined on one attribute only, and will include all words contained in documents that have a textual value in the index attribute. The index will also include words from the index attribute if the index attribute is an array of strings, or an object with string value members.
183
183
184
184
For example, given a fulltext index on the `translations` attribute and the following documents, then searching for `лиса` using the fulltext index would return only the first document. Searching for the index for the exact string `Fox` would return the first two documents, and searching for `prefix:Fox` would return all three documents:
If the index attribute is neither a string, an object or an array, its contents will not be indexed. When indexing the contents of an array attribute, an array member will only be included in the index if it is a string. When indexing the contents of an object attribute, an object member value will only be included in the index if it is a string. Other data types are ignored and not indexed.
Copy file name to clipboardExpand all lines: 3.10/aql/advanced.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
layout: default
3
-
description: This section covers additional, powerful AQL features, which you may wanna lookinto once you made yourself familiar with the basics of the query language
3
+
description: This section covers additional, powerful AQL features, which you may wanna look into once you made yourself familiar with the basics of the query language
Copy file name to clipboardExpand all lines: 3.10/aql/examples-remove-vertex.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
layout: default
3
-
description: Deleting vertices with associated edges is currently not handled via AQL while the graph management interfaceand theREST API for the graph moduleoffer a vertex deletion functionality
3
+
description: Deleting vertices with associated edges is currently not handled via AQL while the graph management interface and the REST API for the graph module offer a vertex deletion functionality
0 commit comments