Tag: redis-om
-
Redis-om EntityId: how to return the result of a search
0 I use redis-om with nodejs, typescript and graphql I save a record in redis with this code let vote = await voteRepository.save({ voterID, date, certified }); the type of ‘vote’ is ‘Entity’ but I want to send back to the client an object of type Vote: type Vote { voterID: String! date: String! certified:…