unity3d - Retrieve object value using pointer in Parse for Unity -
i have database schema includes 2 tables in parse: projects & layouts.
one project can have multiple layouts 1,2,3, etc.
i have created pointer in layouts schema maps projects data.
i using unity3d , given query projectobjectid (column present in projects) want find out rows correspondingly present in layouts.
public void fetchlayoutsinproject(){ var projectobjectid = "ulaueklpmo"; debug.log ("starting"); var query = parseobject.getquery ("layouts"); query = query. whereequalto("projectobjectid", projectobjectid) ; query.findasync ().continuewith (t => { availablelayouts = t.result; }); }
this doesn't work. can explain right way query parse.com pointer in unity?
Comments
Post a Comment