Skip to content

Commit

Permalink
Added endpoint_in_url example
Browse files Browse the repository at this point in the history
  • Loading branch information
c-martinez committed May 2, 2020
1 parent aaaf333 commit 4baa248
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions endpoint_url.rq
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#+ endpoint: https://dbpedia.org/sparql
#+ endpoint_in_url: False

PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX schema: <http://schema.org/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT ?band ?album ?genre WHERE {
?band rdf:type dbo:Band .
?album rdf:type schema:MusicAlbum .
?band dbo:genre ?genre .
?album dbo:artist ?band .
} LIMIT 100

0 comments on commit 4baa248

Please sign in to comment.