Status: 
| part | subject | predicate | object | published by | date | |
|---|---|---|---|---|---|---|
|
Assertion
|
|
|||||
|
Assertion
|
Get all spaces
|
|
||||
|
Assertion
|
|
|||||
|
Assertion
|
Returns one row per known space with its label, type IRI and short type name, ordered alphabetically by space label. Intended for the /spaces table view.
|
|
||||
|
Assertion
|
|
|||||
|
Assertion
|
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix npa: <http://purl.org/nanopub/admin/>
prefix npx: <http://purl.org/nanopub/x/>
prefix gen: <https://w3id.org/kpxl/gen/terms/>
select ?space_iri (sample(?lbl) as ?space_iri_label) (sample(?t) as ?type) (sample(?tlbl) as ?type_label) where {
graph npa:spacesGraph {
?spaceRef a npa:SpaceRef ; npa:spaceIri ?space_iri .
?def a npa:SpaceDefinition ;
npa:forSpaceRef ?spaceRef ;
npa:viaNanopub ?np .
}
graph npa:graph {
?np rdfs:label ?lbl .
?np npx:hasNanopubType ?t .
filter(strstarts(str(?t), "https://w3id.org/kpxl/gen/terms/"))
filter(?t != gen:Space)
}
filter not exists { graph npa:graph { ?invNp npx:invalidates ?np . } }
bind(strafter(str(?t), "https://w3id.org/kpxl/gen/terms/") as ?tlbl)
} group by ?space_iri order by lcase(sample(?lbl))
|
|
||||
|
PublicationInfo
|
|
|||||
|
Assertion
|
|