public InsertDataBuilder data(URI graphUri, RDFList dataList)
{
if (graphUri == null) throw new IllegalArgumentException("INSERT DATA graph resource cannot be null");
if (dataList == null) throw new IllegalArgumentException("INSERT DATA data List cannot be null");
NamedGraph graph = getModel().createResource().
addProperty(RDF.type, SP.NamedGraph).
addProperty(SP.graphNameNode, getModel().createResource(graphUri.toString())).
as(NamedGraph.class);
return data(graph, dataList);