Metadata-Version: 2.1
Name: citation-rabbot
Version: 3.19.7
Summary: A telegram bot jumping in your citation database like a rabbit!
Home-page: https://github.com/yindaheng98/citation-rabbot
Author: yindaheng98
Author-email: yindaheng98@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# citation-rabbot

A telegram bot jumping in your citation database like a rabbit!

## Index in Neo4J

fulltext index for title and abstract is necessary for `/search_by_abstract`:

```cql
CREATE FULLTEXT INDEX publication_title_fulltext_index FOR (p:Publication) ON EACH [p.title];
CREATE FULLTEXT INDEX publication_abstract_fulltext_index FOR (p:Publication) ON EACH [p.abstract];
```

For faster search, you can add text index for title:

```cql
CREATE TEXT INDEX publication_title_hash_text_index FOR (p:Publication) ON (p.title_hash);
```


