@@ -1168,17 +1168,17 @@ <h5>DELETE WHERE</h5>
1168
1168
< section id ="load ">
1169
1169
< h4 > LOAD</ h4 >
1170
1170
< p >
1171
- The `LOAD` operation reads an RDF document from a IRI and inserts triples
1172
- into the graphs of the dataset in the < a href ="#defn_graphStore "> Graph Store</ a > .
1171
+ The `LOAD` operation reads an RDF document from an IRI and inserts triples
1172
+ from the document into the < a href ="#defn_graphStore "> Graph Store</ a > .
1173
1173
</ p >
1174
1174
1175
1175
< pre class ="defn nohighlight "> < strong > LOAD</ strong > ( < strong > SILENT</ strong > )? < em > < a
1176
1176
data-cite ="SPARQL12-QUERY#rIRIREF "> IRIref_from</ a > </ em > ( < strong > INTO GRAPH</ strong > < em > < a
1177
1177
data-cite ="SPARQL12-QUERY#rIRIREF "> IRIref_to</ a > </ em > )?</ pre >
1178
1178
1179
- < p > < em > IRIref_from</ em > specifies the IRI of a document such that a store will be able to
1180
- identify, locate and read the document. The most common form of IRIs will be URLs with
1181
- the https and http IRI schemes.
1179
+ < p > < em > IRIref_from</ em > specifies the IRI of a document, such that a store will be able to
1180
+ identify, locate, and read the document. The most common IRIs will be URLs in
1181
+ the ` https` and ` http` IRI schemes.
1182
1182
</ p >
1183
1183
1184
1184
< p > If a destination graph (< i > IRIref_to</ i > ) is specified by `INTO GRAPH`, then the
@@ -1190,36 +1190,33 @@ <h4>LOAD</h4>
1190
1190
< a data-cite ="RDF12-CONCEPTS#dfn-rdf-graph "> RDF Graph</ a > .
1191
1191
This graph is
1192
1192
< a data-cite ="RDF12-SEMANTICS#dfn-merging "> merged</ a > into the destination
1193
- graph in the graph store..
1193
+ graph in the graph store.
1194
1194
</ p >
1195
1195
< p >
1196
- If no destination graph IRI is specified by `INTO`, then the RDF document is retrived
1196
+ If no destination graph IRI is specified by `INTO`, then the RDF document is retrieved
1197
1197
and parsed into an < a data-cite ="RDF12-CONCEPTS#dfn-rdf-dataset "> RDF Dataset</ a > .
1198
1198
This dataset is < a data-cite ="RDF12-SEMANTICS#dfn-rdf-dataset-merge "> merged</ a > into the
1199
1199
< a href ="#defn_graphStore "> graph store</ a > viewed as a mutable
1200
1200
< a data-cite ="SPARQL12-QUERY#sparqlDataset "> RDF Dataset</ a > .
1201
1201
</ p >
1202
1202
1203
1203
< p >
1204
- In the case where no RDF data can be retrieved (as opposed to the empty graph being retrieved)
1205
- from the IRI denoted by < em > IRIref_from</ em > , or in case the retrieval method returns an
1206
- error (such as, for instance an HTTP error code), the SPARQL 1.2 Update service SHOULD
1207
- return failure and the status of the Graph Store SHOULD remain in the same status as
1208
- prior to the request; in case the keyword `SILENT` is present, however, the
1209
- operation will still return success and the status of the Graph Store is not specified
1210
- by the present document: implementations may create the destination graph or not and
1211
- partially load data, in case of a transmission error where partial data has been
1212
- received (which itself may be legal RDF).
1204
+ If no RDF data can be retrieved (as opposed to an empty graph being retrieved) from the
1205
+ IRI denoted by < em > IRIref_from</ em > , or in case the retrieval method returns an error
1206
+ (such as, for instance an HTTP error code), the SPARQL 1.2 Update service SHOULD return
1207
+ failure and the status of the Graph Store SHOULD remain in the same status as prior to
1208
+ the request. However, if the the keyword `SILENT` is present, operation will return
1209
+ success, rather than failure, and the status of the Graph Store is is not specified.
1213
1210
</ p >
1214
1211
1215
1212
< div class ="note " id ="context-triples ">
1216
1213
< p >
1217
- Some RDF syntaxes, such as [[[JSON-LD11]]], is often used for data which
1218
- is a single graph, with no graph name. [[[RDF12-N-QUADS]]] may be used as a
1214
+ Some RDF syntaxes, such as [[[JSON-LD11]]], are often used to serialize
1215
+ a single graph with no graph name.
1216
+ [[[RDF12-N-QUADS]]] may be used as a
1219
1217
database dump format for a triple store with the data only in the default graph.
1220
- In both cases, this is not known until the entire RDF document content is parsed.
1221
1218
When the `LOAD` operation has an `INTO GRAPH` clause, it is an error if
1222
- named graphs are encountered.
1219
+ named graphs are encountered when parsing the RDF document .
1223
1220
</ p >
1224
1221
</ div >
1225
1222
</ section >
@@ -1608,8 +1605,8 @@ <h4>Load Operation</h4>
1608
1605
< div class ="defn ">
1609
1606
< p > < strong > < span class ="doc-ref " id ="defn_loadOperation "> Definition: Load Operation</ span > </ strong > </ p >
1610
1607
< p >
1611
- A < a href ="#load "> Load Operation</ a > OpLoad is an Update Operation in which new
1612
- triples (from a remote graph or dataset) are added in the Graph Store, either in the
1608
+ A < a href ="#load "> Load Operation</ a > ` OpLoad` is an Update Operation in which new
1609
+ triples (from a remote graph or dataset) are added to the Graph Store, either in the
1613
1610
default slot or in a named slot, if specified.
1614
1611
</ p >
1615
1612
@@ -1619,18 +1616,21 @@ <h4>Load Operation</h4>
1619
1616
1620
1617
< p > where</ p >
1621
1618
< ul >
1622
- < li > The operation " dataset ( < em > documentIRI</ em > )" is a function returning the RDF dataset serialized by the
1623
- RDF document</ li >
1624
- < li > The operation " graph ( < em > documentIRI</ em > )" is a function returning the RDF graph serialized by the
1625
- RDF document</ li >
1619
+ < li > The operation < code > dataset ( < em > documentIRI</ em > )</ code > is a function
1620
+ returning the RDF dataset serialized by the RDF document</ li >
1621
+ < li > The operation < code > graph ( < em > documentIRI</ em > )</ code > is a function
1622
+ returning the RDF graph serialized by the RDF document</ li >
1626
1623
< li >
1627
- The operation < a data-cite ="RDF12-SEMANTICS#dfn-rdf-dataset-merge "> dataset-merge</ a >
1628
- combines the Graph Store GS with the given dataset constructed as shown
1624
+ The operation `dataset-merge` combines the Graph Store GS with the given
1625
+ dataset using the
1626
+ < a data-cite ="RDF12-SEMANTICS#dfn-rdf-dataset-merge "> dataset merge operation</ a >
1629
1627
</ li >
1630
1628
</ ul >
1631
- < p > Blank nodes present in the retrieved graph or dataset are "standardized apart"; i.e.,
1632
- blank nodes from a loaded graph or dataset need to be disjoint with the blank nodes
1633
- already present in the Graph Store GS.
1629
+ < p >
1630
+ Blank nodes present in the retrieved graph or dataset are
1631
+ "standardized apart"; i.e., blank nodes from a loaded graph or
1632
+ dataset are disjoint from the blank nodes already present in the
1633
+ Graph Store GS.
1634
1634
</ p >
1635
1635
</ div >
1636
1636
</ section >
0 commit comments