Difference between revisions of "Q2.4"
Jump to navigation
Jump to search
(Created page with "=Query= {{Query |id=4 |description=Identify all works cited by paper X and published after year Y |since=2015-08-25 |task=Task2 |storemode=property }} =Freitext=") |
|||
(4 intermediate revisions by one other user not shown) | |||
Line 3: | Line 3: | ||
{{Query | {{Query | ||
|id=4 | |id=4 | ||
+ | |title=Works cited by paper after year | ||
|description=Identify all works cited by paper X and published after year Y | |description=Identify all works cited by paper X and published after year Y | ||
− | | | + | |sparql=PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> |
+ | PREFIX wd: <http://www.wikidata.org/entity/> | ||
+ | PREFIX wdt: <http://www.wikidata.org/prop/direct/> | ||
+ | PREFIX p: <http://www.wikidata.org/prop/> | ||
+ | PREFIX pq: <http://www.wikidata.org/prop/qualifier/> | ||
+ | SELECT DISTINCT ?citingPaper ?citingPaperLabel ?paper ?paperLabel ?publicationDate | ||
+ | WHERE{ | ||
+ | #VALUES ?proceedings { | ||
+ | # wd:Q27230297 | ||
+ | #} | ||
+ | VALUES ?paper { | ||
+ | wd:Q36198963 | ||
+ | } | ||
+ | #?paper wdt:P1433 ?proceedings. | ||
+ | ?paper rdfs:label ?paperLabel. | ||
+ | FILTER(lang(?paperLabel)="en") | ||
+ | # cites work | ||
+ | ?citingPaper wdt:P2860 ?paper. | ||
+ | ?citingPaper rdfs:label ?citingPaperLabel. | ||
+ | FILTER(lang(?citingPaperLabel)="en") | ||
+ | ?citingPaper wdt:P577 ?publicationDate | ||
+ | FILTER(year(?publicationDate)>2015) | ||
+ | } | ||
+ | ORDER BY DESC(?publicationDate) | ||
+ | |tryiturl=Q32kCB | ||
+ | |wdqsurl=6UBF | ||
+ | |relevance=3 | ||
|task=Task2 | |task=Task2 | ||
|storemode=property | |storemode=property | ||
+ | |since=2015-08-25 | ||
}} | }} | ||
=Freitext= | =Freitext= |
Latest revision as of 08:47, 21 March 2023
Query
Query | |
---|---|
edit | |
id | 4 |
name | |
title | Works cited by paper after year |
description | Identify all works cited by paper X and published after year Y |
sparql | PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
SELECT DISTINCT ?citingPaper ?citingPaperLabel ?paper ?paperLabel ?publicationDate
WHERE{
#VALUES ?proceedings {
# wd:Q27230297
#}
VALUES ?paper {
wd:Q36198963
}
#?paper wdt:P1433 ?proceedings.
?paper rdfs:label ?paperLabel.
FILTER(lang(?paperLabel)="en")
# cites work
?citingPaper wdt:P2860 ?paper.
?citingPaper rdfs:label ?citingPaperLabel.
FILTER(lang(?citingPaperLabel)="en")
?citingPaper wdt:P577 ?publicationDate
FILTER(year(?publicationDate)>2015)
}
ORDER BY DESC(?publicationDate)
|
tryiturl | Q32kCB→Q32kCB |
wdqsurl | 6UBF→6UBF |
scholia | → |
relevance | 3 |
comment | |
task | Task2→Task2 |