Skip to content

Instantly share code, notes, and snippets.

@indeyets
Last active December 21, 2015 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indeyets/6248757 to your computer and use it in GitHub Desktop.
Save indeyets/6248757 to your computer and use it in GitHub Desktop.
SPARQL. Resource pagination example. This will return 10 first resources
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