Perform a load (download of remote URI) of the resource into the graph
The document type is optional but should be specified if it can't be guessed or got from the HTTP headers.
string $format Optional format of the data (eg. rdfxml):
public function load($format = null) {
$this
->checkHasGraph();
return $this->graph
->load($this->uri, $format);
}