fix remove doc with title in en only
Browse files
query.j2
CHANGED
@@ -25,8 +25,7 @@ WHERE
|
|
25 |
}
|
26 |
graph ?eg {
|
27 |
?exp cdm:expression_belongs_to_work ?work .
|
28 |
-
?exp cdm:expression_title ?title_
|
29 |
-
filter(lang(?title_)="en" or lang(?title_)="eng" or lang(?title_)='' ).
|
30 |
?exp cdm:expression_uses_language ?lg.
|
31 |
graph ?lgc { ?lg dc:identifier ?langIdentifier .}
|
32 |
}
|
@@ -52,4 +51,5 @@ LIMIT 10000000
|
|
52 |
}
|
53 |
}
|
54 |
GROUP BY ?work ?date ?langIdentifier
|
55 |
-
OFFSET 0
|
|
|
|
25 |
}
|
26 |
graph ?eg {
|
27 |
?exp cdm:expression_belongs_to_work ?work .
|
28 |
+
?exp cdm:expression_title ?title_ .
|
|
|
29 |
?exp cdm:expression_uses_language ?lg.
|
30 |
graph ?lgc { ?lg dc:identifier ?langIdentifier .}
|
31 |
}
|
|
|
51 |
}
|
52 |
}
|
53 |
GROUP BY ?work ?date ?langIdentifier
|
54 |
+
OFFSET 0
|
55 |
+
|