Last active
December 21, 2015 04:19
-
-
Save indeyets/6248757 to your computer and use it in GitHub Desktop.
SPARQL. Resource pagination example. This will return 10 first resources
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CONSTRUCT { | |
?s ?p ?o | |
} | |
where { | |
?s ?p ?o . | |
{ | |
select distinct ?s where {?s [] []} limit 10 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment