slonik-interceptor-query-normalisation

Normalizes Slonik query.

Usage no npm install needed!

<script type="module">
  import slonikInterceptorQueryNormalisation from 'https://cdn.skypack.dev/slonik-interceptor-query-normalisation';
</script>

README

slonik-interceptor-query-normalisation

Travis build status Coveralls NPM version Canonical Code Style Twitter Follow

Normalises Slonik query.

API

import {
  createQueryNormalisationInterceptor
} from 'slonik';

/**
 * @property stripComments Strips comments from the query (default: true).
 */
type ConfigurationType = {|
  +stripComments?: boolean
|};

(configuration?: ConfigurationType) => InterceptorType;

Example usage

import {
  createPool
} from 'slonik';
import {
  createQueryNormalisationInterceptor
} from 'slonik-interceptor-query-normalisation';

const interceptors = [
  createQueryNormalisationInterceptor({
    stripComments: true
  })
];

const connection = createPool('postgres://', {
  interceptors
});

connection.any(sql`
  -- Foo bar.
  SELECT
    id,
    full_name
  FROM person
`);

Evalutes query:

SELECT id, full_name FROM person