We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
I am trying to implement the integrity constraints from the RDF Data Cube Vocabulary and I encountered some strange ASK behaviours.
If you want to reproduce the behaviour, I used this Data Cube with rdfstore-js and for revalidation I used the virtuoso store.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX qb: <http://purl.org/linked-data/cube#> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX owl: <http://www.w3.org/2002/07/owl#> ASK { ?obs qb:dataSet/qb:structure ?dsd ; qb:measureType ?measure ; ?omeasure [] . ?dsd qb:component/qb:componentProperty qb:measureType; qb:component/qb:componentProperty ?omeasure . ?omeasure a qb:MeasureProperty . FILTER (?omeasure != ?measure) }
Should produce a false value (tested with virtuoso) but rdf-store returned an error: TypeError: callback is not a function
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX qb: <http://purl.org/linked-data/cube#> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX owl: <http://www.w3.org/2002/07/owl#> ASK { ?dim a qb:DimensionProperty . FILTER NOT EXISTS { ?dim rdfs:range [] } }
Should produce a true value (tested with virtuoso) but rdf-store returned an false.
Is there something wrong with the queries, are there some unsupported features?
Thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I am trying to implement the integrity constraints from the RDF Data Cube Vocabulary and I encountered some strange ASK behaviours.
If you want to reproduce the behaviour, I used this Data Cube with rdfstore-js and for revalidation I used the virtuoso store.
Query 1 (IC-16)
Should produce a false value (tested with virtuoso) but rdf-store returned an error: TypeError: callback is not a function
Query 2 (IC-4)
Should produce a true value (tested with virtuoso) but rdf-store returned an false.
Is there something wrong with the queries, are there some unsupported features?
Thank you
The text was updated successfully, but these errors were encountered: