-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect chapters #309
Comments
This was referenced Aug 5, 2019
The original SPARQL query does not return any results anymore. SELECT DISTINCT(?left) ?lpage STR(?lchapter) AS ?lchapter ?rpage STR(?rchapter) AS ?rchapter ?right
FROM sniko:bb
{
?left a [rdfs:subClassOf meta:Top];
bb:page ?lpage;
meta:chapter ?lchapter.
?right a [rdfs:subClassOf meta:Top];
bb:page ?rpage;
meta:chapter ?rchapter.
FILTER(xsd:integer(?lpage)<xsd:integer(?rpage))
FILTER(xsd:integer(?lchapter)>xsd:integer(?rchapter))
} ORDER BY ASC(xsd:integer(?lpage)) Still no results, but many appear when removing the filter, so this seems to be resolved. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See also #296.
See also snikproject/graph#214.
The following SPARQL query selects pairs of classes where the left one has a smaller page number but a larger chapter than the right one, there must be an error in one of them for each such pair.
The text was updated successfully, but these errors were encountered: