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