I am trying to update a value stroed in map of given key using cql. Can anyone tell me how to do it? The following is my table:
create table game(game_id uuid, game_name text, participant_id_name map<uuid, text>, PRIMARY KEY (game_id));
create index on game(participant_id_name);
Now I have a given participant's uuid and want to update his/her name, but I dont know the game_id. I wonder how can I check if the participant belongs to participant_id_name column and then update the name.