- PREFIX gesli: <https://gesli.example/ontology#>
- SELECT ?orderNo ?customsCutoffTime ?terminalCutoffTime ?vgmCutoffTime ?estimatedSailingTime
- WHERE {
- ?order a gesli:QingdaoExportOrder ;
- gesli:orderNo ?orderNo .
- OPTIONAL { ?order gesli:customsCutoffTime ?customsCutoffTime . }
- OPTIONAL { ?order gesli:terminalCutoffTime ?terminalCutoffTime . }
- OPTIONAL { ?order gesli:vgmCutoffTime ?vgmCutoffTime . }
- OPTIONAL { ?order gesli:estimatedSailingTime ?estimatedSailingTime . }
- }
- ORDER BY ?orderNo
|