Victor Banerjee

Results 4 issues of Victor Banerjee

I have implemented Ninja JWT Authentication with Ninja Extra. ``` @api_controller("post/", tags=["Post"]) class PostController: @route.post("", response=PostOut, auth=JWTAuth()) def create_post(self, payload: PostIn): post = Post.Object.Create(**payload.dict()) resturn post ``` I want to...

I am trying to implement masonic with GraphQL. But stuck in the process. How to implement Infinity Scroll with Graphql Cursor-based Pagination model?

I am new to React and Trying to implement infinity scroll with `useInfinityLoader` Hook. It works fine when on the page I implement but if I change the page and...

I want to use Material Ui for the front-end library. But it showing the error that `@mui/utils` library is not present. Normally with install `npm install @mui/material @emotion/react @emotion/styled` works...

question