query-05d5c682aa725110b177b529f5284775

rq turtle/ttl

title:Label containing SELECT ?q ?orcid WHERE { ?q rdfs:label "Stefano Bargioni"@en . OPTIONAL { ?q wdt:P496 ?orcid . } }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#title:Label containing
SELECT ?q ?orcid 
WHERE {
  ?q rdfs:label "Stefano Bargioni"@en .
  OPTIONAL { ?q wdt:P496 ?orcid . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?orcid"):::projected v1("?q"):::projected c2([sStefano Bargioni^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal v1 --"rdfs:label"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P496".-> v2 end