Skip to content

Commit 7289823

Browse files
committed
Remove endpoint from queries and add to endpoint.txt
1 parent 4baa248 commit 7289823

File tree

10 files changed

+19
-8
lines changed

10 files changed

+19
-8
lines changed

description.rq

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#+ description: Extended description of my query/operation.
2+
#+ This can be a more extensive than the summary and in can span
3+
#+ multiple lines.
4+
#+
5+
#+ Descriptions support (to some extent) [CommonMark](https://commonmark.org/help/).
6+
7+
PREFIX dbo: <http://dbpedia.org/ontology/>
8+
PREFIX schema: <http://schema.org/>
9+
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
10+
11+
SELECT ?band ?album ?genre WHERE {
12+
?band rdf:type dbo:Band .
13+
?album rdf:type schema:MusicAlbum .
14+
?band dbo:genre ?genre .
15+
?album dbo:artist ?band .
16+
} LIMIT 100

endpoint.rq

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#+ endpoint: https://dbpedia.org/sparql
1+
#+ endpoint: https://other.default.endpoint/sparql
22

33
PREFIX dbo: <http://dbpedia.org/ontology/>
44
PREFIX schema: <http://schema.org/>

endpoint.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://dbpedia.org/sparql

endpoint_url.rq

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#+ endpoint: https://dbpedia.org/sparql
21
#+ endpoint_in_url: False
32

43
PREFIX dbo: <http://dbpedia.org/ontology/>

enumerate.rq

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#+ endpoint: https://dbpedia.org/sparql
21
#+ enumerate:
32
#+ - genre:
43
#+ - http://dbpedia.org/resource/Rock_music

method.rq

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#+ endpoint: https://dbpedia.org/sparql
21
#+ method: POST
32

43
PREFIX dbo: <http://dbpedia.org/ontology/>

pagination.rq

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#+ endpoint: https://dbpedia.org/sparql
21
#+ pagination: 5
32

43
PREFIX dbo: <http://dbpedia.org/ontology/>

summary.rq

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#+ summary: This is the summary of my query/operation
1+
#+ summary: This is the summary of my query/operation.
22

33
PREFIX dbo: <http://dbpedia.org/ontology/>
44
PREFIX schema: <http://schema.org/>

tags.rq

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#+ endpoint: https://dbpedia.org/sparql
21
#+ tags:
32
#+ - group1
43

transform.rq

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#+ endpoint: https://dbpedia.org/sparql
21
#+ transform: {
32
#+ "band": "?band",
43
#+ "album": "?album",

0 commit comments

Comments
 (0)