@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
15 lines • 496 B
TypeScript
import type { ValueNode } from "graphql";
import type { AttributeType } from "../attribute/AttributeType";
export declare class Argument {
readonly name: string;
readonly type: AttributeType;
readonly defaultValue?: string;
readonly description?: string;
constructor({ name, type, defaultValue, description, }: {
name: string;
type: AttributeType;
defaultValue?: ValueNode;
description?: string;
});
}
//# sourceMappingURL=Argument.d.ts.map