/* 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'; fullname: string | null; leadid: any | null; } export interface GetOwnerData_opportunities { __typename: 'opportunity'; name: string | null; opportunityid: 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; }