query-6e7719f9e18cb838531b57f6b796806b
202 (auxiliary) WFM Dictionary No.
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Sample of the citation graph for papers with "sulphasalazine" in the title.
#defaultView:Graph
SELECT ?item ?itemLabel ?paper ?paperLabel
WHERE
{
?item wdt:P31 wd:Q13442814.
?item wdt:P1476 ?title
OPTIONAL { ?item wdt:P2860 ?paper. }
FILTER regex (?title, "sulphasalazine")
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
LIMIT 25
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v3("?paper"):::projected
v1("?title")
c3(["wd:Q13442814"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
f0[["regex(?title,'sulphasalazine')"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P1476"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P2860".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end