@@ -17,6 +17,11 @@ Creates a hash index for the collection if it does not already exist.
17
17
18
18
- ** options** : ` HashIndexOptions `
19
19
20
+ - ** name** : ` String `
21
+
22
+ Specify a custom name during index creation (optional). When running AQL queries you might then refer
23
+ to these name as your preferred index for lookups (e.g. Index Hints).
24
+
20
25
- ** unique** : ` Boolean `
21
26
22
27
If true, then create a unique index
@@ -59,6 +64,11 @@ Creates a skip-list index for the collection if it does not already exist.
59
64
60
65
- ** options** : ` SkipListIndexOptions `
61
66
67
+ - ** name** : ` String `
68
+
69
+ Specify a custom name during index creation (optional). When running AQL queries you might then refer
70
+ to these name as your preferred index for lookups (e.g. Index Hints).
71
+
62
72
- ** unique** : ` Boolean `
63
73
64
74
If true, then create a unique index
@@ -103,6 +113,11 @@ Creates a geo index for the collection if it does not already exist.
103
113
104
114
- ** options** : ` GeoIndexOptions `
105
115
116
+ - ** name** : ` String `
117
+
118
+ Specify a custom name during index creation (optional). When running AQL queries you might then refer
119
+ to these name as your preferred index for lookups (e.g. Index Hints).
120
+
106
121
- ** geoJson** : ` Boolean `
107
122
108
123
If a geo-spatial index on a location is constructed and geoJson is true,
@@ -141,6 +156,11 @@ Creates a fulltext index for the collection if it does not already exist.
141
156
142
157
- ** options** : ` FulltextIndexOptions `
143
158
159
+ - ** name** : ` String `
160
+
161
+ Specify a custom name during index creation (optional). When running AQL queries you might then refer
162
+ to these name as your preferred index for lookups (e.g. Index Hints).
163
+
144
164
- ** minLength** : ` Integer `
145
165
146
166
Minimum character length of words to index. Will default to a server-defined
@@ -179,6 +199,11 @@ Creates a persistent index for the collection if it does not already exist.
179
199
180
200
- ** options** : ` PersistentIndexOptions `
181
201
202
+ - ** name** : ` String `
203
+
204
+ Specify a custom name during index creation (optional). When running AQL queries you might then refer
205
+ to these name as your preferred index for lookups (e.g. Index Hints).
206
+
182
207
- ** unique** : ` Boolean `
183
208
184
209
If true, then create a unique index
0 commit comments