@prefix rdf: . @prefix : . @prefix rdfs: . @prefix mf: . @prefix qt: . <> rdf:type mf:Manifest ; rdfs:label "Oxigraph SPARQL tests" ; mf:entries ( :describe :describe_where :group_concat_with_null :single_not_exists :property_list_path :values_in_filter_exists :values_in_filter_not_exists :subquery_in_filter_not_exists ) . :describe rdf:type mf:QueryEvaluationTest ; mf:name "Simple DESCRIBE request" ; mf:action [ qt:query ; qt:data ] ; mf:result . :describe_where rdf:type mf:QueryEvaluationTest ; mf:name "Simple DESCRIBE request" ; mf:action [ qt:query ; qt:data ] ; mf:result . :group_concat_with_null rdf:type mf:QueryEvaluationTest ; mf:name "GROUP_CONCAT with NULL" ; rdfs:comment "GROUP_CONCAT should ignore null values" ; mf:action [ qt:query ; qt:data ] ; mf:result . :single_not_exists rdf:type mf:QueryEvaluationTest ; mf:name "query with only a FILTER NOT EXISTS" ; mf:action [ qt:query ; qt:data ] ; mf:result . :property_list_path rdf:type mf:PositiveSyntaxTest ; mf:name "PropertyListPathNotEmpty children should be ObjectListPath for consistency" ; mf:action . :values_in_filter_exists rdf:type mf:QueryEvaluationTest ; mf:name "VALUES inside of FILTER EXISTS" ; mf:action [ qt:query ] ; mf:result . :values_in_filter_not_exists rdf:type mf:QueryEvaluationTest ; mf:name "VALUES inside of FILTER EXISTS" ; mf:action [ qt:query ] ; mf:result . :subquery_in_filter_not_exists rdf:type mf:QueryEvaluationTest ; mf:name "VALUES inside of FILTER EXISTS" ; mf:action [ qt:query ] ; mf:result .