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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Sparql endpoint: https://fuseki.matolab.org/openbismantic/sparql
File and line:
KnowledgeUI/static/sunburst_utilities.js
Line 195 in a1eed1e
Query: PREFIX owl: http://www.w3.org/2002/07/owl# PREFIX rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema# SELECT ?c (MIN(?label) AS ?label1) ?superclass (count(?x) as ?count) WHERE { ?x a ?c . OPTIONAL {?c rdfs:label ?label} . ?c rdfs:subClassOf ?superclass. filter (?c != ?superclass && !exists {?c rdfs:subClassOf ?othersuper. ?othersuper rdfs:subClassOf ?superclass. filter(?c != ?othersuper && ?othersuper != ?superclass)}) } group by ?c ?label1 ?superclass HAVING(?count > 1) order by desc(?count)
The text was updated successfully, but these errors were encountered:
horstf
No branches or pull requests
Sparql endpoint: https://fuseki.matolab.org/openbismantic/sparql
File and line:
KnowledgeUI/static/sunburst_utilities.js
Line 195 in a1eed1e
Query:
PREFIX owl: http://www.w3.org/2002/07/owl#
PREFIX rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema#
SELECT ?c (MIN(?label) AS ?label1) ?superclass (count(?x) as ?count) WHERE {
?x a ?c .
OPTIONAL {?c rdfs:label ?label} .
?c rdfs:subClassOf ?superclass.
filter (?c != ?superclass &&
!exists {?c rdfs:subClassOf ?othersuper. ?othersuper rdfs:subClassOf ?superclass.
filter(?c != ?othersuper && ?othersuper != ?superclass)})
} group by ?c ?label1 ?superclass HAVING(?count > 1) order by desc(?count)
The text was updated successfully, but these errors were encountered: