mutation-cache-update

1.0.7 • Public • Published

mutation-cache-update

Very simple and small hook that can be used for updating local the cache while performing Apollo client add and delete mutation.

NPM JavaScript Style Guide

Install

npm install --save mutation-cache-update

Usage

import React from 'react'
import { useAddMutation, Loading } from 'mutation-cache-update'
import { gql } from 'apollo-boost';
 
const GET_TODOS = gql`
  query GetTodos {
    todos
  }
`;
 
const ADD_TODO = gql`
  mutation AddTodo($type: String!) {
    addTodo(type: $type) {
      id
      type
    }
  }
`;
 
const App = () => {
  const [addTodo, { error, loading, data }] = useAddMutation(
    ADD_TODO,
    GET_TODOS,
    'add_todo'/* mutation method name */,
    'get_todos' /* query method name */
  )
 
  
  if(loading) return <Loading>
  let input
  return (
    <div>
      <div>
        <form
          onSubmit={e => {
            e.preventDefault()
            addTodo({ variables: { type: input.value } })
            input.value = ''
          }}
        >
          <input
            ref={node => {
              input = node
            }}
          />
          <button type='submit'>Add Todo</button>
        </form>
      </div>
    </div>
  )
}
export default App
 

to perform delete mutation

import { useDeleteMutation, Loading } from 'mutation-cache-update'
 
  const [deleteTodo, { error, loading, data }] = useDeleteMutation(
      DELETE_TODOS,
      GET_TODOS,
      'delete_todos'/* mutation method name */,
      'get_todos' /* query method name */
    )
 
    deleteTodo({
      variables : id
    })
 

Loading indicator spinner

  if(loading) return <Loading/>

Contribution

Any suggestion is welcome.

License

MIT © ephremdeme


This hook is created using create-react-hook.

Dependencies (0)

    Dev Dependencies (46)

    Package Sidebar

    Install

    npm i mutation-cache-update

    Weekly Downloads

    6

    Version

    1.0.7

    License

    MIT

    Unpacked Size

    43.6 kB

    Total Files

    16

    Last publish

    Collaborators

    • epha123