Status: 
| part | subject | predicate | object | published by | date | |
|---|---|---|---|---|---|---|
|
Assertion
|
|
|||||
|
Assertion
|
Get personal URLs
|
|
||||
|
Assertion
|
|
|||||
|
PublicationInfo
|
Get personal URLs - This query returns the personal URLs for a given user.
|
|
||||
|
Assertion
|
This query returns the personal URLs for a given user.
|
|
||||
|
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 ?urllink ?np ("^" as ?np_label) where {
graph npa:graph {
?np npx:hasNanopubType rdfs:seeAlso .
?np npa:hasValidSignatureForPublicKeyHash ?pubkey .
filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?pubkey . }
?np np:hasAssertion ?a .
}
graph ?a {
?_user_iri rdfs:seeAlso ?url .
?url rdfs:label ?url_label .
}
bind(concat("<span><a target=\"_blank\" href=\"", str(?url), "\">", ?url_label, "</a></span>") as ?urllink)
} order by ?url_label
|
|
||||
|
PublicationInfo
|
|
|||||
|
Assertion
|
|