Wrapper for RDF database
npm i -s rdf-orm
yarn add rdf-orm
##Initializae connection
import {initConnection} from 'rdf-orm';
initConnection({baseUrl: 'http://localhost:3030/123'});
import {Model} from 'rdf-orm';
class Post extends Model{
table='posts';
}
const post:Post|any = new Post;
post.title = "Sample post";
post.save();
const post:Post|any =await Post.find(<post_id>);
console.log(post);
const post:Post|any =await Post.find(<post_id>);
post.delete();
const posts:Post|any =await Post.all();
console.log(posts);