UNPKG

@liberation-data/drivine

Version:

Best and fastest graph database client for TypeScript / Node.js. Provides a level of abstraction for building highly scalable applications, without compromising architectural integrity

9 lines (8 loc) 406 B
import { PersistenceManager } from './PersistenceManager'; import { QuerySpecification } from '../query/QuerySpecification'; export declare class FinderOperations { readonly persistenceManager: PersistenceManager; constructor(persistenceManager: PersistenceManager); getOne<T>(spec: QuerySpecification<T>): Promise<T>; maybeGetOne<T>(spec: QuerySpecification<T>): Promise<T | undefined>; }