-
-
Notifications
You must be signed in to change notification settings - Fork 206
LiveQuery with pointers or relations doesn't update. #422
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
Comments
I do not know if this is really supported by the parse-server. One message is typicaly in one chat. Have you considert using a pointer in the Message object to the Chat object? In my application, I am using custom relation tables for relating objects of different classes with each other. And I had no problems with this approach, yet. (I think Parse-Server even works like this internaly. So maybe you could even query the existing, hidden class.) |
I fixed it using a Pointer in Message object to Chat object. Then using |
Hey @FNPCMDs , I have similar issue, can you check it out and let me know how can i figure it out? Thanks. |
Hi!
I'm using LiveQuery to get realtime changes. I have a class "Chat", with a relation column named "messages". So, I need to query by relations. I tried to do:
However, I don't get any update from LiveQuery. (I think Parse-Server team didn't add this support to LiveQuery). Nevertheless, I saw this: #4231. So LiveQuery supports Pointers, that is why I added a pointer column in my class Message to my class Chat. Then I try to do:
But that doesn't work at all, I'm not getting any update from parse-server. Can you help me?
Greetings!!
The text was updated successfully, but these errors were encountered: