Interface FeatureTableQueryRelatedRecordsOptions

interface FeatureTableQueryRelatedRecordsOptions {
    extraParams?: Record<string, string | number | boolean>;
    method?: QueryMethod;
    objectIds?: string | readonly number[];
    outFields?: string | string[];
    relationshipId: number;
    returnGeometry?: boolean;
    where?: string;
}

Properties

extraParams?: Record<string, string | number | boolean>
method?: QueryMethod
objectIds?: string | readonly number[]
outFields?: string | string[]
relationshipId: number
returnGeometry?: boolean
where?: string