Dump data from the Dynamodb table to local Sled database, index it with Tantivy and server via Jupiter
source code https://github.com/denisbog/graphql/tree/1.0
# load transform and store data locally, index
cargo r --bin execute_all
# start graphql server
cargo r --bin serve
Graphql query to search data
{
search(search: "home", results: 10, offset: 0) {
items {
id
category
description
title
photos
}
count
}
}