How to update leaderboard record's metadata only

Server version: 3.15.0+1783fad1v
Using Golang

I am trying to update a leaderboard record’s metadata without changing anything else in the records.
I am trying to do this from server side only.
My leaderboard is created with Operator = Set

I tried to list the records first using nk.LeaderboardRecordsList
Then write the record again using LeaderboardRecordWrite after updating metadata

The issue with this approach that it will not accept Setting the record if the score is the same

Hello @mohammed,

It’s unusual to update records when the score doesn’t change. Could you share what kind of metadata you are storing there and why it needs to be updated?

I stored player profile like Avatar, Frame & Country flag.
so when client list the leader board it doesn’t required another call for players profiles.

Hi @flavio

One solution is to set the cups with different value,
then set the original cups count again.

Please let me know if you have a better solution

Hello @Mohammed,

I’d suggest you combine the profiles data and the scores in a single RPC that uses both calls (fetching all profiles in a single call) instead of duplicating the profile data in the records metadata, it’ll perform well and will also prevent any changes to the profile data to have to be propagated to any existing records.

Best