@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
10 lines • 381 B
TypeScript
import type { Annotation } from "./Annotation";
export type CoalesceAnnotationValue = string | number | boolean;
export declare class CoalesceAnnotation implements Annotation {
readonly name = "coalesce";
readonly value: CoalesceAnnotationValue;
constructor({ value }: {
value: CoalesceAnnotationValue;
});
}
//# sourceMappingURL=CoalesceAnnotation.d.ts.map