# Show a list of all existing models select $model from where $model ; # Drop a model #drop ; # Drop the according fulltext index #drop ; # (Re-)create a model create ; # Insert RDF data from a file load local into ; # Retrieve all contents of a model # Should look something like this: # [ urn:iso639:aa, http://purl.org/dc/elements/1.1/identifier, "aa" ] # [ urn:iso639:aa, http://purl.org/dc/elements/1.1/title, "Afar"@en ] # [ urn:iso639:aa, http://purl.org/dc/elements/1.1/title, "afar"@fr ] # [ urn:iso639:ab, http://purl.org/dc/elements/1.1/identifier, "ab" ] # [ urn:iso639:ab, http://purl.org/dc/elements/1.1/title, "Abkhazian"@en ] # [ urn:iso639:ab, http://purl.org/dc/elements/1.1/title, "abkhaze"@fr ] select $subj $pre $obj from where $subj $pre $obj ; # Create a lucene index model create ; # Fill the lucene index with dc:title data from the original model insert select $s $o from where $s $o into ; # Fill the lucene index with dc:identifier data from the original model insert select $s $o from where $s $o into ;