-
Notifications
You must be signed in to change notification settings - Fork 5
/
Q16-expert.sparql
105 lines (104 loc) · 4.22 KB
/
Q16-expert.sparql
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
PREFIX swrc: <http://swrc.ontoware.org/ontology#>
PREFIX yagoinfo: <http://yago-knowledge.org/resource/infobox/en/>
PREFIX dcterm: <http://purl.org/dc/terms/>
PREFIX yago: <http://yago-knowledge.org/resource/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dbpr: <http://dbpedia.org/resource/>
PREFIX dblprc: <http://dblp.l3s.de/d2r/resource/conferences/>
PREFIX dbpp: <http://dbpedia.org/property/>
PREFIX dbpo: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
SELECT DISTINCT *
WHERE
{ { { SELECT DISTINCT ?name1 ?paper ?author ?date
WHERE
{ GRAPH <http://dbpedia.org>
{ ?person1 rdf:type dbpo:Person ;
dbpp:birthPlace ?country1 ;
dbpp:name ?name1 ;
dbpp:spouse ?spouse
FILTER regex(str(?country1), "USA")
}
OPTIONAL
{ GRAPH <http://dblp.l3s.de>
{ ?paper dc:creator ?author ;
dcterm:issued ?date .
?author rdfs:label ?name1
FILTER ( year(xsd:dateTime(?date)) >= 2015 )
}
}
OPTIONAL
{ GRAPH <http://yago-knowledge.org/>
{ ?person2 rdf:type ?p ;
yagoinfo:name ?name2 ;
yago:isCitizenOf ?country2 .
?p rdfs:label ?label
FILTER ( ( ?label = "person"@eng ) && ( ?country2 = yago:United_States ) )
}
}
}
}
UNION
{ SELECT *
WHERE
{ GRAPH <http://dblp.l3s.de>
{ ?paper dc:creator ?author ;
dcterm:issued ?date .
?author rdfs:label ?name1
FILTER ( year(xsd:dateTime(?date)) >= 2015 )
}
OPTIONAL
{ GRAPH <http://dbpedia.org>
{ ?person1 rdf:type dbpo:Person ;
dbpp:birthPlace ?country1 ;
dbpp:name ?name1 ;
dbpp:spouse ?spouse
FILTER regex(str(?country1), "USA")
}
}
OPTIONAL
{ GRAPH <http://yago-knowledge.org/>
{ ?person2 rdf:type ?p ;
yagoinfo:name ?name2 .
?p rdfs:label ?label ;
yago:isCitizenOf ?country2
FILTER ( ( ?label = "person"@eng ) && ( ?country2 = yago:United_States ) )
}
}
}
}
UNION
{ SELECT *
WHERE
{ GRAPH <http://yago-knowledge.org/>
{ ?person2 rdf:type ?p ;
yagoinfo:name ?name3 .
?p rdfs:label ?label ;
yago:isCitizenOf ?country2
FILTER ( ( ?label = "person"@eng ) && ( ?country2 = yago:United_States ) )
}
OPTIONAL
{ GRAPH <http://dblp.l3s.de>
{ ?paper dc:creator ?author ;
dcterm:issued ?date .
?author rdfs:label ?name3
FILTER ( year(xsd:dateTime(?date)) >= 2015 )
}
}
OPTIONAL
{ GRAPH <http://dbpedia.org>
{ ?person1 rdf:type dbpo:Person ;
dbpp:birthPlace ?country1 ;
dbpp:name ?name1 ;
dbpp:spouse ?spouse
FILTER regex(str(?country1), "USA")
}
}
}
}
}
}
LIMIT 1000000