filak commented on issue #2094:
URL: https://github.com/apache/jena/issues/2094#issuecomment-1832272831

   I have modified the config:
   
   ```
       text:propLists (
           [ text:propListProp mt:defQuery ;
             text:props ( 
                rdfs:label
                mt:altLabel
                mt:alt_label
                mx:alt_label
                ) ;
           ]
           [ text:propListProp mt:includeNotes ;
             text:props (
                  rdfs:label
                  mt:altLabel
                  mt:alt_label
                  mx:alt_label           
                  mt:note
                ) ;
           ]
       ) ;
        .
   
   <#entMap> 
       a text:EntityMap ;
       text:defaultField     "ftext" ;
       text:entityField      "uri" ;
       text:uidField         "uid" ;
       text:langField        "lang" ;
       text:graphField       "graph" ;
       text:map (
            [ text:field "ftext" ; text:predicate rdfs:label ]
            [ text:field "ftext" ; text:predicate mt:altLabel ]
            [ text:field "ftext" ; text:predicate mt:alt_label ]
            [ text:field "ftext" ; text:predicate mx:alt_label ]
            [ text:field "note" ; text:predicate mt:note ]
            ) .
   ```
   
   Now the query no 3 works as expected !
   
   And this also works:
   
        ?s text:query ("beer white") => 1 hit
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to