Convert parsed sentence into queries

Does RASA provides built-in functionality to convert parsed sentence into queries for databases?

Can you give an example of what would that look like?

You mean

I want to go to Paris from New York" 

turns into

Select flight from flights where city_to=Paris and city_from=New York

Yes same thing. Instead of mySQL I want to convert them to cypher query language. Just wanted to know whether Rasa provides any built-in functionality to do that.

Unfortunately not, but you can run a custom action extracting entities you need to connect to your graph database

1 Like

Cool. Thanks