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
https://spex.zazuko.com/#/?url=https://lindas.admin.ch/query&graph=https://lindas.admin.ch/foj/zefix&prefixes=admin:https://schema.ld.admin.ch/&forceIntrospection=false
This is a good example to investigate "Introspection" issues. Because the Schema is very simple.
Just a small class count ...
SELECT ?class (count(?s) as ?count) FROM <https://lindas.admin.ch/foj/zefix> WHERE { ?s a ?class . } GROUP BY ?class order by ?count
SELECT ?p (COUNT(?s) AS ?count) FROM <https://lindas.admin.ch/foj/zefix> WHERE { { SELECT DISTINCT ?p WHERE { ?s ?p ?o. } } ?s ?p ?o . } GROUP BY ?p ORDER BY DESC(?count)
The introspection query is like this ...
SELECT DISTINCT ?cls ?property ?linktype ?datatype FROM <https://lindas.admin.ch/foj/zefix> WHERE { ?subject a ?cls . ?subject ?property ?object . # <--- this is a killer OPTIONAL { ?object a ?linktype . } BIND(DATATYPE(?object) AS ?datatype) }
For this Zefix dataset the line "this is a killer" is a bit too much.
The text was updated successfully, but these errors were encountered:
We can try to use SPARQL Sample
Sorry, something went wrong.
Probably easier to make it a two step process. 1th cls, 2nd property?
No branches or pull requests
https://spex.zazuko.com/#/?url=https://lindas.admin.ch/query&graph=https://lindas.admin.ch/foj/zefix&prefixes=admin:https://schema.ld.admin.ch/&forceIntrospection=false
This is a good example to investigate "Introspection" issues. Because the Schema is very simple.
Ontology
Classes
Just a small class count ...
Predicates
Introspection
The introspection query is like this ...
For this Zefix dataset the line "this is a killer" is a bit too much.
The text was updated successfully, but these errors were encountered: