query-e465c7e4bdc4b8418391c6964c397745
Karya sastera berbahasa Melayu SELECT DISTINCT ?butir ?tajuk ?pengarangLabel ?tarikh_terbit WHERE { ?butir wdt:P31 wd:Q7725634 . ?butir wdt:P407 wd:Q9237 . OPTIONAL { ?butir wdt:P1476 ?tajuk. } OPTIONAL { ?butir wdt:P50 ?pengarang. } OPTIONAL { ?butir wdt:P577 ?tarikh_terbit. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ms" . } } ORDER BY ?tajuk ?tarikh_terbit
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#>
#Karya sastera berbahasa Melayu
SELECT DISTINCT ?butir ?tajuk ?pengarangLabel ?tarikh_terbit
WHERE
{
?butir wdt:P31 wd:Q7725634 .
?butir wdt:P407 wd:Q9237 .
OPTIONAL { ?butir wdt:P1476 ?tajuk. }
OPTIONAL { ?butir wdt:P50 ?pengarang. }
OPTIONAL { ?butir wdt:P577 ?tarikh_terbit. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ms" . }
}
ORDER BY ?tajuk ?tarikh_terbit
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?butir"):::projected
v4("?pengarang")
v1("?tajuk"):::projected
v2("?tarikh_terbit"):::projected
c9(["bd:serviceParam"]):::iri
c2(["wd:Q7725634"]):::iri
c4(["wd:Q9237"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,ms"]):::literal
v3 --"wdt:P31"--> c2
v3 --"wdt:P407"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P1476".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P50".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P577".-> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end