@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
11 lines • 374 B
TypeScript
import type { Annotation } from "./Annotation";
export declare class FilterableAnnotation implements Annotation {
readonly name = "filterable";
readonly byValue: boolean;
readonly byAggregate: boolean;
constructor({ byValue, byAggregate }: {
byValue: boolean;
byAggregate: boolean;
});
}
//# sourceMappingURL=FilterableAnnotation.d.ts.map