Urara-Blog/node_modules/.pnpm-store/v3/files/78/e0aff7bf2ec664f8c66bbbfa924f23686c43fc7b4407429447f2c6ed4162edda14a27044218a27ef32746a124854911f26cc12481e48eb81cf6c984798f7f6
2022-08-14 01:14:53 +08:00

16 lines
No EOL
851 B
Text

@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<http://example.org/alice#me> a foaf:Person .
<http://example.org/alice#me> foaf:name "Alice" .
<http://example.org/alice#me> foaf:mbox <mailto:alice@example.org> .
<http://example.org/alice#me> foaf:knows <http://example.org/bob#me> .
<http://example.org/bob#me> foaf:knows <http://example.org/alice#me> .
<http://example.org/bob#me> foaf:name "Bob" .
<http://example.org/alice#me> foaf:knows <http://example.org/charlie#me> .
<http://example.org/charlie#me> foaf:knows <http://example.org/alice#me> .
<http://example.org/charlie#me> foaf:name "Charlie" .
<http://example.org/alice#me> foaf:knows <http://example.org/snoopy> .
<http://example.org/snoopy> foaf:name "Snoopy"@en .
# From https://www.w3.org/TR/sparql11-overview/#Example