Skip to content

Commit 93e1b8a

Browse files
committed
Use Epimenides example.
1 parent ebfc261 commit 93e1b8a

File tree

1 file changed

+19
-16
lines changed

1 file changed

+19
-16
lines changed

index.html

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8022,13 +8022,15 @@ <h3>Graph Containers</h3>
80228022
{
80238023
"@context": {
80248024
"@version": 1.1,
8025-
"name": "http://xmlns.com/foaf/0.1/name",
8026-
"quote": "http://example.com/quote",
8027-
"said": {"@id": "http://example.com/said", ****"@container": "@graph"****}
8025+
"@base": "http://dbpedia.org/resource/",
8026+
"id": "@id",
8027+
"isa": "@type",
8028+
"said": {"@id": "http://example.com/said", "@container": "@graph"}
80288029
},
8029-
"name": "Martin Luther King",
8030+
"id": "Epimenides",
80308031
"said": {
8031-
"quote": "I have a Dream."
8032+
"id": "Epimenides",
8033+
"isa": "Liar"
80328034
}
80338035
}
80348036
-->
@@ -8037,10 +8039,11 @@ <h3>Graph Containers</h3>
80378039
data-result-for="Implicitly named graph-original">
80388040
<!--
80398041
[{
8040-
"http://xmlns.com/foaf/0.1/name": [{"@value": "Martin Luther King"}],
8042+
"@id": "http://dbpedia.org/resource/Epimenides",
80418043
"http://example.com/said": [{
8042-
****"@graph"****: [{
8043-
"http://example.com/quote": [{"@value": "I have a Dream."}]
8044+
"@graph": [{
8045+
"@id": "http://dbpedia.org/resource/Epimenides",
8046+
"@type": ["http://dbpedia.org/resource/Liar"]
80448047
}]
80458048
}]
80468049
}]
@@ -8051,9 +8054,8 @@ <h3>Graph Containers</h3>
80518054
data-to-rdf>
80528055
<thead><tr><th>Graph</th><th>Subject</th><th>Property</th><th>Value</th></tr></thead>
80538056
<tbody>
8054-
<tr><td>&nbsp;</td><td>_:b0</td><td>foaf:name</td><td>Martin Luther King</td></tr>
8055-
<tr><td>_:b1</td><td>_:b2</td><td>http://example.com/quote</td><td>I have a Dream.</td></tr>
8056-
<tr><td>&nbsp;</td><td>_:b0</td><td>http://example.com/said</td><td>_:b1</td></tr>
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>
80578059
</tbody>
80588060
</table>
80598061
<pre class="trig nohighlight"
@@ -8062,13 +8064,14 @@ <h3>Graph Containers</h3>
80628064
data-transform="updateExample"
80638065
data-to-rdf>
80648066
<!--
8065-
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
8066-
@prefix ex: <http://example.com/> .
8067+
@prefix dbp: <http://dbpedia.org/resource/> .
8068+
@prefix ex: <http://example.com/> .
8069+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
80678070
8068-
[foaf:name "Martin Luther King"; ex:said _:b1] .
8071+
dbp:Epimenides ex:said _:b0 .
80698072
8070-
_:b1 {
8071-
[ex:quote "I have a Dream."] .
8073+
_:b0 {
8074+
dbp:Epimenides a dbp:Liar .
80728075
}
80738076
-->
80748077
</pre>

0 commit comments

Comments
 (0)