It is a bit hard to explain, what I am looking for:
Searching for a DB which stores objects (similar to e.g. https://www.objectdb.com/) but where classes are not defined by the Java code but in the DB itself - on the fly.
So that there it shall be possible e.g. to create a class maybe with a rest call:
{
action: create_class,
type: Car,
properties: {
color: String,
producer: String,
price: Integer,
}
}
And add an item like:
{
action: create_entry,
class: Car,
id: 123456,
{
color: red,
price: 20000,
producter: Hypercar
}
}
Before you now say: "NOSQL!": There it seems to be the issue with relations and queries. E.g. "find all red cars" or "find cars of a producer with criteria XY"
But maybe there exists a DB solution which provides already a lot of functions - a mixture between SQL and NOSQL?
For example the product fibery provides a way to add kind of entities per mouse. That is very inspiring. (Fibery is not a DB but a product doing what I am looking for)
You may look at https://www.prisma.io/ It supports sql-like databases as backend (Postgresql etc) and provides REST and GraphQL based query languages.
also here is a glimpse of relation queries https://www.prisma.io/docs/concepts/components/prisma-client/relation-queries
As a developer of Fibery, I should say that it isn't optimised for general use like Postgresql or any other true database in the field.