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

xsparql.base.usecase-lifting.xsparql.ignore Maven / Gradle / Ivy

The newest version!
declare namespace bkrdf="http://example.org/bookTicket#";     
declare namespace bkxml="http://example.com/bookTicket.xsd";  
                                                              
let $reservation := /bkxml:Reservation                        
for $req $date $count $from $to from              
where { $req a bkrdf:ReservationRequest ;                                           
             bkrdf:time $date ;                                                    
             bkrdf:from $from ;                                                    
             bkrdf:to $to ;                                                        
             bkrdf:passengerCount $count . }                                       
construct {                                                   
    _:a a bkrdf:Reservation ;                                  
        bkrdf:requestedBy $req ;
        bkrdf:time $date ;                                     
        bkrdf:from $from ;                                     
        bkrdf:to $to;                                          
        bkrdf:passengerCount $count ;                      
        bkrdf:description { $reservation/description } ;       
        bkrdf:confirmationID { $reservation/confirmationID } . 
}                                                             




© 2015 - 2025 Weber Informatics LLC | Privacy Policy