python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How can I sanitize / serialize input data with @nestjs/graphql
I'm working on a NestJs app with graphql, and I'm trying to sanitize my resolvers inputs with class-transformer like this :
@InputType()
export class CreateUserInput {
@Field(() => String)
@Tra...
Hbd770
Votes: 0
Answers: 1
Is there any way to override the send method of NESTJS ClientTCP?
What I am trying to do is to have a client sending some extra data to the server via TCP call in NESTJS, but do not want to modify all the callers of the original send() method. So, was wondering if t...

Chun Young
Votes: 0
Answers: 1
redis v4 list sorted in reverse order
I am trying to get a list in reverse score order.
I am using node redis v4.0.1 which no longer supports client.ZREVRANGEBYSCORE
If I try await client.zRangeByScoreWithScores('rankings', '-inf', '+inf'...
Chris Hunter-Johnson
Votes: 0
Answers: 3
NestJS WebSocket
I use angular in the front end where I am learning to use rxjs-websockets. In backend I use nestjs, where i want to learn to use websockets. But every tutorial i see, they are explaning socket.io whic...
Subham
Votes: 0
Answers: 1