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
To enable detailed analytics on user engagement and app usage, we need to track each query made by users. This will involve storing a document in our MongoDB database every time a query is executed.
Implementation Details
Data Structure: Each document stored should contain user_id and timestamp.
Database: MongoDB will be used to store this data (we know it and it works well).
To enable detailed analytics on user engagement and app usage, we need to track each query made by users. This will involve storing a document in our MongoDB database every time a query is executed.
Implementation Details
user_id
andtimestamp
.{ "user_id": "<user_id_here>", "timestamp": "<ISO_date_time_here>" }
Tasks
Backend Update:
Data Privacy Compliance:
The text was updated successfully, but these errors were encountered: