-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove endpoint from queries and add to endpoint.txt
- Loading branch information
1 parent
4baa248
commit 7289823
Showing
10 changed files
with
19 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#+ description: Extended description of my query/operation. | ||
#+ This can be a more extensive than the summary and in can span | ||
#+ multiple lines. | ||
#+ | ||
#+ Descriptions support (to some extent) [CommonMark](https://commonmark.org/help/). | ||
|
||
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 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://dbpedia.org/sparql |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#+ endpoint: https://dbpedia.org/sparql | ||
#+ endpoint_in_url: False | ||
|
||
PREFIX dbo: <http://dbpedia.org/ontology/> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#+ endpoint: https://dbpedia.org/sparql | ||
#+ enumerate: | ||
#+ - genre: | ||
#+ - http://dbpedia.org/resource/Rock_music | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#+ endpoint: https://dbpedia.org/sparql | ||
#+ method: POST | ||
|
||
PREFIX dbo: <http://dbpedia.org/ontology/> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#+ endpoint: https://dbpedia.org/sparql | ||
#+ pagination: 5 | ||
|
||
PREFIX dbo: <http://dbpedia.org/ontology/> | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#+ endpoint: https://dbpedia.org/sparql | ||
#+ tags: | ||
#+ - group1 | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#+ endpoint: https://dbpedia.org/sparql | ||
#+ transform: { | ||
#+ "band": "?band", | ||
#+ "album": "?album", | ||
|