1.0.5 • Published 2 years ago

@naveen-bharathi/remove-graphql-typename v1.0.5

Weekly downloads
46
License
MIT
Repository
-
Last release
2 years ago

⚠️ This package has been deprecated in favour of remove-graphql-typename

remove-graphql-typename

Remove __typename from a GraphqQL response recursively.

Installation

if you are using npm, run

npm install --save @naveen-bharathi/remove-graphql-typename

or

if you are using yarn package manager, run

yarn add @naveen-bharathi/remove-graphql-typename

Example

Remove the key __typename from a GraphQL response.

import removeTypename from '@naveen-bharathi/remove-graphql-typename'; // ES6
// or
const removeTypename = require('@naveen-bharathi/remove-graphql-typename'); // ES5

const objectWithTypename = {
  'id': '12345',
  'name': 'javascript',
  '__typename': 'language',
  'books': [
    {
      'name': 'Learn JS',
      'author': 'Naveen Bharathi',
      '__typename': 'book'
    },
    {
      'name': 'A guide to TS',
      'author': 'Naveen',
      '__typename': 'book'
    }
  ]
};

console.log(objectWithTypename);
/* outputs ==>  
  {
    'id': '12345',
    'name': 'javascript',
    '__typename': 'language',
    'books': [
      {
        'name': 'Learn JS',
        'author': 'Naveen Bharathi',
        '__typename': 'book'
      },
      {
        'name': 'A guide to TS',
        'author': 'Naveen',
        '__typename': 'book'
      }
    ]
  }
*/

const objectWithoutTypename = removeTypename(objectWithTypename);

console.log(objectWithoutTypename);
/* outputs ==>  
  {
    'id': '12345',
    'name': 'javascript',
    'books': [
      {
        'name': 'Learn JS',
        'author': 'Naveen Bharathi',
      },
      {
        'name': 'A guide to TS',
        'author': 'Naveen',
      }
    ]
  }
*/

Parameters

removeTypename(obj)

  • obj {Object | Array} - object you want to remove the __typename(s) from.

Tests

tests

Open Issues

GitHub issues

LICENSE

MIT License

Copyright (c) 2020 Naveen Bharathi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.