Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ParseJSONResultsPlugin

Parses JSON strings in query results into JSON objects.

This plugin can be useful with dialects that don't automatically parse JSON into objects and arrays but return JSON strings instead.

const db = new Kysely<DB>({
  ...
  plugins: [new ParseJSONResultsPlugin()]
})
class ParseJSONResultsPlugin implements KyselyPlugin {
transformResult(args: PluginTransformResultArgs): Promise<QueryResult<UnknownRow>>;
}

§Implements

§Methods

§

This is called for each query before it is executed. You can modify the query by transforming its OperationNode tree provided in args.node and returning the transformed tree. You'd usually want to use an OperationNodeTransformer for this.

If you need to pass some query-related data between this method and transformResult you can use a WeakMap with args.queryId as the key:

const plugin = {
  data: new WeakMap<QueryId, SomeData>(),

  transformQuery(args: PluginTransformQueryArgs): RootOperationNode {
    this.data.set(args.queryId, something)
    return args.node
  },

  transformResult(args: PluginTransformResultArgs): QueryResult<UnknownRow> {
    const data = this.data.get(args.queryId)
    return args.result
  }
}

You should use a WeakMap instead of a Map or some other strong references because transformQuery is not always matched by a call to transformResult which would leave orphaned items in the map and cause a memory leak.

§
transformResult(args: PluginTransformResultArgs): Promise<QueryResult<UnknownRow>>
[src]

This method is called for each query after it has been executed. The result of the query can be accessed through args.result. You can modify the result and return the modifier result.