@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
8 lines • 488 B
TypeScript
import Cypher from "@neo4j/cypher-builder";
import { LOGICAL_OPERATORS } from "../../constants";
import type { ValueOf } from "../../utils/value-of";
type LogicalOperator = ValueOf<typeof LOGICAL_OPERATORS>;
export declare function getLogicalPredicate(graphQLOperator: LogicalOperator, predicates: Cypher.Predicate[]): Cypher.Predicate | undefined;
export declare function isLogicalOperator(key: unknown): key is LogicalOperator;
export {};
//# sourceMappingURL=logical-operators.d.ts.map