UNPKG

@neo4j/graphql

Version:

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

10 lines 378 B
import type { Node } from "../classes"; import type { Neo4jGraphQLTranslationContext } from "../types/neo4j-graphql-translation-context"; export default function translateCreate({ context, node, }: { context: Neo4jGraphQLTranslationContext; node: Node; }): Promise<{ cypher: string; params: Record<string, any>; }>; //# sourceMappingURL=translate-create.d.ts.map