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
Using inspect shows what is done for automatic labelling:
PREFIX wdt: <http://www.wikidata.org/prop/direct/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX wikibase: <http://wikiba.se/ontology#> SELECT ?s ?s_label ?o WHERE { { SELECT ?s ?o WHERE { ?s wdt:P569 ?o . FILTER ISBLANK (?o) } ORDER BY ?s } ?s rdfs:label ?s_label FILTER(LANG(?s_label) = "en") } LIMIT 10
but not all items have English labels so the addition should be wrapped in OPTIONAL.
The text was updated successfully, but these errors were encountered:
It also might be nice to use Label instead of _label to better match what the WDQS label service does.
Sorry, something went wrong.
No branches or pull requests
Using inspect shows what is done for automatic labelling:
but not all items have English labels so the addition should be wrapped in OPTIONAL.
The text was updated successfully, but these errors were encountered: