-
Notifications
You must be signed in to change notification settings - Fork 0
/
queryMarburg
47 lines (47 loc) · 2.48 KB
/
queryMarburg
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
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX crmdig: <http://www.ics.forth.gr/isl/CRMdig/>
PREFIX custom: <https://artresearch.net/custom/>
CONSTRUCT {
?s custom:has_image ?image.
?s rdfs:label ?label.
?s <https://artresearch.net/resource/fr/Work_kept_by_Institution> ?institution.
?institution rdfs:label ?institution_label.
?s <https://artresearch.net/resource/fr/Work_created_from_Artist> ?artist.
?artist rdfs:label ?artist_label.
?s <https://artresearch.net/custom/has_provider> <https://artresearch.net/resource/marburg/source/Marburg>.
<https://artresearch.net/resource/marburg/source/Marburg> rdfs:label "Marburg".
?s <https://artresearch.net/resource/fr/Work_influenced_by_Artist> ?influence.
?influence rdfs:label ?influence_label.
?s <https://artresearch.net/resource/fr/Work_creation_date_start> ?start.
?s <https://artresearch.net/resource/fr/Work_creation_date_end> ?end.
?image <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> <https://artresearch.net/resource/marburg/type/4F6A2899-2950-328C-B172-54AD813EE993>.
} WHERE {
?s <https://artresearch.net/custom/has_provider> <https://artresearch.net/resource/marburg/source/Marburg>.
?s <https://artresearch.net/resource/fr/Work_depicted_by_Photo> ?photo.
?photo <http://www.cidoc-crm.org/cidoc-crm/P129i_is_subject_of> ?image.
?image <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> <https://artresearch.net/resource/marburg/type/4F6A2899-2950-328C-B172-54AD813EE993>.
?s rdfs:label ?label.
OPTIONAL {
?s <https://artresearch.net/resource/fr/Work_kept_by_Institution> ?institution.
?institution rdfs:label ?institution_label.
}
OPTIONAL {
?s <https://artresearch.net/resource/fr/Work_created_from_Artist> ?artist.
?artist rdfs:label ?artist_label.
}
OPTIONAL {
?s <https://artresearch.net/resource/fr/Work_influenced_by_Artist> ?influence.
?influence rdfs:label ?influence_label.
}
OPTIONAL {
$s <http://www.cidoc-crm.org/cidoc-crm/P108i_was_produced_by> ?production .
?production <http://www.cidoc-crm.org/cidoc-crm/P4_has_time-span> $timespan .
?timespan <http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> $start .
}
OPTIONAL {
$s <http://www.cidoc-crm.org/cidoc-crm/P108i_was_produced_by> ?production .
?production <http://www.cidoc-crm.org/cidoc-crm/P4_has_time-span> $timespan .
?timespan <http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> $end .
}
} LIMIT 100