| 1234567891011121314151617181920212223242526 |
- prefixes = "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \
- PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \
- PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/> \
- PREFIX owl: <http://www.w3.org/2002/07/owl#> \
- PREFIX schema: <http://schema.org/> \
- PREFIX foaf: <http://xmlns.com/foaf/0.1/> \
- PREFIX person: <http://www.w3.org/ns/person#> \
- PREFIX time: <https://www.w3.org/TR/owl-time#> "
- SELECT ?subject ?property ?object ?label
- WHERE{
- ?subject rdfs:label ?label .
- ?label bif:contains "Fondo".
- FILTER (CONTAINS(?label, "6000256"))
- ?subject ?property ?object .
- }
- LIMIT 10000
- queryIdentificatore = prefixes + " SELECT DISTINCT ?g ?subject ?label ?identifier \
- WHERE {GRAPH ?g {?subject rdf:type crm:E22_Man-Made_Object } \
- ?subject rdfs:label ?label . \
- ?subject crm:P1_is_identified_by ?uri_identifier . \
- ?uri_identifier rdfs:label ?identifier ; \
- crm:P2_has_type 'Segnatura' . \
- FILTER (CONTAINS(?identifier, " + word + ")) \
- }"
|