Showing results for "mutation"
lesson
How to Use GraphQL Mutations and QueriesThe newline Guide to Building Your First GraphQL Server with Node and TypeScriptIn this lesson, we'll look to mimic the listings retrieval and manipulation we had in our Express RESTful API but with GraphQL instead.
lesson
Build a GraphQL Mutation to Save Bookings and Test StripeTinyHouse: A Fullstack React Masterclass with TypeScript and GraphQL - Part TwoIn this lesson, we'll wrap-up what we've done in the last few lessons by now collecting all relevant information and triggering the `createBooking` mutation when a user is ready to confirm their booking.
lesson
Build a GraphQL Mutation to Store Listing Data and UploadsTinyHouse: A Fullstack React Masterclass with TypeScript and GraphQL - Part TwoThe majority of the work we've needed to do for the form shown in the `/host` page was completed in the last lesson. In this lesson, we collect the values a user is to enter in the form and when the user decides to submit the form, we'll trigger the `hostListing` mutation we have in our API and pass the relevant input along.
lesson
How to Build a React Header With a React Log Out MutationTinyHouse: A Fullstack React Masterclass with TypeScript and GraphQL - Part TwoA user is now able to successfully sign-in from the Login page. In this lesson, we'll spend some time creating the AppHeader component that will help allow users to navigate around our app.
lesson
How to Replace useQuery and useMutation With Apollo HooksTinyHouse: A Fullstack React Masterclass with TypeScript and GraphQLWith the Apollo client available everywhere in our app, we'll replace the use of the custom useQuery and useMutation Hooks with the variations provided to us from the React Apollo library.
lesson
How to Customize the React useMutation HookTinyHouse: A Fullstack React Masterclass with TypeScript and GraphQLIn this lesson, we'll create a custom useMutation Hook which will abstract the server fetch functionality needed to conduct a mutation from a component.