Closed
Description
- The diagram is a bit misleading since it shows
paper->dct:creator->soa:Author
but this query returns nothing. It should use some different color (eg red) to show classes that are hosted externally:
PREFIX soa: <https://semopenalex.org/ontology/>
select * {?x a soa:Author}
- Authors are linked to SemOpenAlex, where there are 26.5 triples on average per author. Eg this federated query describes the first author:
construct {?x ?p ?o} where {
{select ?x {[] dct:creator ?x} limit 1}
{service <https://semopenalex.org/sparql> {?x ?p ?o}}
}
Note: YasGUI doesn't have download format "Turtle" even for CONSTRUCT queries, that's why I show a table.
As you see, there's a plethora of info.
- This fetches the data of the 3 orgs of this first author:
construct {?org ?p ?o} where {
{select ?x {[] dct:creator ?x} limit 1}
{service <https://semopenalex.org/sparql> {
?x org:memberOf ?org.
?org ?p ?o
}}
}
Again there's a plethora of info:
Metadata
Metadata
Assignees
Labels
No labels