-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathalignements OPENEDITION_en_continu
59 lines (44 loc) · 1.54 KB
/
alignements OPENEDITION_en_continu
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
Il existe deux graphes pour OpenEdition.
<http://data.idref.fr/openedition/journals>
<http://data.idref.fr/openedition/books>
select * where {
graph <http://data.idref.fr/openedition/journals>
{?doc dcterms:bibliographicCitation ?citation.
?doc ?role ?idref.
OPTIONAL{?doc dc:date ?datePub.}
OPTIONAL{?doc bibo:doi ?doi.}
FILTER(regex(str(?idref), "http://www.idref.fr"))
}}
select count(*) where {
graph <http://data.idref.fr/openedition/journals>
{?doc dcterms:bibliographicCitation ?citation.
?doc ?role ?idref.
OPTIONAL{?doc dc:date ?datePub.}
OPTIONAL{?doc bibo:doi ?doi.}
FILTER(regex(str(?idref), "http://www.idref.fr"))
}}
-- VARIANTES --
select * where {
?doc dcterms:bibliographicCitation ?citation.
?doc ?role ?idref.
OPTIONAL{?doc dc:date ?datePub.}
OPTIONAL{?doc bibo:doi ?doi.}
FILTER(regex(str(?idref), "http://www.idref.fr"))
FILTER(regex(str(?doc), "openedition"))
}
select count(*) where {
?doc dcterms:bibliographicCitation ?citation.
?doc ?role ?idref.
OPTIONAL{?doc dc:date ?datePub.}
OPTIONAL{?doc bibo:doi ?doi.}
FILTER(regex(str(?idref), "http://www.idref.fr"))
FILTER(regex(str(?doc), "openedition"))
}
[OBSOLETE]
Les chapitres de livres étaient dans les graphes :
<http://data.idref.fr/openedition/books>
<http://data.idref.fr/openedition/chapters/scanr> car la source est Scanr au 01/12/2023
Les articles de la plateforme Journals dans les graphes :
<http://data.idref.fr/openedition/journals>
<http://data.idref.fr/openedition/journals/retro>
<http://data.idref.fr/openedition/journals/scanr> car la source est Scanr au 01/12/2023