UNPKG

@neo4j/graphql

Version:

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

10 lines 375 B
import type { Annotation } from "./Annotation"; export type DefaultAnnotationValue = string | number | boolean; export declare class DefaultAnnotation implements Annotation { readonly name = "default"; readonly value: DefaultAnnotationValue; constructor({ value }: { value: DefaultAnnotationValue; }); } //# sourceMappingURL=DefaultAnnotation.d.ts.map