Skip to content

Instantly share code, notes, and snippets.

@jkot
Last active August 29, 2015 14:16
Show Gist options
  • Save jkot/bb8bfe5be51fa0db7309 to your computer and use it in GitHub Desktop.
Save jkot/bb8bfe5be51fa0db7309 to your computer and use it in GitHub Desktop.
SPARQL
insert data {
	GRAPH <http://jakub/graph> {
		<http://id/1> <http://example.com/ont#label> "1" .
		<http://id/1> <http://example.com/ont#label> "x" .
		<http://id/2> <http://example.com/ont#label> "2" .
	}
}

Select only one random solution if there are more matches:

select ?s sample(?o)
from <http://jakub/graph>
where {
  ?s ?p ?o.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment