export type ImportResult = { vertices: any[]; edges: Edge[]; pagingContext?: Record; }; export type Edge = { label: string; inV: string; outV: string; };