forked from sib-swiss/sparql-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path002.ttl
21 lines (19 loc) · 798 Bytes
/
002.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@prefix ex: <https://bigcat-um.github.io/sparql-examples/AOP-Wiki/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
ex:002 a sh:SPARQLExecutable,
sh:SPARQLSelectExecutable ;
rdfs:comment "[fill out comment here]"@en ;
sh:prefixes _:sparql_examples_prefixes ;
sh:select """PREFIX aopo: <http://aopkb.org/aop_ontology#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
SELECT ?AOP ?AOPName
WHERE {
?AOP a aopo:AdverseOutcomePathway ;
dc:title ?AOPName .
}""" ;
schema:target <https://aopwiki.rdf.bigcat-bioinformatics.org/sparql/> ;
dc:contributor "Marvin Martens" .