There are multiple feedback{appID} collections, one collection for each specific app.
Collection name is formed using "feedback" string and app ID.
So for example for app with ID "542e95d747f0be510c000004" the collection name would be: "feedback542e95d747f0be510c000004"
Here is the list of possible fields
| Field | Description | Example |
|---|---|---|
| _id | Unique feedback ID | 542e95d747f0be510c000004 |
| Email value of user who checked "Contact me by email" option and provided email address | fb@count.ly | |
| comment | Feedback comment of user | Awesome web page |
| ts | Date as timestamp | 1527512634478.0 |
| device_id | Device id value which provided by countly web sdk | username@mailprovider.com |
| cd | Current date as date object | 2018-05-23 09:32:50.793Z |
| uid | Countly app user id | 6V |
| contact_me | User checked "Contact me by email" option? | true |
| rating | Rating value of user between 1 and 5 | 4 |
| widget_id | Unique feedback widget ID | 542e95d747f0be510c000004 |
Here is an example of feedback document:
{
"_id" : ObjectId("5b0bee651e3d0535146d535f"),
"email" : "fb@count.ly",
"comment" : "Good but not enough",
"ts" : 1527508581001.0,
"device_id" : "user@mailprovider.com",
"cd" : ISODate("2018-05-28T11:56:21.288Z"),
"uid" : "6V",
"contact_me" : false,
"rating" : 3,
"widget_id" : "5b069303aa709d63a827d968"
}
About Internal identifier
uid can be used to match up internal queries about user data with drill and other collections.