/* eslint-disable @typescript-eslint/no-explicit-any */ export type ImportResult = { vertices: any[]; edges: Edge[]; pagingContext?: Record; }; export type Edge = { label: string, inV: string, outV: string };