blob: 8e7dede28d520dc8b015817a20667d2295886019 [file] [log] [blame]
PREFIX : <http://example/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?p (count(*) AS ?count)
{
?x rdf:type :X .
?x :p ?p .
}
GROUP BY ?p
HAVING (count(*) = 1)