mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 22:09:29 +08:00
8 lines
No EOL
244 B
Text
8 lines
No EOL
244 B
Text
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
SELECT ?name (COUNT(?friend) AS ?count)
|
|
WHERE {
|
|
?person foaf:name ?name .
|
|
?person foaf:knows ?friend .
|
|
} GROUP BY ?person ?name
|
|
|
|
# From https://www.w3.org/TR/sparql11-overview/#sparql11-query |