query-6a77c98d691dde04be3433166993d3b8

rq turtle/ttl

Qid from article name

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?sitelink ?website
WHERE 
{
  VALUES ?sitelink {
"Admiral Group"@en
  } .
  ?article schema:about ?item ;
  schema:isPartOf <https://en.wikipedia.org/> ; 
  schema:name ?sitelink .
  ?item wdt:P856 ?website
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article") v3("?item"):::projected v1("?sitelink"):::projected v4("?website"):::projected c3([https://en.wikipedia.org/]):::iri bind0[/VALUES ?sitelink/] bind0-->v1 bind00([sAdmiral Group^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind00 --> bind0 v2 --"schema:about"--> v3 v2 --"schema:isPartOf"--> c3 v2 --"schema:name"--> v1 v3 --"wdt:P856"--> v4