UNPKG

@neo4j/graphql

Version:

A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations

12 lines 559 B
import type { Driver } from "neo4j-driver"; import type { Neo4jGraphQLSchemaModel } from "../../schema-model/Neo4jGraphQLSchemaModel"; import type { Neo4jGraphQLSessionConfig } from "../Executor"; export interface AssertIndexesAndConstraintsOptions { create?: boolean; } export declare function assertIndexesAndConstraints({ driver, sessionConfig, schemaModel, }: { driver: Driver; sessionConfig?: Neo4jGraphQLSessionConfig; schemaModel: Neo4jGraphQLSchemaModel; }): Promise<void>; //# sourceMappingURL=asserts-indexes-and-constraints.d.ts.map