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

sparql.FieldByName.rq Maven / Gradle / Ivy

# Select a Field by its name

PREFIX rdf: 
PREFIX rdfs: 
PREFIX orch:  

SELECT ?name ?datatype ?description
WHERE {
	?field rdfs:label ?name;
		rdf:type orch:Field;
		orch:hasDataType ?type;
		orch:hasName "TradeDate" .
	?type rdfs:label ?datatype .
	OPTIONAL {?field rdfs:comment ?description .}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy