I am new to cassandra I need your help.
After creating a collection table using cql console, I am able to create new records and read them, but Post operation using cassandra-driver in nodejs is not working, it only works when I use cql console.
I created table:
CREATE TYPE event_info (
    type text,
    pagePath text,
    ts text,
    actionName text
);
CREATE TABLE journey_info_5 (
    id uuid PRIMARY KEY,
    user_id text,
    session_start_ts timestamp,
    event FROZEN<event_info>
);
codes for post operation:
export const pushEvent = async(req,res)=>{
    const pushEventQuery = 'INSERT INTO user_journey.userjourney (id, user_id, session_start_ts,events)
    VALUES ( ${types.TimeUuid.now()}, ${req.body.user_id},${types.TimeUuid.now()},
     { ${req.body.type},${req.body.pagePath},${req.body.ts},${req.body.actionName}} } );'
    try {
        
        await client.execute(pushEventQuery)
       res.status(201).json("new record added successfully");
    } catch (error) {
        res.status(404).send({ message: error });
        console.log(error);
    }
}
it is giving errors, How can I get data from user and post in this collection? please help me, if any idea
 
                        
The issue is that your CQL statement is invalid. The format for inserting values in a user-defined type (UDT) column is:
Note that the column names in your schema don't match up with the CQL statement in your code so I'm reposting the schema here for clarity:
Here's the CQL statement I used to insert a UDT into the table (formatted for readability):
For reference, see Inserting or updating data into a UDT column. Cheers!