SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
interactingDrug
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Property
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.