PREFIX rdfs: PREFIX rdf: PREFIX xsd: PREFIX opmo: PREFIX opmv: PREFIX opmsp: PREFIX opmlz: select ?p ?d ?authentCertif where{ ?p rdf:type opmv:Process . ?p opmo:used ?authentCertif . ?authentCertif rdf:type . ?p ?d . FILTER ( ?d > "@DATE1@T00:00:00"^^xsd:dateTime ) . FILTER ( ?d < "@DATE2@T00:00:00"^^xsd:dateTime ) . } LIMIT 10 -- PREFIX rdfs: PREFIX rdf: PREFIX xsd: PREFIX opmo: PREFIX opmv: PREFIX opmsp: PREFIX opmlz: select ?p ?d ?authentCertif where{ ?p rdf:type opmv:Process . ?p opmo:used ?authentCertif . ?authentCertif rdf:type . ?p ?d . FILTER ( ?d > "@DATE1@T00:00:00"^^xsd:dateTime ) FILTER ( ?d < "@DATE2@T00:00:00"^^xsd:dateTime ) . } --- PREFIX rdfs: PREFIX rdf: PREFIX xsd: PREFIX opmo: PREFIX opmv: PREFIX opmsp: PREFIX opmlz: select ?p ?d ?authentCertif where{ ?p rdf:type opmv:Process . ?p opmo:used ?authentCertif . ?authentCertif rdf:type . ?p ?d . FILTER ( ?d > "@DATE@T00:00:00"^^xsd:dateTime ) . } ---- PREFIX rdfs: PREFIX rdf: PREFIX xsd: PREFIX opmo: PREFIX opmv: PREFIX opmsp: PREFIX opmlz: select ?EC ?nPatients where{ ?p rdf:type . ?result opmo:wasGeneratedBy ?p . ?p opmo:used ?EC . ?EC rdf:type . ?result ?nPatients . } ---- select ann.PropertyValue, OPMEntity.OPMGraphKey, sum( OPMProcess.OPMProcessEndTime - OPMProcess.OPMProcessStartTime ) from Property, Property prop, OPMProcess, OPMGraph, OPMEntity, OPMAnnotation, OPMAnnotation ann where OPMEntity.OPMGraphKey = OPMGraph.OPMGraphKey and OPMEntity.OPMEntityKey=OPMProcessKey and OPMProcess.OPMProcessKey = OPMAnnotation.OPMSubjectKey and OPMAnnotation.PropertyKey = Property.propertyKey and Property.propertyKey = 6 and OPMAnnotation.PropertyValue LIKE '%ClinicalStudyEligibilityCriteriaEditionProcess' and ann.PropertyKey=prop.PropertyKey and ann.OPMSubjectKey=OPMGraph.OPMGraphKey and prop.PropertyKey =1 and OPMProcess.OPMProcessEndTime is not null and OPMProcess.OPMProcessStartTime is not null group by OPMGraph.OPMGraphKey --- PREFIX rdfs: PREFIX rdf: PREFIX xsd: PREFIX opmo: PREFIX opmv: PREFIX opmsp: PREFIX opmlz: select ?p where{ ?p rdf:type opmv:Process . ?p (opmo:used|opmo:wasGeneratedBy|opmo:wasControlledBy|opmo:wasTriggeredBy|opmo:wasGeneratedFrom)* ?e . ?e "@ClinStudyId@"^^xsd:string . ?p ?d . FILTER ( ?d > "@DATE1@T00:00:00"^^xsd:dateTime ) . FILTER ( ?d < "@DATE2@T00:00:00"^^xsd:dateTime ) . } LIMIT 10 --- SELECT OPMProcess.OPMProcessKey, a1.PropertyValue, OPMEntityAnnotationTime FROM OPMProcess, OPMEntity, OPMGraph, OPMAnnotation, OPMAnnotation as a1, Property, Property as p1 WHERE OPMProcess.OPMProcessKey = OPMEntity.OPMEntityKey and OPMEntity.OPMGraphKey = OPMGraph.OPMGraphKey and OPMAnnotation.OPMSubjectKey = OPMGraph.OPMGraphKey and OPMAnnotation.PropertyKey = Property.PropertyKey and Property.PropertyId = 'http://www.doc.ic.ac.uk/~rdanger/transform_ontologies/OPMSoftwareProfile.owl#idProject' and OPMAnnotation.PropertyValue = 'DataQualityTool' and a1.OPMSubjectKey = OPMProcess.OPMProcessKey and a1.PropertyKey = p1.PropertyKey and p1.PropertyId = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type' LIMIT 20 --- PREFIX rdfs: PREFIX rdf: PREFIX xsd: PREFIX opmo: PREFIX opmv: PREFIX opmsp: PREFIX opmlz: select ?prop ?e where{ <@entityURI@> ?prop ?e . }