Fix nquads output for graph w/bnode ID.
This commit is contained in:
parent
2760055bd2
commit
7cf02461cc
10
jsonld.php
10
jsonld.php
|
@ -1042,7 +1042,15 @@ class JsonLdProcessor {
|
||||||
|
|
||||||
// graph
|
// graph
|
||||||
if($g !== null) {
|
if($g !== null) {
|
||||||
$quad .= " <{$g->nominalValue}>";
|
if($g->interfaceName === 'IRI') {
|
||||||
|
$quad .= " <{$g->nominalValue}>";
|
||||||
|
}
|
||||||
|
else if(bnode) {
|
||||||
|
$quad += ' _:g';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$quad += " {$g->nominalValue}";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$quad .= " .\n";
|
$quad .= " .\n";
|
||||||
|
|
Loading…
Reference in a new issue