All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sparql.UsesQuery.rq Maven / Gradle / Ivy

# Select components and fields contained by a message entity

PREFIX rdf: 
PREFIX rdfs: 
PREFIX orch:  
PREFIX owl: 

SELECT ?name ?type ?description
WHERE {
	?entity orch:has ?member;
		rdfs:label "IOI" .
	?member rdfs:label ?name;
		rdf:type ?type .
	FILTER(?type != owl:NamedIndividual)
	OPTIONAL {?member rdfs:comment ?description .}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy