-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery
45 lines (45 loc) · 2.13 KB
/
query
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
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> ?provider.
?provider rdfs:label ?provider_label.
?s <https://artresearch.net/resource/fr/Work_influenced_by_Artist> ?influence.
?influence rdfs:label ?influence_label.
} WHERE {
{
?s <https://artresearch.net/custom/has_provider> <https://artresearch.net/resource/zeri/source/Zeri>.
?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/zeri/type/4F6A2899-2950-328C-B172-54AD813EE993>.
} UNION {
?s <https://artresearch.net/custom/has_provider> <https://artresearch.net/resource/itatti/source/ITatti>.
?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/itatti/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/custom/has_provider> ?provider.
?provider rdfs:label ?provider_label.
}
OPTIONAL {
?s <https://artresearch.net/resource/fr/Work_influenced_by_Artist> ?influence.
?influence rdfs:label ?influence_label.
}
} LIMIT 100