Interface GetFindingsVariables

interface GetFindingsVariables {
    after?: string;
    filter: {
        AND?: {
            OR: {
                category_in?: string[];
                cves_every?: {
                    cveId: string;
                };
                description_like?: string;
                title_like?: string;
            }[];
        }[];
        assetVersionRefId?: string;
        assetVersionRefId_in?: string[];
        category_in?: string[];
        currentStatus?: {
            status_in: string[];
        };
        deletedAt?: string;
        id?: string;
        id_in?: string[];
        mergedFindingRefId?: string;
        severity?: string;
    };
    first?: number;
    orderBy?: string[];
}

Properties

after?: string
filter: {
    AND?: {
        OR: {
            category_in?: string[];
            cves_every?: {
                cveId: string;
            };
            description_like?: string;
            title_like?: string;
        }[];
    }[];
    assetVersionRefId?: string;
    assetVersionRefId_in?: string[];
    category_in?: string[];
    currentStatus?: {
        status_in: string[];
    };
    deletedAt?: string;
    id?: string;
    id_in?: string[];
    mergedFindingRefId?: string;
    severity?: string;
}
first?: number
orderBy?: string[]