UNPKG

neo4j-driver-core

Version:
266 lines (265 loc) 11.2 kB
/** * Copyright (c) "Neo4j" * Neo4j Sweden AB [https://neo4j.com] * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import Record, { RecordShape } from './record'; import Result from './result'; import EagerResult from './result-eager'; import ResultSummary from './result-summary'; import { NumberOrInteger } from './graph-types'; import Integer from './integer'; type ResultTransformer<T> = (result: Result) => Promise<T>; /** * Protocol for transforming {@link Result}. * * @typedef {function<T>(result:Result):Promise<T>} ResultTransformer * @interface * * @see {@link resultTransformers} for provided implementations. * @see {@link Driver#executeQuery} for usage. */ /** * Defines the object which holds the common {@link ResultTransformer} used with {@link Driver#executeQuery}. */ declare class ResultTransformers { /** * Creates a {@link ResultTransformer} which transforms {@link Result} to {@link EagerResult} * by consuming the whole stream. * * This is the default implementation used in {@link Driver#executeQuery} * * @example * // This: * const { keys, records, summary } = await driver.executeQuery('CREATE (p:Person{ name: $name }) RETURN p', { name: 'Person1'}, { * resultTransformer: neo4j.resultTransformers.eagerResultTransformer() * }) * // is equivalent to: * const { keys, records, summary } = await driver.executeQuery('CREATE (p:Person{ name: $name }) RETURN p', { name: 'Person1'}) * * @returns {ResultTransformer<EagerResult<Entries>>} The result transformer * @alias {@link ResultTransformers#eager} */ eagerResultTransformer<Entries extends RecordShape = RecordShape>(): ResultTransformer<EagerResult<Entries>>; /** * Creates a {@link ResultTransformer} which transforms {@link Result} to {@link EagerResult} * by consuming the whole stream. * * This is the default implementation used in {@link Driver#executeQuery} and a alias to * {@link resultTransformers.eagerResultTransformer} * * @example * // This: * const { keys, records, summary } = await driver.executeQuery('CREATE (p:Person{ name: $name }) RETURN p', { name: 'Person1'}, { * resultTransformer: neo4j.resultTransformers.eager() * }) * // is equivalent to: * const { keys, records, summary } = await driver.executeQuery('CREATE (p:Person{ name: $name }) RETURN p', { name: 'Person1'}) * * @returns {ResultTransformer<EagerResult<Entries>>} The result transformer * @experimental this is a preview * @since 5.22.0 * @alias {@link ResultTransformers#eagerResultTransformer} */ eager<Entries extends RecordShape = RecordShape>(): ResultTransformer<EagerResult<Entries>>; /** * Creates a {@link ResultTransformer} which maps the {@link Record} in the result and collects it * along with the {@link ResultSummary} and {@link Result#keys}. * * NOTE: The config object requires map or/and collect to be valid. * * @example * // Mapping the records * const { keys, records, summary } = await driver.executeQuery('MATCH (p:Person{ age: $age }) RETURN p.name as name', { age: 25 }, { * resultTransformer: neo4j.resultTransformers.mappedResultTransformer({ * map(record) { * return record.get('name') * } * }) * }) * * records.forEach(name => console.log(`${name} has 25`)) * * @example * // Mapping records and collect result * const names = await driver.executeQuery('MATCH (p:Person{ age: $age }) RETURN p.name as name', { age: 25 }, { * resultTransformer: neo4j.resultTransformers.mappedResultTransformer({ * map(record) { * return record.get('name') * }, * collect(records, summary, keys) { * return records * } * }) * }) * * names.forEach(name => console.log(`${name} has 25`)) * * @example * // The transformer can be defined one and used everywhere * const getRecordsAsObjects = neo4j.resultTransformers.mappedResultTransformer({ * map(record) { * return record.toObject() * }, * collect(objects) { * return objects * } * }) * * // The usage in a driver.executeQuery * const objects = await driver.executeQuery('MATCH (p:Person{ age: $age }) RETURN p.name as name', { age: 25 }, { * resultTransformer: getRecordsAsObjects * }) * objects.forEach(object => console.log(`${object.name} has 25`)) * * * // The usage in session.executeRead * const objects = await session.executeRead(tx => getRecordsAsObjects(tx.run('MATCH (p:Person{ age: $age }) RETURN p.name as name'))) * objects.forEach(object => console.log(`${object.name} has 25`)) * * @param {object} config The result transformer configuration * @param {function(record:Record):R} [config.map=function(record) { return record }] Method called for mapping each record * @param {function(records:R[], summary:ResultSummary, keys:string[]):T} [config.collect=function(records, summary, keys) { return { records, summary, keys }}] Method called for mapping * the result data to the transformer output. * @returns {ResultTransformer<T>} The result transformer * @see {@link Driver#executeQuery} */ mappedResultTransformer<R = Record, T = { records: R[]; keys: string[]; summary: ResultSummary; }>(config: { map?: (rec: Record) => R | undefined; collect?: (records: R[], summary: ResultSummary, keys: string[]) => T; }): ResultTransformer<T>; /** * Creates a {@link ResultTransformer} which maps the {@link Record} in the result and collects it * along with the {@link ResultSummary} and {@link Result#keys}. * * NOTE: The config object requires map or/and collect to be valid. * * This method is a alias to {@link ResultTransformers#mappedResultTransformer} * * * @example * // Mapping the records * const { keys, records, summary } = await driver.executeQuery('MATCH (p:Person{ age: $age }) RETURN p.name as name', { age: 25 }, { * resultTransformer: neo4j.resultTransformers.mapped({ * map(record) { * return record.get('name') * } * }) * }) * * records.forEach(name => console.log(`${name} has 25`)) * * @example * // Mapping records and collect result * const names = await driver.executeQuery('MATCH (p:Person{ age: $age }) RETURN p.name as name', { age: 25 }, { * resultTransformer: neo4j.resultTransformers.mapped({ * map(record) { * return record.get('name') * }, * collect(records, summary, keys) { * return records * } * }) * }) * * names.forEach(name => console.log(`${name} has 25`)) * * @example * // The transformer can be defined one and used everywhere * const getRecordsAsObjects = neo4j.resultTransformers.mapped({ * map(record) { * return record.toObject() * }, * collect(objects) { * return objects * } * }) * * // The usage in a driver.executeQuery * const objects = await driver.executeQuery('MATCH (p:Person{ age: $age }) RETURN p.name as name', { age: 25 }, { * resultTransformer: getRecordsAsObjects * }) * objects.forEach(object => console.log(`${object.name} has 25`)) * * * // The usage in session.executeRead * const objects = await session.executeRead(tx => getRecordsAsObjects(tx.run('MATCH (p:Person{ age: $age }) RETURN p.name as name'))) * objects.forEach(object => console.log(`${object.name} has 25`)) * * @param {object} config The result transformer configuration * @param {function(record:Record):R} [config.map=function(record) { return record }] Method called for mapping each record * @param {function(records:R[], summary:ResultSummary, keys:string[]):T} [config.collect=function(records, summary, keys) { return { records, summary, keys }}] Method called for mapping * the result data to the transformer output. * @returns {ResultTransformer<T>} The result transformer * @experimental This is a preview feature * @alias {@link ResultTransformers#mappedResultTransformer} * @since 5.22.0 * @see {@link Driver#executeQuery} */ mapped<R = Record, T = { records: R[]; keys: string[]; summary: ResultSummary; }>(config: { map?: (rec: Record) => R | undefined; collect?: (records: R[], summary: ResultSummary, keys: string[]) => T; }): ResultTransformer<T>; /** * Creates a {@link ResultTransformer} which collects the first record {@link Record} of {@link Result} * and discard the rest of the records, if existent. * * @example * // Using in executeQuery * const maybeFirstRecord = await driver.executeQuery('MATCH (p:Person{ age: $age }) RETURN p.name as name', { age: 25 }, { * resultTransformer: neo4j.resultTransformers.first() * }) * * @example * // Using in other results * const record = await neo4j.resultTransformers.first()(result) * * * @template Entries The shape of the record. * @returns {ResultTransformer<Record<Entries>|undefined>} The result transformer * @see {@link Driver#executeQuery} * @experimental This is a preview feature. * @since 5.22.0 */ first<Entries extends RecordShape = RecordShape>(): ResultTransformer<Record<Entries> | undefined>; /** * Creates a {@link ResultTransformer} which consumes the result and returns the {@link ResultSummary}. * * This result transformer is a shortcut to `(result) => result.summary()`. * * @example * const summary = await driver.executeQuery('CREATE (p:Person{ name: $name }) RETURN p', { name: 'Person1'}, { * resultTransformer: neo4j.resultTransformers.summary() * }) * * @returns {ResultTransformer<ResultSummary<T>>} The result transformer * @see {@link Driver#executeQuery} * @experimental This is a preview feature */ summary<T extends NumberOrInteger = Integer>(): ResultTransformer<ResultSummary<T>>; } /** * Holds the common {@link ResultTransformer} used with {@link Driver#executeQuery}. */ declare const resultTransformers: ResultTransformers; export default resultTransformers; export type { ResultTransformer };