Project:RedirectionScript: Difference between revisions

From MaRDI portal
No edit summary
No edit summary
Line 1: Line 1:
== SPARQL queries ==
== SPARQL queries ==
=== Count number of items that redirect to another item ===
<syntaxhighlight lang="sparql">
SELECT (COUNT (DISTINCT ?o) AS ?count)
WHERE
{
  ?o owl:sameAs ?sa .
}
</syntaxhighlight>

Revision as of 15:22, 29 February 2024

SPARQL queries

Count number of items that redirect to another item

SELECT (COUNT (DISTINCT ?o) AS ?count)
WHERE
{
   ?o owl:sameAs ?sa .
}