-
-
Notifications
You must be signed in to change notification settings - Fork 206
IncludeObject not working with liveQuery #424
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
Due to server limitations, LiveQuery does not support includes. As you want to show the user a list, you might want to have a look at the ParseLiveListWidget. In case you want to use LiveQuery, you have to fetch the extra data manually. Edit: The "due to server limitations" comment is based on this issue. |
Any update on IncludeObject with liveQuery please? |
@prakash-indorkar
Example: Parse.Cloud.afterLiveQueryEvent('Order', async (request) => {
const object = request.object;
const user = object.get("user"); //pointer to _User
await user.fetch();
}); |
Use LiveQuery Triggers em Cloud Code https://docs.parseplatform.org/cloudcode/guide/#livequery-triggers Closed. No activity in the last 15 days. |
Hello,
I was trying out includeObject method with my livequery in one of my project. Also, I am using flutter parse_server_sdk latest version 1.0.26.
What i want is i have a list of events. So whenever a new event is added in my database then it should trigger the subscription method. I have used following code and it works as well. But, only thing i have issue with is i don't get the includedobject i have added in QueryBuilder.
Output :
I have also evaluated the expression. But, there is only limited pointer data to "tblOrganizerId". I am not getting whole data of that table.
So how can i achieve that?
Thanks.
The text was updated successfully, but these errors were encountered: