any suggestions on how to get the Typesense firest...
# community-help
v
any suggestions on how to get the Typesense firestore extension to automatically populate a field like
id_search
in my Typesense cluster? The only way i can save the
id
in the extension configuration is byte writing
<other fields>, id, <more fields>
. but then the extension can’t map that
id
onto the custom
id_search
field i have in Typesense, because i know the
id
field is special and i cant search by it, so it has to be named something different.
j
The extension cannot remap fields on the fly. So you would have to create this new field from your application when you create the document in Firestore and sync that field into Typesense
1