UNPKG

@neo4j/graphql

Version:

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

21 lines 959 B
import type { Node } from "../classes"; import type { CallbackBucketDeprecated } from "../classes/CallbackBucketDeprecated"; import type { RelationField } from "../types"; import type { Neo4jGraphQLTranslationContext } from "../types/neo4j-graphql-translation-context"; declare function createConnectAndParams({ withVars, value, varName, relationField, parentVar, refNodes, context, callbackBucket, labelOverride, parentNode, isFirstLevel, source, indexPrefix, }: { withVars: string[]; value: any; varName: string; relationField: RelationField; parentVar: string; context: Neo4jGraphQLTranslationContext; callbackBucket: CallbackBucketDeprecated; refNodes: Node[]; labelOverride?: string; parentNode: Node; isFirstLevel?: boolean; source: "CREATE" | "UPDATE" | "CONNECT"; indexPrefix?: string; }): [string, any]; export default createConnectAndParams; //# sourceMappingURL=create-connect-and-params.d.ts.map