-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicated Presentation when using mongoose #25
Comments
This problem appears to be related to the ids, or more specifically the field name of the id (in this case _id). In general, it seems to work if we do not use a mongoose. |
is there any errors on browser console or on feathers debug? |
check here: feathersjs-ecosystem/feathers-mongoose#81 @fonzarely Is working to support custom id (maybe you want to help) |
I am experiencing this issue as well. Any workarounds? |
It seems to be that you are using mongo or somehting with custom id field name. |
I have a feathers service that I can test with postman, and it shows a list of 4 records all distinct. However, when I try to use it with aor-feathers-client, no matter which model I use, the records are all being presented as equal. So let's say for example, we have a model for
reminders
. We would expect:Reminders List
But what is appearing is:
Reminder List
Where the first item is always duplicated. Also, when trying to edit, it simply passes 'undefined'. I'm not sure what I'm doing wrong here. I based it entirely off of your example:
The text was updated successfully, but these errors were encountered: