33 lines
871 B
TypeScript

/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: GetOwnerData
// ====================================================
export interface GetOwnerData_leads {
__typename: "lead";
label: string | null;
value: any | null;
}
export interface GetOwnerData_opportunities {
__typename: "opportunity";
label: string | null;
value: any | null;
}
export interface GetOwnerData {
/**
* Интересы. statecode по умолчанию 0, можно отфильтровать по ownerid и/или domainName
*/
leads: (GetOwnerData_leads | null)[] | null;
opportunities: (GetOwnerData_opportunities | null)[] | null;
}
export interface GetOwnerDataVariables {
domainname?: string | null;
}