- From: Valdas Bucinskas <valdonamas@gmail.com>
- Date: Wed, 18 May 2022 17:10:16 +0300
- To: public-ontolex@w3.org
- Message-ID: <CAASb-b9XDthpNsoFODqf59BZGqao84uZ=S=L4oEBSuELgF0aVg@mail.gmail.com>
Hello, I am developing a word game for www.yucata.de (called Balda, it is already available there) and I would like to add more words to it. I have found a website http://kaiko.getalp.org/sparql which accepts the following SPARQL query: SELECT distinct ?label, ?definition WHERE { ?sense a ontolex:LexicalSense ; skos:definition ?def . ?def rdf:value ?definition . FILTER(lang(?definition) = "en") { SELECT * WHERE { VALUES ?pos {<http://www.lexinfo.net/ontology/2.0/lexinfo#noun>} ?lexeme a ontolex:LexicalEntry ; rdfs:label ?label ; ontolex:canonicalForm ?form ; lime:language ?lang ; lexinfo:partOfSpeech ?pos ; ontolex:sense ?sense . FILTER(?lang = "en") FILTER (regex(?label, '^[a-zA-Z]*$')) FILTER (strstarts(str(?label), 'a')) } } } ORDER BY ASC(?label) The query returns almost what I need. However the problem is that this method does not allow to extract all the data, the results get cut off. Is there a way to get all the rows of a query? I am new here, sorry if this is not the right place to ask this question. I have found this group when browsing http://www.lexinfo.net . Best regards, Valdas Bučinskas <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> Virus-free. www.avg.com <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
Received on Friday, 20 May 2022 08:39:24 UTC