We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00f6306 commit d7a0b56Copy full SHA for d7a0b56
docs/indexes.rst
@@ -44,7 +44,7 @@ on fields ``_from`` and ``_to``. For more information on indexes, refer to
44
index = cities.add_persistent_index(fields=['currency'], sparse=True)
45
46
# Add a new TTL (time-to-live) index on field 'currency'.
47
- index = cities.add_ttl_index(fields=['ttl'], expiry_time=200)
+ index = cities.add_ttl_index(fields=['currency'], expiry_time=200)
48
49
# Indexes may be added with a name that can be referred to in AQL queries.
50
index = cities.add_hash_index(fields=['country'], name='my_hash_index')
0 commit comments