Rishi BakshiforRishi Bakshi Blogrishibakshi.hashnode.dev·Oct 8, 2024Page Not Reflecting Updated Data After Mutation? Here's How to Fix ItWhen working with data mutations in Next.js, one common problem is when the page doesn’t update after adding or editing data. Imagine you’re adding a new to-do item via a server action, and even though the data is updated in the database, the changes...Discuss·10 likesYou Don't Know Next.jsMutations
Rishi BakshiforRishi Bakshi Blogrishibakshi.hashnode.dev·Sep 22, 2024Data Fetching: Why Server Actions Outperform Route HandlersOne of the common beginner mistakes I’ve encountered is misunderstanding the difference between when to use route handlers and when to use server actions for data handling in Next.js. With the introduction of server actions and server components in N...Discuss·1 likeYou Don't Know Next.jsserver actions
Shiwanshu Shubhamshiwanshudev.hashnode.dev·Aug 16, 2024Guide to Using Redux Toolkit Query MutationToday, we are going to learn how to add data using Redux Toolkit. In Redux Toolkit Query terms, changing data is called a mutation, and reading data is called a query. We will understand how to implement this and the logic behind it. We will also exp...Discuss·1 like·30 readsRedux
Danny Crastoblog.danwald.me·Aug 3, 2024Don't mutate your paginated QuerysetDjango's Paginator works to batch your query items into pages. Under the hood it uses lazy slicing which is accomplished in sql by offset and limit. Warning altering the data affects the limit/offset of proceeding paginated pages data ...DiscussDjango
Alain IglesiasProblog.aiherrera.com·Jun 3, 2024Learn the basic concepts of Next.js 14Introduction Next.js has long been a favored framework for developers seeking to build fast and efficient web applications. With the release of Next.js 14, there's much to be excited about. The evolution of web development tools and frameworks has al...Discuss·28 readsNextjsNext.js
Gagan BNgagan-bn.hashnode.dev·Apr 4, 2024Mutation observer in vanilla JSIntroduction to Mutation Observer in JavaScript Mutation Observer is a powerful API in JavaScript that simplifies the process of observing mutations in the DOM tree and notifying developers about the changes. In the past, developers had to rely on va...DiscussDOM
bhavya bojanapallibhavyabojanapalli.hashnode.dev·Oct 5, 2023Kubernetes Admission Controllers - Day 10Mutating Admission Controllers Purpose: Mutating Admission Controllers intercept incoming requests to the Kubernetes API server and can modify the objects being submitted. Their primary purpose is to make automatic changes or additions to resources...Discuss·17 likes·898 readsKubernetes
Ashish K Mishraashishkr619.hashnode.dev·Jun 15, 2023How to write "Create mutations" in React using Apollo ClientTo create mutations with React Apollo Client, you'll need to follow a few steps. Step 1: Set up your React project Create a new React project or navigate to your existing project directory. You can use create-react-app to quickly set up a new project...Discuss·103 readsReact
Nelson Franknelsonfrank.hashnode.dev·Apr 8, 2023Get started on GraphQL: Query and Mutation.GraphQL is a modern way of querying your API better than REST API. In this post, you will learn all the key elements that will help you understand GraphQL once and for all. Let's get started. What is GraphQL? GraphQL is a query language for APIs and...DiscussGraphQL