-
Notifications
You must be signed in to change notification settings - Fork 19
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
Combination of DESCRIBE and CONSTRUCT #73
Comments
Would the use case be adequately addressed by allowing a query to consist of multiple graph-producing queries? PREFIX ...
DESCRIBE ...
WHERE {...};
CONSTRUCT {...}
WHERE {...} If that is not sufficient, and a combination of CONSTRUCT {
DESCRIBE ?s
?s :prop "value"
}
WHERE {
?s ...
}
|
@kasei Do you mean as an s/p/o table? Why would we want that? |
@cygri because it would give you access to the data being produced by the |
Why?
DESCRIBE
is useful for getting resource descriptions, without having to provide a template as inCONSTRUCT
.However sometimes the use case requires adding just a few computed values to the description.
Previous work
None that I know of.
Proposed solution
Considerations for backward compatibility
Won't work out-of-the box on SPARQL 1.1 processors, but could be combined from
and
The text was updated successfully, but these errors were encountered: