Difference between revisions of "Q0.7"

From BITPlan cr Wiki
Jump to navigation Jump to search
 
Line 4: Line 4:
 
|id=7
 
|id=7
 
|name=AllAuthorsOfPapersOfProceedings
 
|name=AllAuthorsOfPapersOfProceedings
|title=authors of papers of proceedings
+
|title=authors of [[Concept:Paper|papers]] of [[Concept:Proceedings|proceedings]]
|description=List all authors of all [[Concept:Paper|papers]] of all [[Concept:Proceedings|proceedings]]
+
|description=List all authors of all papers of all proceedings
 
|sparql=# authors of papers of proceedings
 
|sparql=# authors of papers of proceedings
 
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
 
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

Latest revision as of 10:06, 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

Freitext