Migrate domainName field from text type to links type (#6410)
Closes #5759.
This commit is contained in:
@@ -110,7 +110,10 @@ export const mockedActivities: Array<MockedActivity> = [
|
||||
__typename: 'Company',
|
||||
id: '89bb825c-171e-4bcc-9cf7-43448d6fb280',
|
||||
name: 'Airbnb',
|
||||
domainName: 'airbnb.com',
|
||||
domainName: {
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'https://www.airbnb.com',
|
||||
},
|
||||
},
|
||||
person: null,
|
||||
activityId: '89bb825c-171e-4bcc-9cf7-43448d6fb230',
|
||||
|
||||
@@ -13,7 +13,12 @@ export const getEmptyCompanyMock = () => {
|
||||
return {
|
||||
id: '9231e6ee-4cc2-4c7b-8c55-dff16f4d968a',
|
||||
name: '',
|
||||
domainName: '',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: '',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
accountOwner: null,
|
||||
createdAt: null,
|
||||
@@ -51,17 +56,22 @@ export const companiesQueryResult = {
|
||||
name: 'Linkedin',
|
||||
accountOwnerId: null,
|
||||
accountOwner: null,
|
||||
domainName: 'linkedin.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: 'https://linkedin.com',
|
||||
primaryLinkUrl: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
position: 1,
|
||||
idealCustomerProfile: true,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -97,7 +107,7 @@ export const companiesQueryResult = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -113,7 +123,7 @@ export const companiesQueryResult = {
|
||||
lastName: 'Duss',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -129,7 +139,7 @@ export const companiesQueryResult = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -149,7 +159,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: false,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'facebook.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://facebook.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -159,12 +174,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 2,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -183,7 +198,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: false,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'qonto.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://qonto.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -193,12 +213,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 3,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -217,7 +237,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: true,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'microsoft.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://microsoft.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -227,12 +252,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 4,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -251,7 +276,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: true,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'airbnb.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://airbnb.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -261,12 +291,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 5,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -285,7 +315,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: false,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'google.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://google.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -295,12 +330,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 6,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -319,7 +354,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: true,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'netflix.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://netflix.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -329,12 +369,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 7,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -353,7 +393,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: false,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'libeo.io',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://libeo.io',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -363,12 +408,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 8,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -387,7 +432,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: false,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'claap.io',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://claap.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -397,12 +447,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 9,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -421,7 +471,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: false,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'hasura.io',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://hasura.io',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -431,12 +486,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 10,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -455,7 +510,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: false,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'wework.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://wework.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -465,12 +525,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 11,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -489,7 +549,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: false,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'samsung.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://samsung.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -499,12 +564,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 12,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -523,7 +588,12 @@ export const companiesQueryResult = {
|
||||
idealCustomerProfile: false,
|
||||
accountOwner: null,
|
||||
accountOwnerId: null,
|
||||
domainName: 'algolia.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkUrl: 'https://algolia.com',
|
||||
primaryLinkLabel: '',
|
||||
secondaryLinks: null,
|
||||
},
|
||||
address: '',
|
||||
previousEmployees: null,
|
||||
annualRecurringRevenue: {
|
||||
@@ -533,12 +603,12 @@ export const companiesQueryResult = {
|
||||
},
|
||||
position: 13,
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
|
||||
+1
-1
@@ -938,7 +938,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery =
|
||||
"node": {
|
||||
"__typename": "field",
|
||||
"id": "6b97ae7c-9b97-4a8f-885b-7f8ee3122a7d",
|
||||
"type": "TEXT",
|
||||
"type": "LINKS",
|
||||
"name": "domainName",
|
||||
"label": "Domain Name",
|
||||
"description": "The company website URL. We use this url to fetch the company icon",
|
||||
|
||||
@@ -64,7 +64,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -93,7 +93,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Callisto',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -109,7 +109,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'singlelink.com',
|
||||
},
|
||||
@@ -123,11 +123,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Algolia',
|
||||
domainName: 'algolia.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'algolia.com',
|
||||
},
|
||||
address: '',
|
||||
position: 13,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -137,7 +141,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -152,11 +156,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Linkedin',
|
||||
domainName: 'linkedin.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
address: '',
|
||||
position: 1,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -166,7 +174,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -199,7 +207,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -220,7 +228,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Palmer',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -236,7 +244,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -250,11 +258,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Linkedin',
|
||||
domainName: 'linkedin.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
address: '',
|
||||
position: 1,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -264,7 +276,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -297,7 +309,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -313,7 +325,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Gonzalez',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -329,7 +341,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -343,11 +355,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Qonto',
|
||||
domainName: 'qonto.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'qonto.com',
|
||||
},
|
||||
address: '',
|
||||
position: 3,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -357,7 +373,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -390,7 +406,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -406,7 +422,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Parker',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -422,7 +438,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -436,11 +452,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Qonto',
|
||||
domainName: 'qonto.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'qonto.com',
|
||||
},
|
||||
address: '',
|
||||
position: 3,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -450,7 +470,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -483,7 +503,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -499,7 +519,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Wright',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -515,7 +535,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -529,11 +549,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Microsoft',
|
||||
domainName: 'microsoft.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'microsoft.com',
|
||||
},
|
||||
address: '',
|
||||
position: 4,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -543,7 +567,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -576,7 +600,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -592,7 +616,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Scott',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -608,7 +632,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -622,11 +646,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Microsoft',
|
||||
domainName: 'microsoft.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'microsoft.com',
|
||||
},
|
||||
address: '',
|
||||
position: 4,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -636,7 +664,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -669,7 +697,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -685,7 +713,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Green',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -701,7 +729,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -715,11 +743,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Microsoft',
|
||||
domainName: 'microsoft.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'microsoft.com',
|
||||
},
|
||||
address: '',
|
||||
position: 4,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -729,7 +761,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -762,7 +794,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -778,7 +810,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Baker',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -794,7 +826,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -808,11 +840,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Airbnb',
|
||||
domainName: 'airbnb.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'airbnb.com',
|
||||
},
|
||||
address: '',
|
||||
position: 5,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -822,7 +858,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -855,7 +891,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -871,7 +907,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Nelson',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -887,7 +923,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -901,11 +937,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Airbnb',
|
||||
domainName: 'airbnb.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'airbnb.com',
|
||||
},
|
||||
address: '',
|
||||
position: 5,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -915,7 +955,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -948,7 +988,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -964,7 +1004,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Carter',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -980,7 +1020,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -994,11 +1034,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Airbnb',
|
||||
domainName: 'airbnb.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'airbnb.com',
|
||||
},
|
||||
address: '',
|
||||
position: 5,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1008,7 +1052,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1041,7 +1085,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -1057,7 +1101,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Mitchell',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -1073,7 +1117,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1087,11 +1131,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Google',
|
||||
domainName: 'google.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'google.com',
|
||||
},
|
||||
address: '',
|
||||
position: 6,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1101,7 +1149,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1134,7 +1182,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1150,7 +1198,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Perez',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -1166,7 +1214,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1180,11 +1228,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Google',
|
||||
domainName: 'google.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'google.com',
|
||||
},
|
||||
address: '',
|
||||
position: 6,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1194,7 +1246,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1227,7 +1279,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1243,7 +1295,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Voulzy',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -1259,7 +1311,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1273,11 +1325,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Google',
|
||||
domainName: 'google.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'google.com',
|
||||
},
|
||||
address: '',
|
||||
position: 6,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1287,7 +1343,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1320,7 +1376,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'twitter.com',
|
||||
},
|
||||
@@ -1336,7 +1392,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Duss',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -1352,7 +1408,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1366,11 +1422,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Google',
|
||||
domainName: 'google.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'google.com',
|
||||
},
|
||||
address: '',
|
||||
position: 6,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1380,7 +1440,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1413,7 +1473,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: 'USD',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1429,7 +1489,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
lastName: 'Vladim',
|
||||
},
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'linkedin.com',
|
||||
},
|
||||
@@ -1445,7 +1505,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
addressLng: null,
|
||||
},
|
||||
testLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1459,11 +1519,15 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
idealCustomerProfile: false,
|
||||
createdAt: '2024-06-05T09:00:20.412Z',
|
||||
name: 'Google',
|
||||
domainName: 'google.com',
|
||||
domainName: {
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: 'google.com',
|
||||
},
|
||||
address: '',
|
||||
position: 6,
|
||||
linkedinLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
@@ -1473,7 +1537,7 @@ export const peopleQueryResult: { people: RecordGqlConnection } = {
|
||||
currencyCode: '',
|
||||
},
|
||||
xLink: {
|
||||
__typename: 'Link',
|
||||
__typename: 'Links',
|
||||
primaryLinkLabel: '',
|
||||
primaryLinkUrl: '',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user