order-cutoff-times.rq 510 B

12345678910111213
  1. PREFIX gesli: <https://gesli.example/ontology#>
  2. SELECT ?orderNo ?customsCutoffTime ?terminalCutoffTime ?vgmCutoffTime ?estimatedSailingTime
  3. WHERE {
  4. ?order a gesli:QingdaoExportOrder ;
  5. gesli:orderNo ?orderNo .
  6. OPTIONAL { ?order gesli:customsCutoffTime ?customsCutoffTime . }
  7. OPTIONAL { ?order gesli:terminalCutoffTime ?terminalCutoffTime . }
  8. OPTIONAL { ?order gesli:vgmCutoffTime ?vgmCutoffTime . }
  9. OPTIONAL { ?order gesli:estimatedSailingTime ?estimatedSailingTime . }
  10. }
  11. ORDER BY ?orderNo