Overcoming cookie limitations: SSO SAML feature with cross-domain compatibilityBy increasing the buffer_size_limit in the NGINX server, we successfully addressed the issue of a response cookie exceeding the buffer limit.
Undo a Git MergeYou can undo your merge commits with the git reset command. Git reset resets the current branch tip and also deletes any changes in the working directory and staging area.
Enabling binary support using the API GatewayWhile working on a file upload feature, we need to set up a server or the API Gateway so that it can accept the media types.
It's okay to watch coding tutorialsAs long as you are learning some new design patterns, architectures, and methods to solve the problem, it's okay to watch coding tutorials.
Server TimeoutsWhile working on a heavy computation or time-consuming API we need to consider the server timeouts.
Avoid Global StylesGlobal styles should be avoided for the same reasons global variables should be avoided. It seems global styles are more dangerous than the global variables.
GraphQL field to select data from the databaseWe can use GraphQL field to get only selected data from the database. Apollo server's info argument has made it easier for us