query-27dfe2e43a366659eadd8ed139da10e3
Publication, with an AFD_pub_id SELECT ?item ?itemLabel ?AFD_id ?afd_URL WHERE { ?item wdt:P6982 ?AFD_id. BIND(CONCAT("https://biodiversity.org.au/afd/publication/",STR(?AFD_id)) AS ?afd_URL) SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Publication, with an AFD_pub_id
SELECT ?item ?itemLabel ?AFD_id ?afd_URL WHERE {
?item wdt:P6982 ?AFD_id.
BIND(CONCAT("https://biodiversity.org.au/afd/publication/",STR(?AFD_id)) AS ?afd_URL)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?AFD_id"):::projected
v3("?afd_URL"):::projected
v1("?item"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
v1 --"wdt:P6982"--> v2
bind0[/"concat('https://biodiversity.org.au/afd/publication/',str(?AFD_id))"/]
v2 --o bind0
bind0 --as--o v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end