query-1140f90f480496dadb6b9c58754fc684
Author cocitation network
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Graph
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX gas: <http://www.bigdata.com/rdf/gas#>
select ?citing_paper_author ?citing_paper_authorLabel ?paper_author ?paper_authorLabel where {
service gas:service {
gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.BFS" ;
gas:in wd:Q23992764 ,
wd:Q24684259 ;
gas:traversalDirection "Forward" ;
gas:out ?paper ;
gas:out1 ?depth ;
gas:out2 ?citing_paper ;
gas:linkType wdt:P2860 ;
gas:maxIterations 5;
gas:maxVisited 200 .
}
?citing_paper wdt:P2860 ?paper .
?paper wdt:P50 ?paper_author .
?citing_paper wdt:P50 ?citing_paper_author .
SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en" . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?citing_paper")
v5("?citing_paper_author"):::projected
v2("?depth")
v1("?paper")
v4("?paper_author"):::projected
c2(["gas:program"]):::iri
c14(["wdt:P2860"]):::iri
c18(["200^^xsd:integer"]):::literal
c4(["com.bigdata.rdf.graph.analytics.BFS"]):::literal
c21(["bd:serviceParam"]):::iri
c16(["5^^xsd:integer"]):::literal
c23(["da,en"]):::literal
c9(["Forward"]):::literal
c6(["wd:Q23992764"]):::iri
c7(["wd:Q24684259"]):::iri
subgraph s1["http://www.bigdata.com/rdf/gas#service"]
style s1 stroke-width:4px;
c2 --"gas:gasClass"--> c4
c2 --"gas:in"--> c6
c2 --"gas:in"--> c7
c2 --"gas:traversalDirection"--> c9
c2 --"gas:out"--> v1
c2 --"gas:out1"--> v2
c2 --"gas:out2"--> v3
c2 --"gas:linkType"--> c14
c2 --"gas:maxIterations"--> c16
c2 --"gas:maxVisited"--> c18
end
v3 -->c14--> v1
v1 --"wdt:P50"--> v4
v3 --"wdt:P50"--> v5
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c21 --"wikibase:language"--> c23
end