@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
11 lines • 377 B
TypeScript
import type { Annotation } from "./Annotation";
export declare class PopulatedByAnnotation implements Annotation {
readonly name = "populatedBy";
readonly callback: string;
readonly operations: string[];
constructor({ callback, operations }: {
callback: string;
operations: string[];
});
}
//# sourceMappingURL=PopulatedByAnnotation.d.ts.map