Good afternoon everyone, I am making a SPARQL query with filters and although syntactically correct me does not return the correct solution. I have an online store and want to extract the names of items to be priced higher than € 300.
*PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns# <http://www.w3.org/1999/02/22-rdf-syntax-ns#>> " +* * " PREFIX gr: <http://purl.org/goodrelations/v1# <http://purl.org/goodrelations/v1#>> " +* * " PREFIX xsd: <http://www.w3.org/2001/XMLSchema# <http://www.w3.org/2001/XMLSchema#>> " +* * " SELECT * WHERE {" +* * " ?x a gr:Offering . " +* * " ?x gr:hasPriceSpecification ?ps ." +* * " ?ps gr:hasCurrencyValue ?p . " +* * " FILTER (?p >= '300^^xsd:float' ) " +* * "}";* What is the error? Thank you, Nagore. -- Nagore Salaberria<nagore...@gmail.com>