andrewscofield / parse.com-php-library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

retrieving child objects

opened this issue · comments

I am trying to get a query to return all of my child object data, but it doesn't seem to be including it.

I have tried the following:

$parseQuery->whereInclude('shareUser');  //shareUser is a pointer to the User table which is the data I want

--Output--

(int) 0 => object(stdClass) {
        shareUser => object(stdClass) {
            __type => 'Pointer'
            className => '_User'
            objectId => 'n6DcCs0qoz'
        }

Result: - As you can see I am still not getting the entire _User object.

not sure, but this appears to work now