While i was working with a project (a playground project with nodeJS) I found that there is no joining option in the cassandra-nodejs ORM. Is there any option to have this in any ORM in built (except raw query).
I tried lots of tutorials and Node Library search but not found a suitable solutions.
You cannot perform joins in Cassandra. If you have designed a data model and find that you need something like a join, you’ll have to either do the work on the client side, or create a denormalized second table that represents the join results for you.
Reference Link https://cassandra.apache.org/doc/stable/cassandra/data_modeling/data_modeling_rdbms.html#:~:text=No%20joins,the%20join%20results%20for%20you.