cf-service-sdk-dharani 0.0.63 → 0.0.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/graphql.d.ts +244 -0
- package/dist/generated/graphql.js +195 -0
- package/dist/mutations.js +64 -0
- package/dist/queries.js +131 -0
- package/package.json +1 -1
|
@@ -314,6 +314,14 @@ export declare enum AppNotificationNotificationTypeChoices {
|
|
|
314
314
|
/** Warning */
|
|
315
315
|
Warning = "WARNING"
|
|
316
316
|
}
|
|
317
|
+
export type AuditLogItemType = {
|
|
318
|
+
__typename?: 'AuditLogItemType';
|
|
319
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
320
|
+
id: Scalars['ID']['output'];
|
|
321
|
+
timestamp: Scalars['DateTime']['output'];
|
|
322
|
+
title: Scalars['String']['output'];
|
|
323
|
+
type: Scalars['String']['output'];
|
|
324
|
+
};
|
|
317
325
|
/** BusinessProfileType */
|
|
318
326
|
export type BusinessProfileType = {
|
|
319
327
|
__typename?: 'BusinessProfileType';
|
|
@@ -574,6 +582,7 @@ export type CampaignContactItemType = {
|
|
|
574
582
|
companyId?: Maybe<Scalars['ID']['output']>;
|
|
575
583
|
/** Company name of the contact */
|
|
576
584
|
companyName?: Maybe<Scalars['String']['output']>;
|
|
585
|
+
companyOwners?: Maybe<Array<Maybe<CompanyOwnersObject>>>;
|
|
577
586
|
/** State of the contact */
|
|
578
587
|
companyState?: Maybe<Scalars['String']['output']>;
|
|
579
588
|
/** ID of the contact */
|
|
@@ -979,6 +988,8 @@ export type CompanyObject = {
|
|
|
979
988
|
address1?: Maybe<Scalars['String']['output']>;
|
|
980
989
|
address2?: Maybe<Scalars['String']['output']>;
|
|
981
990
|
annualRevenue?: Maybe<Scalars['String']['output']>;
|
|
991
|
+
/** Audit logs for the company */
|
|
992
|
+
auditLogs?: Maybe<Array<Maybe<AuditLogItemType>>>;
|
|
982
993
|
/** Average score of all matched products for this company */
|
|
983
994
|
averageScore?: Maybe<Scalars['Float']['output']>;
|
|
984
995
|
city?: Maybe<Scalars['String']['output']>;
|
|
@@ -1150,6 +1161,7 @@ export type ContactObject = {
|
|
|
1150
1161
|
__typename?: 'ContactObject';
|
|
1151
1162
|
companyId?: Maybe<Scalars['ID']['output']>;
|
|
1152
1163
|
companyName?: Maybe<Scalars['String']['output']>;
|
|
1164
|
+
companyOwners?: Maybe<Array<Maybe<CompanyOwnersObject>>>;
|
|
1153
1165
|
contactLog?: Maybe<Array<Maybe<ContactLogObject>>>;
|
|
1154
1166
|
email?: Maybe<Scalars['String']['output']>;
|
|
1155
1167
|
firstName?: Maybe<Scalars['String']['output']>;
|
|
@@ -3759,6 +3771,18 @@ export type CreateCompanyMutation = {
|
|
|
3759
3771
|
totalReplied?: number | null;
|
|
3760
3772
|
totalBounced?: number | null;
|
|
3761
3773
|
} | null;
|
|
3774
|
+
companyOwners?: Array<{
|
|
3775
|
+
__typename?: 'CompanyOwnersObject';
|
|
3776
|
+
id?: string | null;
|
|
3777
|
+
user?: {
|
|
3778
|
+
__typename?: 'UserType';
|
|
3779
|
+
id?: string | null;
|
|
3780
|
+
email?: string | null;
|
|
3781
|
+
firstName?: string | null;
|
|
3782
|
+
lastName?: string | null;
|
|
3783
|
+
picture?: string | null;
|
|
3784
|
+
} | null;
|
|
3785
|
+
} | null> | null;
|
|
3762
3786
|
} | null> | null;
|
|
3763
3787
|
productMetalScores?: Array<{
|
|
3764
3788
|
__typename?: 'CompanyProductMetalScoreObject';
|
|
@@ -4258,6 +4282,14 @@ export type CreateCompanyMutation = {
|
|
|
4258
4282
|
picture?: string | null;
|
|
4259
4283
|
} | null;
|
|
4260
4284
|
} | null> | null;
|
|
4285
|
+
auditLogs?: Array<{
|
|
4286
|
+
__typename?: 'AuditLogItemType';
|
|
4287
|
+
id: string;
|
|
4288
|
+
type: string;
|
|
4289
|
+
title: string;
|
|
4290
|
+
description?: string | null;
|
|
4291
|
+
timestamp: any;
|
|
4292
|
+
} | null> | null;
|
|
4261
4293
|
industry?: {
|
|
4262
4294
|
__typename?: 'IndustryTypeObject';
|
|
4263
4295
|
id?: string | null;
|
|
@@ -4708,6 +4740,18 @@ export type CreateContactMutation = {
|
|
|
4708
4740
|
totalReplied?: number | null;
|
|
4709
4741
|
totalBounced?: number | null;
|
|
4710
4742
|
} | null;
|
|
4743
|
+
companyOwners?: Array<{
|
|
4744
|
+
__typename?: 'CompanyOwnersObject';
|
|
4745
|
+
id?: string | null;
|
|
4746
|
+
user?: {
|
|
4747
|
+
__typename?: 'UserType';
|
|
4748
|
+
id?: string | null;
|
|
4749
|
+
email?: string | null;
|
|
4750
|
+
firstName?: string | null;
|
|
4751
|
+
lastName?: string | null;
|
|
4752
|
+
picture?: string | null;
|
|
4753
|
+
} | null;
|
|
4754
|
+
} | null> | null;
|
|
4711
4755
|
} | null;
|
|
4712
4756
|
} | null;
|
|
4713
4757
|
};
|
|
@@ -5824,6 +5868,18 @@ export type SendEmailToContactMutation = {
|
|
|
5824
5868
|
totalReplied?: number | null;
|
|
5825
5869
|
totalBounced?: number | null;
|
|
5826
5870
|
} | null;
|
|
5871
|
+
companyOwners?: Array<{
|
|
5872
|
+
__typename?: 'CompanyOwnersObject';
|
|
5873
|
+
id?: string | null;
|
|
5874
|
+
user?: {
|
|
5875
|
+
__typename?: 'UserType';
|
|
5876
|
+
id?: string | null;
|
|
5877
|
+
email?: string | null;
|
|
5878
|
+
firstName?: string | null;
|
|
5879
|
+
lastName?: string | null;
|
|
5880
|
+
picture?: string | null;
|
|
5881
|
+
} | null;
|
|
5882
|
+
} | null> | null;
|
|
5827
5883
|
} | null;
|
|
5828
5884
|
} | null;
|
|
5829
5885
|
} | null;
|
|
@@ -6405,6 +6461,18 @@ export type UpdateCompanyMutation = {
|
|
|
6405
6461
|
totalReplied?: number | null;
|
|
6406
6462
|
totalBounced?: number | null;
|
|
6407
6463
|
} | null;
|
|
6464
|
+
companyOwners?: Array<{
|
|
6465
|
+
__typename?: 'CompanyOwnersObject';
|
|
6466
|
+
id?: string | null;
|
|
6467
|
+
user?: {
|
|
6468
|
+
__typename?: 'UserType';
|
|
6469
|
+
id?: string | null;
|
|
6470
|
+
email?: string | null;
|
|
6471
|
+
firstName?: string | null;
|
|
6472
|
+
lastName?: string | null;
|
|
6473
|
+
picture?: string | null;
|
|
6474
|
+
} | null;
|
|
6475
|
+
} | null> | null;
|
|
6408
6476
|
} | null> | null;
|
|
6409
6477
|
productMetalScores?: Array<{
|
|
6410
6478
|
__typename?: 'CompanyProductMetalScoreObject';
|
|
@@ -6904,6 +6972,14 @@ export type UpdateCompanyMutation = {
|
|
|
6904
6972
|
picture?: string | null;
|
|
6905
6973
|
} | null;
|
|
6906
6974
|
} | null> | null;
|
|
6975
|
+
auditLogs?: Array<{
|
|
6976
|
+
__typename?: 'AuditLogItemType';
|
|
6977
|
+
id: string;
|
|
6978
|
+
type: string;
|
|
6979
|
+
title: string;
|
|
6980
|
+
description?: string | null;
|
|
6981
|
+
timestamp: any;
|
|
6982
|
+
} | null> | null;
|
|
6907
6983
|
industry?: {
|
|
6908
6984
|
__typename?: 'IndustryTypeObject';
|
|
6909
6985
|
id?: string | null;
|
|
@@ -7354,6 +7430,18 @@ export type UpdateContactMutation = {
|
|
|
7354
7430
|
totalReplied?: number | null;
|
|
7355
7431
|
totalBounced?: number | null;
|
|
7356
7432
|
} | null;
|
|
7433
|
+
companyOwners?: Array<{
|
|
7434
|
+
__typename?: 'CompanyOwnersObject';
|
|
7435
|
+
id?: string | null;
|
|
7436
|
+
user?: {
|
|
7437
|
+
__typename?: 'UserType';
|
|
7438
|
+
id?: string | null;
|
|
7439
|
+
email?: string | null;
|
|
7440
|
+
firstName?: string | null;
|
|
7441
|
+
lastName?: string | null;
|
|
7442
|
+
picture?: string | null;
|
|
7443
|
+
} | null;
|
|
7444
|
+
} | null> | null;
|
|
7357
7445
|
} | null;
|
|
7358
7446
|
} | null;
|
|
7359
7447
|
};
|
|
@@ -8515,6 +8603,18 @@ export type CampaignContactsQuery = {
|
|
|
8515
8603
|
noteType?: string | null;
|
|
8516
8604
|
noteId?: string | null;
|
|
8517
8605
|
} | null;
|
|
8606
|
+
companyOwners?: Array<{
|
|
8607
|
+
__typename?: 'CompanyOwnersObject';
|
|
8608
|
+
id?: string | null;
|
|
8609
|
+
user?: {
|
|
8610
|
+
__typename?: 'UserType';
|
|
8611
|
+
id?: string | null;
|
|
8612
|
+
email?: string | null;
|
|
8613
|
+
firstName?: string | null;
|
|
8614
|
+
lastName?: string | null;
|
|
8615
|
+
picture?: string | null;
|
|
8616
|
+
} | null;
|
|
8617
|
+
} | null> | null;
|
|
8518
8618
|
} | null> | null;
|
|
8519
8619
|
pagination?: {
|
|
8520
8620
|
__typename?: 'PaginationInfo';
|
|
@@ -8601,6 +8701,18 @@ export type CampaignLogsQuery = {
|
|
|
8601
8701
|
totalReplied?: number | null;
|
|
8602
8702
|
totalBounced?: number | null;
|
|
8603
8703
|
} | null;
|
|
8704
|
+
companyOwners?: Array<{
|
|
8705
|
+
__typename?: 'CompanyOwnersObject';
|
|
8706
|
+
id?: string | null;
|
|
8707
|
+
user?: {
|
|
8708
|
+
__typename?: 'UserType';
|
|
8709
|
+
id?: string | null;
|
|
8710
|
+
email?: string | null;
|
|
8711
|
+
firstName?: string | null;
|
|
8712
|
+
lastName?: string | null;
|
|
8713
|
+
picture?: string | null;
|
|
8714
|
+
} | null;
|
|
8715
|
+
} | null> | null;
|
|
8604
8716
|
} | null;
|
|
8605
8717
|
campaignStats?: {
|
|
8606
8718
|
__typename?: 'CampaignContactStatsType';
|
|
@@ -8769,6 +8881,18 @@ export type CampaignLogsQuery = {
|
|
|
8769
8881
|
totalReplied?: number | null;
|
|
8770
8882
|
totalBounced?: number | null;
|
|
8771
8883
|
} | null;
|
|
8884
|
+
companyOwners?: Array<{
|
|
8885
|
+
__typename?: 'CompanyOwnersObject';
|
|
8886
|
+
id?: string | null;
|
|
8887
|
+
user?: {
|
|
8888
|
+
__typename?: 'UserType';
|
|
8889
|
+
id?: string | null;
|
|
8890
|
+
email?: string | null;
|
|
8891
|
+
firstName?: string | null;
|
|
8892
|
+
lastName?: string | null;
|
|
8893
|
+
picture?: string | null;
|
|
8894
|
+
} | null;
|
|
8895
|
+
} | null> | null;
|
|
8772
8896
|
} | null;
|
|
8773
8897
|
} | null> | null;
|
|
8774
8898
|
} | null> | null;
|
|
@@ -9064,6 +9188,18 @@ export type CompaniesQuery = {
|
|
|
9064
9188
|
totalReplied?: number | null;
|
|
9065
9189
|
totalBounced?: number | null;
|
|
9066
9190
|
} | null;
|
|
9191
|
+
companyOwners?: Array<{
|
|
9192
|
+
__typename?: 'CompanyOwnersObject';
|
|
9193
|
+
id?: string | null;
|
|
9194
|
+
user?: {
|
|
9195
|
+
__typename?: 'UserType';
|
|
9196
|
+
id?: string | null;
|
|
9197
|
+
email?: string | null;
|
|
9198
|
+
firstName?: string | null;
|
|
9199
|
+
lastName?: string | null;
|
|
9200
|
+
picture?: string | null;
|
|
9201
|
+
} | null;
|
|
9202
|
+
} | null> | null;
|
|
9067
9203
|
} | null> | null;
|
|
9068
9204
|
productMetalScores?: Array<{
|
|
9069
9205
|
__typename?: 'CompanyProductMetalScoreObject';
|
|
@@ -9453,6 +9589,14 @@ export type CompaniesQuery = {
|
|
|
9453
9589
|
picture?: string | null;
|
|
9454
9590
|
} | null;
|
|
9455
9591
|
} | null> | null;
|
|
9592
|
+
auditLogs?: Array<{
|
|
9593
|
+
__typename?: 'AuditLogItemType';
|
|
9594
|
+
id: string;
|
|
9595
|
+
type: string;
|
|
9596
|
+
title: string;
|
|
9597
|
+
description?: string | null;
|
|
9598
|
+
timestamp: any;
|
|
9599
|
+
} | null> | null;
|
|
9456
9600
|
industry?: {
|
|
9457
9601
|
__typename?: 'IndustryTypeObject';
|
|
9458
9602
|
id?: string | null;
|
|
@@ -9672,6 +9816,18 @@ export type CompanyQuery = {
|
|
|
9672
9816
|
totalReplied?: number | null;
|
|
9673
9817
|
totalBounced?: number | null;
|
|
9674
9818
|
} | null;
|
|
9819
|
+
companyOwners?: Array<{
|
|
9820
|
+
__typename?: 'CompanyOwnersObject';
|
|
9821
|
+
id?: string | null;
|
|
9822
|
+
user?: {
|
|
9823
|
+
__typename?: 'UserType';
|
|
9824
|
+
id?: string | null;
|
|
9825
|
+
email?: string | null;
|
|
9826
|
+
firstName?: string | null;
|
|
9827
|
+
lastName?: string | null;
|
|
9828
|
+
picture?: string | null;
|
|
9829
|
+
} | null;
|
|
9830
|
+
} | null> | null;
|
|
9675
9831
|
} | null> | null;
|
|
9676
9832
|
productMetalScores?: Array<{
|
|
9677
9833
|
__typename?: 'CompanyProductMetalScoreObject';
|
|
@@ -10171,6 +10327,14 @@ export type CompanyQuery = {
|
|
|
10171
10327
|
picture?: string | null;
|
|
10172
10328
|
} | null;
|
|
10173
10329
|
} | null> | null;
|
|
10330
|
+
auditLogs?: Array<{
|
|
10331
|
+
__typename?: 'AuditLogItemType';
|
|
10332
|
+
id: string;
|
|
10333
|
+
type: string;
|
|
10334
|
+
title: string;
|
|
10335
|
+
description?: string | null;
|
|
10336
|
+
timestamp: any;
|
|
10337
|
+
} | null> | null;
|
|
10174
10338
|
industry?: {
|
|
10175
10339
|
__typename?: 'IndustryTypeObject';
|
|
10176
10340
|
id?: string | null;
|
|
@@ -10936,6 +11100,18 @@ export type ContactQuery = {
|
|
|
10936
11100
|
totalReplied?: number | null;
|
|
10937
11101
|
totalBounced?: number | null;
|
|
10938
11102
|
} | null;
|
|
11103
|
+
companyOwners?: Array<{
|
|
11104
|
+
__typename?: 'CompanyOwnersObject';
|
|
11105
|
+
id?: string | null;
|
|
11106
|
+
user?: {
|
|
11107
|
+
__typename?: 'UserType';
|
|
11108
|
+
id?: string | null;
|
|
11109
|
+
email?: string | null;
|
|
11110
|
+
firstName?: string | null;
|
|
11111
|
+
lastName?: string | null;
|
|
11112
|
+
picture?: string | null;
|
|
11113
|
+
} | null;
|
|
11114
|
+
} | null> | null;
|
|
10939
11115
|
} | null;
|
|
10940
11116
|
};
|
|
10941
11117
|
export type ContactsQueryVariables = Exact<{
|
|
@@ -11006,6 +11182,18 @@ export type ContactsQuery = {
|
|
|
11006
11182
|
totalReplied?: number | null;
|
|
11007
11183
|
totalBounced?: number | null;
|
|
11008
11184
|
} | null;
|
|
11185
|
+
companyOwners?: Array<{
|
|
11186
|
+
__typename?: 'CompanyOwnersObject';
|
|
11187
|
+
id?: string | null;
|
|
11188
|
+
user?: {
|
|
11189
|
+
__typename?: 'UserType';
|
|
11190
|
+
id?: string | null;
|
|
11191
|
+
email?: string | null;
|
|
11192
|
+
firstName?: string | null;
|
|
11193
|
+
lastName?: string | null;
|
|
11194
|
+
picture?: string | null;
|
|
11195
|
+
} | null;
|
|
11196
|
+
} | null> | null;
|
|
11009
11197
|
} | null> | null;
|
|
11010
11198
|
};
|
|
11011
11199
|
export type ContactsInSegmentQueryVariables = Exact<{
|
|
@@ -11079,6 +11267,18 @@ export type ContactsInSegmentQuery = {
|
|
|
11079
11267
|
totalReplied?: number | null;
|
|
11080
11268
|
totalBounced?: number | null;
|
|
11081
11269
|
} | null;
|
|
11270
|
+
companyOwners?: Array<{
|
|
11271
|
+
__typename?: 'CompanyOwnersObject';
|
|
11272
|
+
id?: string | null;
|
|
11273
|
+
user?: {
|
|
11274
|
+
__typename?: 'UserType';
|
|
11275
|
+
id?: string | null;
|
|
11276
|
+
email?: string | null;
|
|
11277
|
+
firstName?: string | null;
|
|
11278
|
+
lastName?: string | null;
|
|
11279
|
+
picture?: string | null;
|
|
11280
|
+
} | null;
|
|
11281
|
+
} | null> | null;
|
|
11082
11282
|
} | null> | null;
|
|
11083
11283
|
pagination?: {
|
|
11084
11284
|
__typename?: 'PaginationInfo';
|
|
@@ -11475,6 +11675,18 @@ export type RecentHistoryQuery = {
|
|
|
11475
11675
|
totalReplied?: number | null;
|
|
11476
11676
|
totalBounced?: number | null;
|
|
11477
11677
|
} | null;
|
|
11678
|
+
companyOwners?: Array<{
|
|
11679
|
+
__typename?: 'CompanyOwnersObject';
|
|
11680
|
+
id?: string | null;
|
|
11681
|
+
user?: {
|
|
11682
|
+
__typename?: 'UserType';
|
|
11683
|
+
id?: string | null;
|
|
11684
|
+
email?: string | null;
|
|
11685
|
+
firstName?: string | null;
|
|
11686
|
+
lastName?: string | null;
|
|
11687
|
+
picture?: string | null;
|
|
11688
|
+
} | null;
|
|
11689
|
+
} | null> | null;
|
|
11478
11690
|
} | null;
|
|
11479
11691
|
company?: {
|
|
11480
11692
|
__typename?: 'CompanyObject';
|
|
@@ -11626,6 +11838,18 @@ export type RecentHistoryQuery = {
|
|
|
11626
11838
|
totalReplied?: number | null;
|
|
11627
11839
|
totalBounced?: number | null;
|
|
11628
11840
|
} | null;
|
|
11841
|
+
companyOwners?: Array<{
|
|
11842
|
+
__typename?: 'CompanyOwnersObject';
|
|
11843
|
+
id?: string | null;
|
|
11844
|
+
user?: {
|
|
11845
|
+
__typename?: 'UserType';
|
|
11846
|
+
id?: string | null;
|
|
11847
|
+
email?: string | null;
|
|
11848
|
+
firstName?: string | null;
|
|
11849
|
+
lastName?: string | null;
|
|
11850
|
+
picture?: string | null;
|
|
11851
|
+
} | null;
|
|
11852
|
+
} | null> | null;
|
|
11629
11853
|
} | null> | null;
|
|
11630
11854
|
productMetalScores?: Array<{
|
|
11631
11855
|
__typename?: 'CompanyProductMetalScoreObject';
|
|
@@ -11981,6 +12205,14 @@ export type RecentHistoryQuery = {
|
|
|
11981
12205
|
picture?: string | null;
|
|
11982
12206
|
} | null;
|
|
11983
12207
|
} | null> | null;
|
|
12208
|
+
auditLogs?: Array<{
|
|
12209
|
+
__typename?: 'AuditLogItemType';
|
|
12210
|
+
id: string;
|
|
12211
|
+
type: string;
|
|
12212
|
+
title: string;
|
|
12213
|
+
description?: string | null;
|
|
12214
|
+
timestamp: any;
|
|
12215
|
+
} | null> | null;
|
|
11984
12216
|
industry?: {
|
|
11985
12217
|
__typename?: 'IndustryTypeObject';
|
|
11986
12218
|
id?: string | null;
|
|
@@ -12137,6 +12369,18 @@ export type SearchContactsQuery = {
|
|
|
12137
12369
|
totalReplied?: number | null;
|
|
12138
12370
|
totalBounced?: number | null;
|
|
12139
12371
|
} | null;
|
|
12372
|
+
companyOwners?: Array<{
|
|
12373
|
+
__typename?: 'CompanyOwnersObject';
|
|
12374
|
+
id?: string | null;
|
|
12375
|
+
user?: {
|
|
12376
|
+
__typename?: 'UserType';
|
|
12377
|
+
id?: string | null;
|
|
12378
|
+
email?: string | null;
|
|
12379
|
+
firstName?: string | null;
|
|
12380
|
+
lastName?: string | null;
|
|
12381
|
+
picture?: string | null;
|
|
12382
|
+
} | null;
|
|
12383
|
+
} | null> | null;
|
|
12140
12384
|
} | null> | null;
|
|
12141
12385
|
pagination?: {
|
|
12142
12386
|
__typename?: 'PaginationInfo';
|
|
@@ -1520,6 +1520,16 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
|
|
|
1520
1520
|
totalReplied
|
|
1521
1521
|
totalBounced
|
|
1522
1522
|
}
|
|
1523
|
+
companyOwners {
|
|
1524
|
+
id
|
|
1525
|
+
user {
|
|
1526
|
+
id
|
|
1527
|
+
email
|
|
1528
|
+
firstName
|
|
1529
|
+
lastName
|
|
1530
|
+
picture
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1523
1533
|
isProspect
|
|
1524
1534
|
}
|
|
1525
1535
|
productMetalScores {
|
|
@@ -1983,6 +1993,13 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
|
|
|
1983
1993
|
picture
|
|
1984
1994
|
}
|
|
1985
1995
|
}
|
|
1996
|
+
auditLogs {
|
|
1997
|
+
id
|
|
1998
|
+
type
|
|
1999
|
+
title
|
|
2000
|
+
description
|
|
2001
|
+
timestamp
|
|
2002
|
+
}
|
|
1986
2003
|
pk
|
|
1987
2004
|
industry {
|
|
1988
2005
|
industrySector {
|
|
@@ -2441,6 +2458,16 @@ exports.CreateContactDocument = (0, client_1.gql) `
|
|
|
2441
2458
|
totalReplied
|
|
2442
2459
|
totalBounced
|
|
2443
2460
|
}
|
|
2461
|
+
companyOwners {
|
|
2462
|
+
id
|
|
2463
|
+
user {
|
|
2464
|
+
id
|
|
2465
|
+
email
|
|
2466
|
+
firstName
|
|
2467
|
+
lastName
|
|
2468
|
+
picture
|
|
2469
|
+
}
|
|
2470
|
+
}
|
|
2444
2471
|
isProspect
|
|
2445
2472
|
}
|
|
2446
2473
|
}
|
|
@@ -4111,6 +4138,16 @@ exports.SendEmailToContactDocument = (0, client_1.gql) `
|
|
|
4111
4138
|
totalReplied
|
|
4112
4139
|
totalBounced
|
|
4113
4140
|
}
|
|
4141
|
+
companyOwners {
|
|
4142
|
+
id
|
|
4143
|
+
user {
|
|
4144
|
+
id
|
|
4145
|
+
email
|
|
4146
|
+
firstName
|
|
4147
|
+
lastName
|
|
4148
|
+
picture
|
|
4149
|
+
}
|
|
4150
|
+
}
|
|
4114
4151
|
isProspect
|
|
4115
4152
|
}
|
|
4116
4153
|
sentAt
|
|
@@ -4856,6 +4893,16 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
|
|
|
4856
4893
|
totalReplied
|
|
4857
4894
|
totalBounced
|
|
4858
4895
|
}
|
|
4896
|
+
companyOwners {
|
|
4897
|
+
id
|
|
4898
|
+
user {
|
|
4899
|
+
id
|
|
4900
|
+
email
|
|
4901
|
+
firstName
|
|
4902
|
+
lastName
|
|
4903
|
+
picture
|
|
4904
|
+
}
|
|
4905
|
+
}
|
|
4859
4906
|
isProspect
|
|
4860
4907
|
}
|
|
4861
4908
|
productMetalScores {
|
|
@@ -5319,6 +5366,13 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
|
|
|
5319
5366
|
picture
|
|
5320
5367
|
}
|
|
5321
5368
|
}
|
|
5369
|
+
auditLogs {
|
|
5370
|
+
id
|
|
5371
|
+
type
|
|
5372
|
+
title
|
|
5373
|
+
description
|
|
5374
|
+
timestamp
|
|
5375
|
+
}
|
|
5322
5376
|
pk
|
|
5323
5377
|
industry {
|
|
5324
5378
|
industrySector {
|
|
@@ -5777,6 +5831,16 @@ exports.UpdateContactDocument = (0, client_1.gql) `
|
|
|
5777
5831
|
totalReplied
|
|
5778
5832
|
totalBounced
|
|
5779
5833
|
}
|
|
5834
|
+
companyOwners {
|
|
5835
|
+
id
|
|
5836
|
+
user {
|
|
5837
|
+
id
|
|
5838
|
+
email
|
|
5839
|
+
firstName
|
|
5840
|
+
lastName
|
|
5841
|
+
picture
|
|
5842
|
+
}
|
|
5843
|
+
}
|
|
5780
5844
|
isProspect
|
|
5781
5845
|
}
|
|
5782
5846
|
}
|
|
@@ -7253,6 +7317,16 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
|
|
|
7253
7317
|
noteType
|
|
7254
7318
|
noteId
|
|
7255
7319
|
}
|
|
7320
|
+
companyOwners {
|
|
7321
|
+
id
|
|
7322
|
+
user {
|
|
7323
|
+
id
|
|
7324
|
+
email
|
|
7325
|
+
firstName
|
|
7326
|
+
lastName
|
|
7327
|
+
picture
|
|
7328
|
+
}
|
|
7329
|
+
}
|
|
7256
7330
|
}
|
|
7257
7331
|
pagination {
|
|
7258
7332
|
currentPage
|
|
@@ -7355,6 +7429,16 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
|
|
|
7355
7429
|
totalReplied
|
|
7356
7430
|
totalBounced
|
|
7357
7431
|
}
|
|
7432
|
+
companyOwners {
|
|
7433
|
+
id
|
|
7434
|
+
user {
|
|
7435
|
+
id
|
|
7436
|
+
email
|
|
7437
|
+
firstName
|
|
7438
|
+
lastName
|
|
7439
|
+
picture
|
|
7440
|
+
}
|
|
7441
|
+
}
|
|
7358
7442
|
isProspect
|
|
7359
7443
|
}
|
|
7360
7444
|
campaignStats {
|
|
@@ -7495,6 +7579,16 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
|
|
|
7495
7579
|
totalReplied
|
|
7496
7580
|
totalBounced
|
|
7497
7581
|
}
|
|
7582
|
+
companyOwners {
|
|
7583
|
+
id
|
|
7584
|
+
user {
|
|
7585
|
+
id
|
|
7586
|
+
email
|
|
7587
|
+
firstName
|
|
7588
|
+
lastName
|
|
7589
|
+
picture
|
|
7590
|
+
}
|
|
7591
|
+
}
|
|
7498
7592
|
isProspect
|
|
7499
7593
|
}
|
|
7500
7594
|
sentAt
|
|
@@ -7851,6 +7945,16 @@ exports.CompaniesDocument = (0, client_1.gql) `
|
|
|
7851
7945
|
totalReplied
|
|
7852
7946
|
totalBounced
|
|
7853
7947
|
}
|
|
7948
|
+
companyOwners {
|
|
7949
|
+
id
|
|
7950
|
+
user {
|
|
7951
|
+
id
|
|
7952
|
+
email
|
|
7953
|
+
firstName
|
|
7954
|
+
lastName
|
|
7955
|
+
picture
|
|
7956
|
+
}
|
|
7957
|
+
}
|
|
7854
7958
|
isProspect
|
|
7855
7959
|
}
|
|
7856
7960
|
productMetalScores {
|
|
@@ -8212,6 +8316,13 @@ exports.CompaniesDocument = (0, client_1.gql) `
|
|
|
8212
8316
|
picture
|
|
8213
8317
|
}
|
|
8214
8318
|
}
|
|
8319
|
+
auditLogs {
|
|
8320
|
+
id
|
|
8321
|
+
type
|
|
8322
|
+
title
|
|
8323
|
+
description
|
|
8324
|
+
timestamp
|
|
8325
|
+
}
|
|
8215
8326
|
pk
|
|
8216
8327
|
industry {
|
|
8217
8328
|
industrySector {
|
|
@@ -8437,6 +8548,16 @@ exports.CompanyDocument = (0, client_1.gql) `
|
|
|
8437
8548
|
totalReplied
|
|
8438
8549
|
totalBounced
|
|
8439
8550
|
}
|
|
8551
|
+
companyOwners {
|
|
8552
|
+
id
|
|
8553
|
+
user {
|
|
8554
|
+
id
|
|
8555
|
+
email
|
|
8556
|
+
firstName
|
|
8557
|
+
lastName
|
|
8558
|
+
picture
|
|
8559
|
+
}
|
|
8560
|
+
}
|
|
8440
8561
|
isProspect
|
|
8441
8562
|
}
|
|
8442
8563
|
productMetalScores {
|
|
@@ -8900,6 +9021,13 @@ exports.CompanyDocument = (0, client_1.gql) `
|
|
|
8900
9021
|
picture
|
|
8901
9022
|
}
|
|
8902
9023
|
}
|
|
9024
|
+
auditLogs {
|
|
9025
|
+
id
|
|
9026
|
+
type
|
|
9027
|
+
title
|
|
9028
|
+
description
|
|
9029
|
+
timestamp
|
|
9030
|
+
}
|
|
8903
9031
|
pk
|
|
8904
9032
|
industry {
|
|
8905
9033
|
industrySector {
|
|
@@ -9693,6 +9821,16 @@ exports.ContactDocument = (0, client_1.gql) `
|
|
|
9693
9821
|
totalReplied
|
|
9694
9822
|
totalBounced
|
|
9695
9823
|
}
|
|
9824
|
+
companyOwners {
|
|
9825
|
+
id
|
|
9826
|
+
user {
|
|
9827
|
+
id
|
|
9828
|
+
email
|
|
9829
|
+
firstName
|
|
9830
|
+
lastName
|
|
9831
|
+
picture
|
|
9832
|
+
}
|
|
9833
|
+
}
|
|
9696
9834
|
isProspect
|
|
9697
9835
|
}
|
|
9698
9836
|
}
|
|
@@ -9783,6 +9921,16 @@ exports.ContactsDocument = (0, client_1.gql) `
|
|
|
9783
9921
|
totalReplied
|
|
9784
9922
|
totalBounced
|
|
9785
9923
|
}
|
|
9924
|
+
companyOwners {
|
|
9925
|
+
id
|
|
9926
|
+
user {
|
|
9927
|
+
id
|
|
9928
|
+
email
|
|
9929
|
+
firstName
|
|
9930
|
+
lastName
|
|
9931
|
+
picture
|
|
9932
|
+
}
|
|
9933
|
+
}
|
|
9786
9934
|
isProspect
|
|
9787
9935
|
}
|
|
9788
9936
|
}
|
|
@@ -9873,6 +10021,16 @@ exports.ContactsInSegmentDocument = (0, client_1.gql) `
|
|
|
9873
10021
|
totalReplied
|
|
9874
10022
|
totalBounced
|
|
9875
10023
|
}
|
|
10024
|
+
companyOwners {
|
|
10025
|
+
id
|
|
10026
|
+
user {
|
|
10027
|
+
id
|
|
10028
|
+
email
|
|
10029
|
+
firstName
|
|
10030
|
+
lastName
|
|
10031
|
+
picture
|
|
10032
|
+
}
|
|
10033
|
+
}
|
|
9876
10034
|
isProspect
|
|
9877
10035
|
}
|
|
9878
10036
|
pagination {
|
|
@@ -10651,6 +10809,16 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
|
|
|
10651
10809
|
totalReplied
|
|
10652
10810
|
totalBounced
|
|
10653
10811
|
}
|
|
10812
|
+
companyOwners {
|
|
10813
|
+
id
|
|
10814
|
+
user {
|
|
10815
|
+
id
|
|
10816
|
+
email
|
|
10817
|
+
firstName
|
|
10818
|
+
lastName
|
|
10819
|
+
picture
|
|
10820
|
+
}
|
|
10821
|
+
}
|
|
10654
10822
|
isProspect
|
|
10655
10823
|
}
|
|
10656
10824
|
company {
|
|
@@ -10782,6 +10950,16 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
|
|
|
10782
10950
|
totalReplied
|
|
10783
10951
|
totalBounced
|
|
10784
10952
|
}
|
|
10953
|
+
companyOwners {
|
|
10954
|
+
id
|
|
10955
|
+
user {
|
|
10956
|
+
id
|
|
10957
|
+
email
|
|
10958
|
+
firstName
|
|
10959
|
+
lastName
|
|
10960
|
+
picture
|
|
10961
|
+
}
|
|
10962
|
+
}
|
|
10785
10963
|
isProspect
|
|
10786
10964
|
}
|
|
10787
10965
|
productMetalScores {
|
|
@@ -11111,6 +11289,13 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
|
|
|
11111
11289
|
picture
|
|
11112
11290
|
}
|
|
11113
11291
|
}
|
|
11292
|
+
auditLogs {
|
|
11293
|
+
id
|
|
11294
|
+
type
|
|
11295
|
+
title
|
|
11296
|
+
description
|
|
11297
|
+
timestamp
|
|
11298
|
+
}
|
|
11114
11299
|
pk
|
|
11115
11300
|
industry {
|
|
11116
11301
|
industrySector {
|
|
@@ -11323,6 +11508,16 @@ exports.SearchContactsDocument = (0, client_1.gql) `
|
|
|
11323
11508
|
totalReplied
|
|
11324
11509
|
totalBounced
|
|
11325
11510
|
}
|
|
11511
|
+
companyOwners {
|
|
11512
|
+
id
|
|
11513
|
+
user {
|
|
11514
|
+
id
|
|
11515
|
+
email
|
|
11516
|
+
firstName
|
|
11517
|
+
lastName
|
|
11518
|
+
picture
|
|
11519
|
+
}
|
|
11520
|
+
}
|
|
11326
11521
|
isProspect
|
|
11327
11522
|
}
|
|
11328
11523
|
pagination {
|
package/dist/mutations.js
CHANGED
|
@@ -248,6 +248,16 @@ mutation CreateContact($input: ContactInput) {
|
|
|
248
248
|
totalReplied
|
|
249
249
|
totalBounced
|
|
250
250
|
}
|
|
251
|
+
companyOwners {
|
|
252
|
+
id
|
|
253
|
+
user {
|
|
254
|
+
id
|
|
255
|
+
email
|
|
256
|
+
firstName
|
|
257
|
+
lastName
|
|
258
|
+
picture
|
|
259
|
+
}
|
|
260
|
+
}
|
|
251
261
|
isProspect
|
|
252
262
|
}
|
|
253
263
|
}
|
|
@@ -311,6 +321,16 @@ mutation UpdateContact($input: ContactInput) {
|
|
|
311
321
|
totalReplied
|
|
312
322
|
totalBounced
|
|
313
323
|
}
|
|
324
|
+
companyOwners {
|
|
325
|
+
id
|
|
326
|
+
user {
|
|
327
|
+
id
|
|
328
|
+
email
|
|
329
|
+
firstName
|
|
330
|
+
lastName
|
|
331
|
+
picture
|
|
332
|
+
}
|
|
333
|
+
}
|
|
314
334
|
isProspect
|
|
315
335
|
}
|
|
316
336
|
}
|
|
@@ -453,6 +473,16 @@ mutation CreateCompany($input: CompanyInput) {
|
|
|
453
473
|
totalReplied
|
|
454
474
|
totalBounced
|
|
455
475
|
}
|
|
476
|
+
companyOwners {
|
|
477
|
+
id
|
|
478
|
+
user {
|
|
479
|
+
id
|
|
480
|
+
email
|
|
481
|
+
firstName
|
|
482
|
+
lastName
|
|
483
|
+
picture
|
|
484
|
+
}
|
|
485
|
+
}
|
|
456
486
|
isProspect
|
|
457
487
|
}
|
|
458
488
|
productMetalScores {
|
|
@@ -916,6 +946,13 @@ mutation CreateCompany($input: CompanyInput) {
|
|
|
916
946
|
picture
|
|
917
947
|
}
|
|
918
948
|
}
|
|
949
|
+
auditLogs {
|
|
950
|
+
id
|
|
951
|
+
type
|
|
952
|
+
title
|
|
953
|
+
description
|
|
954
|
+
timestamp
|
|
955
|
+
}
|
|
919
956
|
pk
|
|
920
957
|
industry {
|
|
921
958
|
industrySector {
|
|
@@ -1103,6 +1140,16 @@ mutation UpdateCompany($input: CompanyInput) {
|
|
|
1103
1140
|
totalReplied
|
|
1104
1141
|
totalBounced
|
|
1105
1142
|
}
|
|
1143
|
+
companyOwners {
|
|
1144
|
+
id
|
|
1145
|
+
user {
|
|
1146
|
+
id
|
|
1147
|
+
email
|
|
1148
|
+
firstName
|
|
1149
|
+
lastName
|
|
1150
|
+
picture
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1106
1153
|
isProspect
|
|
1107
1154
|
}
|
|
1108
1155
|
productMetalScores {
|
|
@@ -1566,6 +1613,13 @@ mutation UpdateCompany($input: CompanyInput) {
|
|
|
1566
1613
|
picture
|
|
1567
1614
|
}
|
|
1568
1615
|
}
|
|
1616
|
+
auditLogs {
|
|
1617
|
+
id
|
|
1618
|
+
type
|
|
1619
|
+
title
|
|
1620
|
+
description
|
|
1621
|
+
timestamp
|
|
1622
|
+
}
|
|
1569
1623
|
pk
|
|
1570
1624
|
industry {
|
|
1571
1625
|
industrySector {
|
|
@@ -2484,6 +2538,16 @@ mutation SendEmailToContact($campaignId: ID, $contactId: ID!, $segmentId: ID, $s
|
|
|
2484
2538
|
totalReplied
|
|
2485
2539
|
totalBounced
|
|
2486
2540
|
}
|
|
2541
|
+
companyOwners {
|
|
2542
|
+
id
|
|
2543
|
+
user {
|
|
2544
|
+
id
|
|
2545
|
+
email
|
|
2546
|
+
firstName
|
|
2547
|
+
lastName
|
|
2548
|
+
picture
|
|
2549
|
+
}
|
|
2550
|
+
}
|
|
2487
2551
|
isProspect
|
|
2488
2552
|
}
|
|
2489
2553
|
sentAt
|
package/dist/queries.js
CHANGED
|
@@ -92,6 +92,16 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
|
|
|
92
92
|
totalReplied
|
|
93
93
|
totalBounced
|
|
94
94
|
}
|
|
95
|
+
companyOwners {
|
|
96
|
+
id
|
|
97
|
+
user {
|
|
98
|
+
id
|
|
99
|
+
email
|
|
100
|
+
firstName
|
|
101
|
+
lastName
|
|
102
|
+
picture
|
|
103
|
+
}
|
|
104
|
+
}
|
|
95
105
|
isProspect
|
|
96
106
|
}
|
|
97
107
|
company {
|
|
@@ -223,6 +233,16 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
|
|
|
223
233
|
totalReplied
|
|
224
234
|
totalBounced
|
|
225
235
|
}
|
|
236
|
+
companyOwners {
|
|
237
|
+
id
|
|
238
|
+
user {
|
|
239
|
+
id
|
|
240
|
+
email
|
|
241
|
+
firstName
|
|
242
|
+
lastName
|
|
243
|
+
picture
|
|
244
|
+
}
|
|
245
|
+
}
|
|
226
246
|
isProspect
|
|
227
247
|
}
|
|
228
248
|
productMetalScores {
|
|
@@ -552,6 +572,13 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
|
|
|
552
572
|
picture
|
|
553
573
|
}
|
|
554
574
|
}
|
|
575
|
+
auditLogs {
|
|
576
|
+
id
|
|
577
|
+
type
|
|
578
|
+
title
|
|
579
|
+
description
|
|
580
|
+
timestamp
|
|
581
|
+
}
|
|
555
582
|
pk
|
|
556
583
|
industry {
|
|
557
584
|
industrySector {
|
|
@@ -2465,6 +2492,16 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
|
|
|
2465
2492
|
totalReplied
|
|
2466
2493
|
totalBounced
|
|
2467
2494
|
}
|
|
2495
|
+
companyOwners {
|
|
2496
|
+
id
|
|
2497
|
+
user {
|
|
2498
|
+
id
|
|
2499
|
+
email
|
|
2500
|
+
firstName
|
|
2501
|
+
lastName
|
|
2502
|
+
picture
|
|
2503
|
+
}
|
|
2504
|
+
}
|
|
2468
2505
|
isProspect
|
|
2469
2506
|
}
|
|
2470
2507
|
campaignStats {
|
|
@@ -2605,6 +2642,16 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
|
|
|
2605
2642
|
totalReplied
|
|
2606
2643
|
totalBounced
|
|
2607
2644
|
}
|
|
2645
|
+
companyOwners {
|
|
2646
|
+
id
|
|
2647
|
+
user {
|
|
2648
|
+
id
|
|
2649
|
+
email
|
|
2650
|
+
firstName
|
|
2651
|
+
lastName
|
|
2652
|
+
picture
|
|
2653
|
+
}
|
|
2654
|
+
}
|
|
2608
2655
|
isProspect
|
|
2609
2656
|
}
|
|
2610
2657
|
sentAt
|
|
@@ -2682,6 +2729,16 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
|
|
|
2682
2729
|
noteType
|
|
2683
2730
|
noteId
|
|
2684
2731
|
}
|
|
2732
|
+
companyOwners {
|
|
2733
|
+
id
|
|
2734
|
+
user {
|
|
2735
|
+
id
|
|
2736
|
+
email
|
|
2737
|
+
firstName
|
|
2738
|
+
lastName
|
|
2739
|
+
picture
|
|
2740
|
+
}
|
|
2741
|
+
}
|
|
2685
2742
|
}
|
|
2686
2743
|
pagination {
|
|
2687
2744
|
currentPage
|
|
@@ -2796,6 +2853,16 @@ query ContactsInSegment($segmentId: ID!, $pagination: PaginationInput) {
|
|
|
2796
2853
|
totalReplied
|
|
2797
2854
|
totalBounced
|
|
2798
2855
|
}
|
|
2856
|
+
companyOwners {
|
|
2857
|
+
id
|
|
2858
|
+
user {
|
|
2859
|
+
id
|
|
2860
|
+
email
|
|
2861
|
+
firstName
|
|
2862
|
+
lastName
|
|
2863
|
+
picture
|
|
2864
|
+
}
|
|
2865
|
+
}
|
|
2799
2866
|
isProspect
|
|
2800
2867
|
}
|
|
2801
2868
|
pagination {
|
|
@@ -2940,6 +3007,16 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
|
|
|
2940
3007
|
totalReplied
|
|
2941
3008
|
totalBounced
|
|
2942
3009
|
}
|
|
3010
|
+
companyOwners {
|
|
3011
|
+
id
|
|
3012
|
+
user {
|
|
3013
|
+
id
|
|
3014
|
+
email
|
|
3015
|
+
firstName
|
|
3016
|
+
lastName
|
|
3017
|
+
picture
|
|
3018
|
+
}
|
|
3019
|
+
}
|
|
2943
3020
|
isProspect
|
|
2944
3021
|
}
|
|
2945
3022
|
productMetalScores {
|
|
@@ -3301,6 +3378,13 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
|
|
|
3301
3378
|
picture
|
|
3302
3379
|
}
|
|
3303
3380
|
}
|
|
3381
|
+
auditLogs {
|
|
3382
|
+
id
|
|
3383
|
+
type
|
|
3384
|
+
title
|
|
3385
|
+
description
|
|
3386
|
+
timestamp
|
|
3387
|
+
}
|
|
3304
3388
|
pk
|
|
3305
3389
|
industry {
|
|
3306
3390
|
industrySector {
|
|
@@ -3422,6 +3506,16 @@ query Contacts {
|
|
|
3422
3506
|
totalReplied
|
|
3423
3507
|
totalBounced
|
|
3424
3508
|
}
|
|
3509
|
+
companyOwners {
|
|
3510
|
+
id
|
|
3511
|
+
user {
|
|
3512
|
+
id
|
|
3513
|
+
email
|
|
3514
|
+
firstName
|
|
3515
|
+
lastName
|
|
3516
|
+
picture
|
|
3517
|
+
}
|
|
3518
|
+
}
|
|
3425
3519
|
isProspect
|
|
3426
3520
|
}
|
|
3427
3521
|
}`;
|
|
@@ -3484,6 +3578,16 @@ query SearchContacts($filters: ContactFilterInput, $pagination: PaginationInput,
|
|
|
3484
3578
|
totalReplied
|
|
3485
3579
|
totalBounced
|
|
3486
3580
|
}
|
|
3581
|
+
companyOwners {
|
|
3582
|
+
id
|
|
3583
|
+
user {
|
|
3584
|
+
id
|
|
3585
|
+
email
|
|
3586
|
+
firstName
|
|
3587
|
+
lastName
|
|
3588
|
+
picture
|
|
3589
|
+
}
|
|
3590
|
+
}
|
|
3487
3591
|
isProspect
|
|
3488
3592
|
}
|
|
3489
3593
|
pagination {
|
|
@@ -3627,6 +3731,16 @@ query Company($id: String) {
|
|
|
3627
3731
|
totalReplied
|
|
3628
3732
|
totalBounced
|
|
3629
3733
|
}
|
|
3734
|
+
companyOwners {
|
|
3735
|
+
id
|
|
3736
|
+
user {
|
|
3737
|
+
id
|
|
3738
|
+
email
|
|
3739
|
+
firstName
|
|
3740
|
+
lastName
|
|
3741
|
+
picture
|
|
3742
|
+
}
|
|
3743
|
+
}
|
|
3630
3744
|
isProspect
|
|
3631
3745
|
}
|
|
3632
3746
|
productMetalScores {
|
|
@@ -4090,6 +4204,13 @@ query Company($id: String) {
|
|
|
4090
4204
|
picture
|
|
4091
4205
|
}
|
|
4092
4206
|
}
|
|
4207
|
+
auditLogs {
|
|
4208
|
+
id
|
|
4209
|
+
type
|
|
4210
|
+
title
|
|
4211
|
+
description
|
|
4212
|
+
timestamp
|
|
4213
|
+
}
|
|
4093
4214
|
pk
|
|
4094
4215
|
industry {
|
|
4095
4216
|
industrySector {
|
|
@@ -4202,6 +4323,16 @@ query Contact($id: String) {
|
|
|
4202
4323
|
totalReplied
|
|
4203
4324
|
totalBounced
|
|
4204
4325
|
}
|
|
4326
|
+
companyOwners {
|
|
4327
|
+
id
|
|
4328
|
+
user {
|
|
4329
|
+
id
|
|
4330
|
+
email
|
|
4331
|
+
firstName
|
|
4332
|
+
lastName
|
|
4333
|
+
picture
|
|
4334
|
+
}
|
|
4335
|
+
}
|
|
4205
4336
|
isProspect
|
|
4206
4337
|
}
|
|
4207
4338
|
}`;
|