Skip to content

Commit b2b35bf

Browse files
committed
Use Shakespeare quote.
1 parent 05a9fc9 commit b2b35bf

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

index.html

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8023,14 +8023,13 @@ <h3>Graph Containers</h3>
80238023
"@context": {
80248024
"@version": 1.1,
80258025
"@base": "http://dbpedia.org/resource/",
8026-
"id": "@id",
8027-
"isa": "@type",
8028-
****"said": {"@id": "http://example.com/said", "@container": "@graph"}****
8026+
"said": "http://example.com/said",
8027+
****"wrote": {"@id": "http://example.com/wrote", "@container": "@graph"}****
80298028
},
8030-
"id": "Epimenides",
8031-
****"said"****: {
8032-
"id": "Epimenides",
8033-
"isa": "Liar"
8029+
"@id": "Skakespeare",
8030+
****"wrote"****: {
8031+
"@id": "Richard_III_of_England",
8032+
"said": "My kingdom for a horse"
80348033
}
80358034
}
80368035
-->
@@ -8039,11 +8038,11 @@ <h3>Graph Containers</h3>
80398038
data-result-for="Implicitly named graph-original">
80408039
<!--
80418040
[{
8042-
"@id": "http://dbpedia.org/resource/Epimenides",
8043-
****"http://example.com/said"****: [{
8041+
"@id": "http://dbpedia.org/resource/Skakespeare",
8042+
****"http://example.com/wrote"****: [{
80448043
****"@graph"****: [{
8045-
"@id": "http://dbpedia.org/resource/Epimenides",
8046-
"@type": ["http://dbpedia.org/resource/Liar"]
8044+
"@id": "http://dbpedia.org/resource/Richard_III_of_England",
8045+
"http://example.com/said": [{"@value": "My kingdom for a horse"}]
80478046
}]
80488047
}]
80498048
}]
@@ -8054,8 +8053,8 @@ <h3>Graph Containers</h3>
80548053
data-to-rdf>
80558054
<thead><tr><th>Graph</th><th>Subject</th><th>Property</th><th>Value</th></tr></thead>
80568055
<tbody>
8057-
<tr><td>&nbsp;</td><td>http://dbpedia.org/resource/Epimenides</td><td>http://example.com/said</td><td>_:b0</td></tr>
8058-
<tr><td>_:b0</td><td>http://dbpedia.org/resource/Epimenides</td><td>rdf:type</td><td>http://dbpedia.org/resource/Liar</td></tr>
8056+
<tr><td>_:b0</td><td>http://dbpedia.org/resource/Richard_III_of_England</td><td>http://example.com/said</td><td>My kingdom for a horse</td></tr>
8057+
<tr><td>&nbsp;</td><td>http://dbpedia.org/resource/Skakespeare</td><td>http://example.com/wrote</td><td>_:b0</td></tr>
80598058
</tbody>
80608059
</table>
80618060
<pre class="trig nohighlight"
@@ -8066,20 +8065,19 @@ <h3>Graph Containers</h3>
80668065
<!--
80678066
@prefix dbp: <http://dbpedia.org/resource/> .
80688067
@prefix ex: <http://example.com/> .
8069-
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
80708068
8071-
dbp:Epimenides ex:said _:b0 .
8069+
dbp:Skakespeare ex:wrote _:b0 .
80728070
80738071
_:b0 {
8074-
dbp:Epimenides a dbp:Liar .
8072+
dbp:Richard_III_of_England ex:said "My kingdom for a horse" .
80758073
}
80768074
-->
80778075
</pre>
80788076
</aside>
80798077

80808078
<p>The example above expresses an anonymously <a>named graph</a>
80818079
making a statement. The <a>default graph</a> includes a statement
8082-
saying that the <a>subject</a> made that statement.
8080+
saying that the <a>subject</a> wrote that statement.
80838081
This is an example of separating statements into a <a>named graph</a>, and then
80848082
making assertions about the statements contained within that <a>named graph</a>.</p>
80858083

0 commit comments

Comments
 (0)