mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-04 14:39:08 +02:00
9 lines
341 B
SPARQL
9 lines
341 B
SPARQL
# Positive test: product of type promotion within the xsd:decimal type tree.
|
|
# $Id: boolean-logical-OR.rq,v 1.1 2008-07-08 10:46:41 larsl Exp $
|
|
|
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
|
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
|
|
SELECT ?one
|
|
WHERE { ?one rdf:value ?oneL .
|
|
FILTER ( (TRUE || FALSE) = ?oneL ) }
|