Closed
Description
As noted in #143, the following inputs should create named graphs, but don't:
{
"@context": {
"@version": 1.1,
"@vocab": "http://example.org/",
"input": {"@container": "@graph"}
},
"input": [{
"@id": "ex:someIdentifier",
"@graph": [
{"value": "x"},
{"value": "y"}
]
}]
}
and
{
"@context": {
"@version": 1.1,
"@vocab": "http://example.org/",
"input": {"@container": "@graph"}
},
"input": [{
"@graph": [
{"value": "x"},
{"value": "y"}
]
}]
}