/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * source_id: "", * tenant_id: "tenant_1234" * } */ export interface FetchGraphRelationsBySourceIdRequest { /** The source ID to fetch relations for */ source_id: string; /** Unique identifier for the tenant/organization */ tenant_id?: string; /** Whether to fetch relations for memories */ is_memory?: boolean; /** Optional sub-tenant identifier used to organize data within a tenant. If omitted, the default sub-tenant created during tenant setup will be used. */ sub_tenant_id?: string; /** Maximum number of relations to return */ limit?: number; }