Difference between revisions of "Q0.7"
Jump to navigation
Jump to search
(Created page with "=Query= {{Query |id=7 |name=AllAuthorsOfPapersOfProceedings |title=authors of papers of proceedings |description=List all authors of all papers of all proceedings |sparql=# a...") |
|||
Line 49: | Line 49: | ||
|wdqsurl=6UTH | |wdqsurl=6UTH | ||
|relevance=1 | |relevance=1 | ||
+ | |comment=see [https://scholia.toolforge.org/series/Q27230297 Scholia page for CEUR-WS Proceedings Series] | ||
|task=Task0 | |task=Task0 | ||
|storemode=property | |storemode=property | ||
}} | }} | ||
=Freitext= | =Freitext= |
Revision as of 06:38, 22 March 2023
Query
Query | |
---|---|
edit | |
id | 7 |
name | AllAuthorsOfPapersOfProceedings |
title | authors of papers of proceedings |
description | List all authors of all papers of all proceedings |
sparql | # authors of papers of proceedings
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
?author
?authorLabel
?paper
?paperLabel
?proceedings
?proceedingsLabel
WHERE{
#VALUES ?volume_number {
# "3262"
#}
# proceedings
?proceedings wdt:P31 wd:Q1143604;
# CEUR-WS
wdt:P179 wd:Q27230297;
# Volume
p:P179/pq:P478 ?volume_number;
rdfs:label ?proceedingsLabel;
FILTER(lang(?proceedingsLabel)="en")
# scholarly article
?paper wdt:P31 wd:Q13442814.
# published in
?paper wdt:P1433 ?proceedings.
?paper rdfs:label ?paperLabel.
FILTER(lang(?paperLabel)="en")
# author
?paper wdt:P50 ?author.
?author rdfs:label ?authorLabel.
FILTER(lang(?authorLabel)="en")
}
|
tryiturl | P7jZJm→P7jZJm |
wdqsurl | 6UTH→6UTH |
scholia | → |
relevance | 1 |
comment | see Scholia page for CEUR-WS Proceedings Series |
task | Task0→Task0 |