query-e6316a89753a3ab11c7ea97982fa4418

rq turtle/ttl

All scholarly articles (articoli scientifici) with a keyword

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?Articolo ?ArticoloLabel WHERE {
  ?Articolo wdt:P31 wd:Q13442814.       # Scholarly articles
  ?Articolo rdfs:label ?ArticoloLabel.  # Get label   
  ?Articolo wdt:P921 wd:Q48655.         # With microgravity keyword
  FILTER((LANG(?ArticoloLabel)) = "en").
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?Articolo"):::projected v1("?ArticoloLabel"):::projected c3(["wd:Q13442814"]):::iri c6(["wd:Q48655"]):::iri f0[["?ArticoloLabel = 'en'"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"rdfs:label"--> v1 v2 --"wdt:P921"--> c6