View Single Post
  #4  
Old 03-22-2008, 07:07 PM
toivo toivo is offline
Junior Member
 
Join Date: Feb 2008
Location: Sydney, Australia
Posts: 3
Thumbs up Relationship query results

In a similar relationship query I would expect results from this:

Quote:
$queryResult = $sObject->queryResult[0];
$qr = $queryResult->records;
foreach (
$qr as $record2) {
$UnitPrice = $record2->fields->UnitPrice;
}

You could use one of the following to see the structure of the object:

Quote:
print_r(get_object_vars($queryResult));

var_dump($queryResult);
Regards,
toivo
Reply With Quote