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
I would like to have the option to map the field names from firestore to other field names in the typsense collection. As an example, the field id is called id in firestore and typsense, but the firestore field ownerId should be called userId in typsense. To achieve this, you could modify the field Firestore Collection Fields in the typsense extension configuration to accept the following syntax and of course update the sync cloud functions to handle it.
# Previously
id, ownerId, date
# Future
id, ownerId=userId, date
The text was updated successfully, but these errors were encountered:
Description
I would like to have the option to map the field names from firestore to other field names in the typsense collection. As an example, the field
id
is calledid
in firestore and typsense, but the firestore fieldownerId
should be calleduserId
in typsense. To achieve this, you could modify the fieldFirestore Collection Fields
in the typsense extension configuration to accept the following syntax and of course update the sync cloud functions to handle it.The text was updated successfully, but these errors were encountered: