SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
molecularWeight
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Property
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
This is the molecular weight of the entity being described, not of the parent. Units should be included in the form '<Number> <unit>', for example '12 amu' or as '<QuantitativeValue>.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
This is the molecular weight of the entity being described, not of the parent. Units should be included in the form '<Number> <unit>', for example '12 amu' or as '<QuantitativeValue>.