Status: 
| part | subject | predicate | object | published by | date | |
|---|---|---|---|---|---|---|
|
Assertion
|
|
|||||
|
Assertion
|
Get latest FDOs
|
|
||||
|
Assertion
|
|
|||||
|
PublicationInfo
|
Get latest FDOs - This query returns the latest FDOs.
|
|
||||
|
PublicationInfo
|
Get latest FDOs - This query returns the latest FDOs.
|
|
||||
|
PublicationInfo
|
Get latest FDOs - This query returns the latest FDOs.
|
|
||||
|
Assertion
|
This query returns the latest FDOs.
|
|
||||
|
Assertion
|
|
|||||
|
Assertion
|
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix dct: <http://purl.org/dc/terms/>
prefix np: <http://www.nanopub.org/nschema#>
prefix npa: <http://purl.org/nanopub/admin/>
prefix npx: <http://purl.org/nanopub/x/>
select ?fdo ?np ?label ?profile ?creator ?date where {
graph npa:graph {
?np npa:hasValidSignatureForPublicKey ?pubkey .
filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKey ?pubkey . }
?np dct:created ?date .
?np npx:hasNanopubType <https://w3id.org/fdof/ontology#FAIRDigitalObject> .
?np npx:introduces ?fdo .
optional { ?np rdfs:label ?label }
optional { ?np npx:signedBy ?creator }
?np np:hasAssertion ?a .
}
optional {
graph ?a {
?fdo dct:conformsTo ?profile .
}
}
} order by desc(?date) limit 10
|
|
||||
|
PublicationInfo
|
|
|||||