FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. For more details, review the migration guide. Contact support@fauna.com with any questions. |
Update an index
Solution
Set the data
field in an index document:
{
ref: Index("all_of_the_people"),
ts: 1631909688850000,
active: true,
serialized: true,
name: 'all_of_the_people',
source: Collection("People"),
values: [
{ field: [ 'data', 'first' ] },
{ field: [ 'data', 'last' ] },
{ field: [ 'ref' ] }
],
partitions: 8,
data: { team: 'Wizards' }
}
{'ref': Ref(id=all_of_the_people, collection=Ref(id=indexes)), 'ts': 1631911056420000, 'active': True, 'serialized': True, 'name': 'all_of_the_people', 'source': Ref(id=People, collection=Ref(id=collections)), 'values': [{'field': ['data', 'first']}, {'field': ['data', 'last']}, {'field': ['ref']}], 'partitions': 8, 'data': {'team': 'Wizards'}}
map[active:true data:map[team:Wizards] name:all_of_the_people partitions:8 ref:{all_of_the_people 0xc000109a10 0xc000109a10 <nil>} serialized:true source:{People 0xc000109b00 0xc000109b00 <nil>} ts:1631911525160000 values:[map[field:[data first]] map[field:[data last]] map[field:[ref]]]]
ObjectV(ref: RefV(id = "all_of_the_people", collection = RefV(id = "indexes")),ts: LongV(1632032541470000),active: BooleanV(True),serialized: BooleanV(True),name: StringV(all_of_the_people),source: RefV(id = "People", collection = RefV(id = "collections")),values: Arr(ObjectV(field: Arr(StringV(data), StringV(first))), ObjectV(field: Arr(StringV(data), StringV(last))), ObjectV(field: Arr(StringV(ref)))),partitions: LongV(8),data: ObjectV(team: StringV(Wizards)))
{
ref: Index("all_of_the_people"),
ts: 1631835756760000,
active: true,
serialized: true,
name: 'all_of_the_people',
source: Collection("People"),
values: [
{ field: [ 'data', 'first' ] },
{ field: [ 'data', 'last' ] },
{ field: [ 'ref' ] }
],
partitions: 8,
data: { team: 'Wizards' }
}
Discussion
You can Rename an index, add metadata, or
change the unique
field. However, you cannot change an index’s terms
or values
definitions after the index has been created.
If you need to modify an index’s terms
or values
definition, you
should create a new index with the new definition, then rename the old
index out of the way, and rename the new index to use the original name
of the old index.
If you change unique
to true
, any existing duplicate items in the
index are not automatically removed.
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!