query-d87a8cee58643dd6f4474223e385784c

rq turtle/ttl

Tim, a physicist

SELECT ?item ?itemLabel ?statements WHERE { ?item wdt:P106 wd:Q169470; #Occupation -> physicist rdfs:label ?itemLabel; wikibase:statements ?statements. # Number of statements FILTER(LANG(?itemLabel) = "en"). FILTER(CONTAINS(?itemLabel, "Tim")). }ORDER BY DESC(?statements)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# Tim, a physicist

SELECT ?item ?itemLabel ?statements WHERE {
  ?item wdt:P106 wd:Q169470;  #Occupation -> physicist
        rdfs:label ?itemLabel;
        wikibase:statements ?statements. # Number of statements
          FILTER(LANG(?itemLabel) = "en").
          FILTER(CONTAINS(?itemLabel, "Tim")).
}ORDER BY DESC(?statements)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v2("?itemLabel"):::projected v1("?statements"):::projected c4(["wd:Q169470"]):::iri f0[["contains(?itemLabel,'Tim')"]] f0 --> v2 f1[["?itemLabel = 'en'"]] f1 --> v2 v3 --"wdt:P106"--> c4 v3 --"rdfs:label"--> v2 v3 --"wikibase:statements"--> v1