1.0.0 • Published 4 years ago

data-api-unwrap v1.0.0

Weekly downloads
9
License
BSD-3-Clause
Repository
github
Last release
4 years ago

data-api-unwrap

Unwrap AWS RDS Data API responses. Taken out of jeremydaly/data-api-client.

install

yarn add --dev data-api-unwrap
npm install --save-dev data-api-unwrap

usage

const UnWrap = require('data-api-unwrap');

const rds = new RDSDataService();

console.log(
  UnWrap(
    await rds
      .executeStatement({
        sql: 'SELECT * FROM categories',
        includeResultMetadata: true,
      })
      .promise(),
  ),
);
[
  {
    "created": "2019-11-12 22:00:11",
    "deleted": null,
    "description": null,
    "id": 1,
    "modified": "2019-11-12 22:15:25",
    "name": "Category 1"
  },
  {
    "created": "2019-11-12 22:17:11",
    "deleted": null,
    "description": "Description of Category 2",
    "id": 2,
    "modified": "2019-11-12 22:21:36",
    "name": "Category 2"
  }
]

license

BSD-3-Clause