UNPKG

@jackchuka/gql-ingest

Version:

A CLI tool for ingesting data from files into a GraphQL API. Supports CSV, JSON, JSONL, and YAML file formats.

6 lines 232 B
import { DataReader, DataRow } from "./data-reader"; export declare class CsvReader extends DataReader { getSupportedExtensions(): string[]; readFile(filePath: string): Promise<DataRow[]>; } //# sourceMappingURL=csv.d.ts.map