Skip to content

Instantly share code, notes, and snippets.

@antoniogarrote
Created September 8, 2016 16:09
Show Gist options
  • Save antoniogarrote/574a8ec785ea70108dab354a841aab5e to your computer and use it in GitHub Desktop.
Save antoniogarrote/574a8ec785ea70108dab354a841aab5e to your computer and use it in GitHub Desktop.
PREFIX todos: <http://todosapp.com/api/vocab#>
SELECT ?name (COUNT(?todo) AS ?todos)
WHERE {
?user todos:name ?name .
?todo todos:user ?user
}
GROUP BY ?name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment