-
Notifications
You must be signed in to change notification settings - Fork 0
/
get-dbpedia-diseases.n3
72 lines (64 loc) · 1.59 KB
/
get-dbpedia-diseases.n3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
@prefix http: <http://www.w3.org/2011/http#> .
@prefix httpm: <http://www.w3.org/2011/http-methods#> .
############################################################################
# get all dcterms:subject of category ?y
{
?x dcterms:subject ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?y .
} .
# get all classes of ?x
{
?x rdf:type ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?y .
} .
# get all elements connected by skos:related
{
?x <http://www.w3.org/2004/02/skos/core#related> ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?x .
} .
{
?x <http://www.w3.org/2004/02/skos/core#related> ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?y .
} .
# get all elements connected by wikiPageDisambiguates
{
?x <http://dbpedia.org/ontology/wikiPageDisambiguates> ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?x .
} .
{
?x <http://dbpedia.org/ontology/wikiPageDisambiguates> ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?y .
} .
###########################################################################
#entry point for the crawler
{
[] http:mthd httpm:GET ;
http:requestURI <http://dbpedia.org/resource/Rickettsiosis> .
}
# get all elements connected by skos:broader
{
<http://dbpedia.org/resource/Rickettsiosis> ?r ?x .
?x <http://www.w3.org/2004/02/skos/core#broader> ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?x .
} .
{
<http://dbpedia.org/resource/Rickettsiosis> ?r ?x .
?x <http://www.w3.org/2004/02/skos/core#broader> ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?y .
} .