Skip to content

Commit

Permalink
replace rml:query with rml:iterator (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaria committed Mar 4, 2024
1 parent 66be501 commit deaf95e
Show file tree
Hide file tree
Showing 72 changed files with 86 additions and 86 deletions.
2 changes: 1 addition & 1 deletion test-cases/RMLTC0000-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?name
WHERE {
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0001a-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0001b-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:query "SELECT Name FROM student";
rml:iterator "SELECT Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0001b-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:query "SELECT Name FROM student";
rml:iterator "SELECT Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0001b-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0001b-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:query "SELECT Name FROM student";
rml:iterator "SELECT Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002a-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002b-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002d-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:query "SELECT CONCAT('Student', ID) AS StudentId, ID, Name FROM student";
rml:iterator "SELECT CONCAT('Student', ID) AS StudentId, ID, Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002d-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:query "SELECT ('Student' || ID) AS StudentId, ID, Name FROM student";
rml:iterator "SELECT ('Student' || ID) AS StudentId, ID, Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002d-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:query "SELECT CONCAT('Student', ID) AS StudentId, ID, Name FROM student";
rml:iterator "SELECT CONCAT('Student', ID) AS StudentId, ID, Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002g-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:query "SELECT kjnqsdjfbqsdjfmsdnfm FROM student";
rml:iterator "SELECT kjnqsdjfbqsdjfmsdnfm FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002g-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:query "SELECT kjnqsdjfbqsdjfmsdnfm FROM student";
rml:iterator "SELECT kjnqsdjfbqsdjfmsdnfm FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002g-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002g-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:query "SELECT kjnqsdjfbqsdjfmsdnfm FROM student";
rml:iterator "SELECT kjnqsdjfbqsdjfmsdnfm FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002h-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT Name, Name FROM student";
rml:iterator "SELECT Name, Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002h-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT Name, Name FROM student";
rml:iterator "SELECT Name, Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002h-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002h-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT Name, Name FROM student";
rml:iterator "SELECT Name, Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002i-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT Name FROM student";
rml:iterator "SELECT Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002i-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT Name FROM student";
rml:iterator "SELECT Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002i-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT Name FROM student";
rml:iterator "SELECT Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002j-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT NoColumnName, Name FROM student";
rml:iterator "SELECT NoColumnName, Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002j-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT NoColumnName, Name FROM student";
rml:iterator "SELECT NoColumnName, Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0002j-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT NoColumnName, Name FROM student";
rml:iterator "SELECT NoColumnName, Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0003a-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT FirstName, LastName FROM student";
rml:iterator "SELECT FirstName, LastName FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0003a-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT FirstName, LastName FROM student";
rml:iterator "SELECT FirstName, LastName FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0003a-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT FirstName, LastName FROM student";
rml:iterator "SELECT FirstName, LastName FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>;
rml:iterator "student"
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0003b-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT ID, LastName, CONCAT(`FirstName`, '', `LastName`) as Name FROM student";
rml:iterator "SELECT ID, LastName, CONCAT(`FirstName`, '', `LastName`) as Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0003b-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT id, lastname, concat_ws(firstname, '', lastname) as name FROM student";
rml:iterator "SELECT id, lastname, concat_ws(firstname, '', lastname) as name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0003b-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [
rml:query "SELECT ID, LastName, concat_ws(FirstName, '', LastName) as Name FROM student";
rml:iterator "SELECT ID, LastName, concat_ws(FirstName, '', LastName) as Name FROM student";
rml:referenceFormulation rml:SQL2008Query;
rml:source <http://example.com/base/#DB_source>
];
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0003c-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
4 changes: 2 additions & 2 deletions test-cases/RMLTC0004a-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
ex:TriplesMap1 a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down Expand Up @@ -34,7 +34,7 @@ ex:TriplesMap1 a rml:TriplesMap;
ex:TriplesMap2 a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0004b-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
ex:TriplesMap1 a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0006a-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ex:TriplesMap1 a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0007a-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0007b-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0007c-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0007d-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0007e-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0007f-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0007g-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0007h-SPARQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<http://example.com/base#Country> rml:logicalSource [
rml:iterator "$.results.bindings[*]";
rml:query """
rml:iterator """
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Expand Down
Loading

0 comments on commit deaf95e

Please sign in to comment.