Get all resources for a property of a resource
This method will return an empty array if the resource does not has any resources for that property.
string $resource The URI of the resource (e.g. http://example.com/joe#me):
string $property The name of the property (e.g. foaf:name):
array An array of values associated with the property
public function allResources($resource, $property) {
return $this
->all($resource, $property, 'resource');
}