@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
21 lines • 884 B
TypeScript
import type { Node } from "../classes";
import type { CallbackBucketDeprecated } from "../classes/CallbackBucketDeprecated";
import type { Neo4jGraphQLTranslationContext } from "../types/neo4j-graphql-translation-context";
type CreateAndParams = {
create: string;
params: Record<string, unknown>;
authorizationPredicates: string[];
authorizationSubqueries: string[];
};
declare function createCreateAndParams({ input, varName, node, context, callbackBucket, withVars, topLevelNodeVariable, authorizationPrefix, }: {
input: any;
varName: string;
node: Node;
context: Neo4jGraphQLTranslationContext;
callbackBucket: CallbackBucketDeprecated;
withVars: string[];
topLevelNodeVariable?: string;
authorizationPrefix?: number[];
}): CreateAndParams;
export default createCreateAndParams;
//# sourceMappingURL=create-create-and-params.d.ts.map