-
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
implement strategy for query loader #10
Comments
one possible query input format is dlquery |
… only conjunctive queries allowed
in the current commit ( 307f82b ), stuff like (live_example_property) renders a query specifiying service endpoint1 { prop some E union prop some F }, which may be correct. however, this expansion is being done at QueryExpander.createPatternFromRestriction, failing to check existence of subclasses of E in this endpoint (or others endpoints!). this inference should be integrated at createPatternFromClasses. there is an underlying pattern between somevaluesfrom and rdf:type that can be used to simplify and generalize the whole algorithm. I'm commiting as is, so the idea is not lost. |
nowadays, only a list of classes is allowed as an input query; upon specification of -query_type sparql, it would accept an sparql query instead.
implementing strategy, we would easily expand this for other query formats.
The text was updated successfully, but these errors were encountered: