From c18cb25ca913cfb2042f8192527b2e9719cdc7eb Mon Sep 17 00:00:00 2001 From: Leonardo Christino <leomilho@gmail.com> Date: Tue, 23 Apr 2024 16:01:39 +0200 Subject: [PATCH] chore: make result's internal id hidden --- .../store/graphQueryResultSlice.ts | 20 +- .../query-result/fincenQueryResults.ts | 3112 +++++----- .../query-result/mockLargeQueryResults.ts | 1000 ++-- .../query-result/recommendationQueryResult.ts | 742 +-- .../query-result/slackQueryResults.ts | 5066 ++++++++--------- .../relationpill/QueryRelationPill.tsx | 2 +- .../pills/pilldropdown/PillDropdown.tsx | 2 +- .../nodelinkvis/components/utils.tsx | 2 +- .../paohvis/paohvis.stories.tsx | 14 +- .../semanticsubstratesvis/components/utils.ts | 2 +- 10 files changed, 4985 insertions(+), 4977 deletions(-) diff --git a/libs/shared/lib/data-access/store/graphQueryResultSlice.ts b/libs/shared/lib/data-access/store/graphQueryResultSlice.ts index 62df2ef32..1273ebf44 100755 --- a/libs/shared/lib/data-access/store/graphQueryResultSlice.ts +++ b/libs/shared/lib/data-access/store/graphQueryResultSlice.ts @@ -14,13 +14,13 @@ export type NodeAttributes = { [key: string]: unknown }; export interface GraphQueryResultFromBackend { nodes: { - id: string; + _id: string; label?: string; attributes: NodeAttributes; }[]; edges: { - id: string; + _id: string; label?: string; attributes: NodeAttributes; from: string; @@ -64,11 +64,19 @@ export const initialState: GraphQueryResult = { }; export const graphQueryBackend2graphQuery = (payload: GraphQueryResultFromBackend) => { + // Assign ids to a hidden attribute _id to better identify them + payload.nodes.forEach((node, index) => { + node._id = node._id || (node as any).id; + }); + payload.edges.forEach((edge, index) => { + edge._id = edge._id || (edge as any).id; + }); + // Only keep one node and one edge per id. This is also done in the backend, but we do it here as well to be sure. - const nodeIDs = new Set(payload.nodes.map((node) => node.id)); - const edgeIDs = new Set(payload.edges.map((edge) => edge.id)); - let nodes = [...nodeIDs].map((nodeID) => payload.nodes.find((node) => node.id === nodeID) as unknown as Node); - let edges = [...edgeIDs].map((edgeID) => payload.edges.find((edge) => edge.id === edgeID) as unknown as Edge); + const nodeIDs = new Set(payload.nodes.map((node) => node._id)); + const edgeIDs = new Set(payload.edges.map((edge) => edge._id)); + let nodes = [...nodeIDs].map((nodeID) => payload.nodes.find((node) => node._id === nodeID) as unknown as Node); + let edges = [...edgeIDs].map((edgeID) => payload.edges.find((edge) => edge._id === edgeID) as unknown as Edge); const metaData: GraphMetaData = { nodes: { labels: [], count: nodes.length, types: {} }, diff --git a/libs/shared/lib/mock-data/query-result/fincenQueryResults.ts b/libs/shared/lib/mock-data/query-result/fincenQueryResults.ts index 03610e211..72d50c9d3 100644 --- a/libs/shared/lib/mock-data/query-result/fincenQueryResults.ts +++ b/libs/shared/lib/mock-data/query-result/fincenQueryResults.ts @@ -15,7 +15,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6219', - id: '29655', + _id: '29655', to: '295', }, { @@ -23,7 +23,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6217', - id: '29653', + _id: '29653', to: '295', }, { @@ -31,7 +31,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6792', - id: '30228', + _id: '30228', to: '295', }, { @@ -39,7 +39,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6220', - id: '29656', + _id: '29656', to: '295', }, { @@ -47,7 +47,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7011', - id: '35208', + _id: '35208', to: '295', }, { @@ -55,7 +55,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6216', - id: '29652', + _id: '29652', to: '295', }, { @@ -63,7 +63,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6795', - id: '30231', + _id: '30231', to: '295', }, { @@ -71,7 +71,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6955', - id: '35029', + _id: '35029', to: '295', }, { @@ -79,7 +79,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6218', - id: '29654', + _id: '29654', to: '295', }, { @@ -87,7 +87,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7483', - id: '37963', + _id: '37963', to: '295', }, { @@ -95,7 +95,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7695', - id: '39448', + _id: '39448', to: '295', }, { @@ -103,7 +103,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5820', - id: '18878', + _id: '18878', to: '295', }, { @@ -111,7 +111,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7178', - id: '35917', + _id: '35917', to: '299', }, { @@ -119,7 +119,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5158', - id: '2537', + _id: '2537', to: '299', }, { @@ -127,7 +127,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7707', - id: '39510', + _id: '39510', to: '300', }, { @@ -135,7 +135,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7047', - id: '35343', + _id: '35343', to: '300', }, { @@ -143,7 +143,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7314', - id: '36744', + _id: '36744', to: '303', }, { @@ -151,7 +151,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6346', - id: '29782', + _id: '29782', to: '303', }, { @@ -159,7 +159,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6347', - id: '29783', + _id: '29783', to: '303', }, { @@ -167,7 +167,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7638', - id: '38928', + _id: '38928', to: '305', }, { @@ -175,7 +175,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7253', - id: '36379', + _id: '36379', to: '305', }, { @@ -183,7 +183,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6961', - id: '35069', + _id: '35069', to: '307', }, { @@ -191,7 +191,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7365', - id: '37168', + _id: '37168', to: '307', }, { @@ -199,7 +199,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7720', - id: '39632', + _id: '39632', to: '307', }, { @@ -207,7 +207,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7501', - id: '38066', + _id: '38066', to: '307', }, { @@ -215,7 +215,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7060', - id: '35471', + _id: '35471', to: '307', }, { @@ -223,7 +223,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6414', - id: '29850', + _id: '29850', to: '307', }, { @@ -231,7 +231,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6988', - id: '35143', + _id: '35143', to: '307', }, { @@ -239,7 +239,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6415', - id: '29851', + _id: '29851', to: '307', }, { @@ -247,7 +247,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7366', - id: '37174', + _id: '37174', to: '307', }, { @@ -255,7 +255,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7354', - id: '37035', + _id: '37035', to: '307', }, { @@ -263,7 +263,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6416', - id: '29852', + _id: '29852', to: '307', }, { @@ -271,7 +271,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5121', - id: '2249', + _id: '2249', to: '307', }, { @@ -279,7 +279,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5869', - id: '20571', + _id: '20571', to: '307', }, { @@ -287,7 +287,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5825', - id: '19085', + _id: '19085', to: '307', }, { @@ -295,7 +295,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5985', - id: '26726', + _id: '26726', to: '307', }, { @@ -303,7 +303,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5530', - id: '9456', + _id: '9456', to: '307', }, { @@ -311,7 +311,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5753', - id: '17392', + _id: '17392', to: '307', }, { @@ -319,7 +319,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5109', - id: '2084', + _id: '2084', to: '307', }, { @@ -327,7 +327,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5891', - id: '22072', + _id: '22072', to: '307', }, { @@ -335,7 +335,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5836', - id: '19524', + _id: '19524', to: '307', }, { @@ -343,7 +343,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5999', - id: '27065', + _id: '27065', to: '307', }, { @@ -351,7 +351,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5875', - id: '20771', + _id: '20771', to: '307', }, { @@ -359,7 +359,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5341', - id: '5757', + _id: '5757', to: '307', }, { @@ -367,7 +367,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5343', - id: '5777', + _id: '5777', to: '307', }, { @@ -375,7 +375,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6670', - id: '30106', + _id: '30106', to: '308', }, { @@ -383,7 +383,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7215', - id: '37465', + _id: '37465', to: '308', }, { @@ -391,7 +391,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7647', - id: '38998', + _id: '38998', to: '308', }, { @@ -399,7 +399,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7601', - id: '38748', + _id: '38748', to: '308', }, { @@ -407,7 +407,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7663', - id: '39186', + _id: '39186', to: '308', }, { @@ -415,7 +415,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6947', - id: '34984', + _id: '34984', to: '308', }, { @@ -423,7 +423,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6438', - id: '29874', + _id: '29874', to: '308', }, { @@ -431,7 +431,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7415', - id: '37482', + _id: '37482', to: '308', }, { @@ -439,7 +439,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7651', - id: '39031', + _id: '39031', to: '308', }, { @@ -447,7 +447,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6954', - id: '35027', + _id: '35027', to: '308', }, { @@ -455,7 +455,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6066', - id: '29502', + _id: '29502', to: '308', }, { @@ -463,7 +463,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6755', - id: '30191', + _id: '30191', to: '308', }, { @@ -471,7 +471,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7301', - id: '36683', + _id: '36683', to: '308', }, { @@ -479,7 +479,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7233', - id: '36232', + _id: '36232', to: '308', }, { @@ -487,7 +487,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5931', - id: '23406', + _id: '23406', to: '308', }, { @@ -495,7 +495,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5298', - id: '4821', + _id: '4821', to: '308', }, { @@ -503,7 +503,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5366', - id: '6159', + _id: '6159', to: '308', }, { @@ -511,7 +511,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5792', - id: '17891', + _id: '17891', to: '308', }, { @@ -519,7 +519,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5642', - id: '12873', + _id: '12873', to: '308', }, { @@ -527,7 +527,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5713', - id: '15122', + _id: '15122', to: '308', }, { @@ -535,7 +535,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5187', - id: '2957', + _id: '2957', to: '308', }, { @@ -543,7 +543,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5738', - id: '16869', + _id: '16869', to: '308', }, { @@ -551,7 +551,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5364', - id: '6134', + _id: '6134', to: '308', }, { @@ -559,7 +559,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5888', - id: '21706', + _id: '21706', to: '308', }, { @@ -567,7 +567,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5174', - id: '2775', + _id: '2775', to: '308', }, { @@ -575,7 +575,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5724', - id: '16072', + _id: '16072', to: '308', }, { @@ -583,7 +583,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5393', - id: '6613', + _id: '6613', to: '308', }, { @@ -591,7 +591,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5300', - id: '4876', + _id: '4876', to: '308', }, { @@ -599,7 +599,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5969', - id: '25260', + _id: '25260', to: '308', }, { @@ -607,7 +607,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7538', - id: '38274', + _id: '38274', to: '309', }, { @@ -615,7 +615,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6735', - id: '30171', + _id: '30171', to: '309', }, { @@ -623,7 +623,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6072', - id: '29508', + _id: '29508', to: '309', }, { @@ -631,7 +631,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7410', - id: '37440', + _id: '37440', to: '309', }, { @@ -639,7 +639,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5144', - id: '2360', + _id: '2360', to: '309', }, { @@ -647,7 +647,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7423', - id: '37552', + _id: '37552', to: '310', }, { @@ -655,7 +655,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7164', - id: '35879', + _id: '35879', to: '310', }, { @@ -663,7 +663,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6165', - id: '29601', + _id: '29601', to: '310', }, { @@ -671,7 +671,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6213', - id: '29649', + _id: '29649', to: '310', }, { @@ -679,7 +679,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7099', - id: '35597', + _id: '35597', to: '310', }, { @@ -687,7 +687,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7221', - id: '36141', + _id: '36141', to: '311', }, { @@ -695,7 +695,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7220', - id: '36137', + _id: '36137', to: '311', }, { @@ -703,7 +703,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5164', - id: '2639', + _id: '2639', to: '311', }, { @@ -711,7 +711,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6696', - id: '30132', + _id: '30132', to: '312', }, { @@ -719,7 +719,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7590', - id: '38569', + _id: '38569', to: '312', }, { @@ -727,7 +727,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6413', - id: '29849', + _id: '29849', to: '312', }, { @@ -735,7 +735,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5398', - id: '6627', + _id: '6627', to: '312', }, { @@ -743,7 +743,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5622', - id: '11791', + _id: '11791', to: '312', }, { @@ -751,7 +751,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6462', - id: '29898', + _id: '29898', to: '313', }, { @@ -759,7 +759,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7187', - id: '35983', + _id: '35983', to: '313', }, { @@ -767,7 +767,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6160', - id: '29596', + _id: '29596', to: '313', }, { @@ -775,7 +775,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7401', - id: '37421', + _id: '37421', to: '313', }, { @@ -783,7 +783,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7514', - id: '38139', + _id: '38139', to: '313', }, { @@ -791,7 +791,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6422', - id: '29858', + _id: '29858', to: '313', }, { @@ -799,7 +799,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7680', - id: '39258', + _id: '39258', to: '313', }, { @@ -807,7 +807,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5804', - id: '18692', + _id: '18692', to: '313', }, { @@ -815,7 +815,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6297', - id: '29733', + _id: '29733', to: '314', }, { @@ -823,7 +823,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7521', - id: '38154', + _id: '38154', to: '314', }, { @@ -831,7 +831,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6673', - id: '30109', + _id: '30109', to: '314', }, { @@ -839,7 +839,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7167', - id: '35885', + _id: '35885', to: '315', }, { @@ -847,7 +847,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7424', - id: '37554', + _id: '37554', to: '315', }, { @@ -855,7 +855,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6687', - id: '30123', + _id: '30123', to: '315', }, { @@ -863,7 +863,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6035', - id: '29471', + _id: '29471', to: '315', }, { @@ -871,7 +871,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7511', - id: '38125', + _id: '38125', to: '315', }, { @@ -879,7 +879,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7330', - id: '36869', + _id: '36869', to: '315', }, { @@ -887,7 +887,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7690', - id: '39402', + _id: '39402', to: '315', }, { @@ -895,7 +895,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6933', - id: '36873', + _id: '36873', to: '315', }, { @@ -903,7 +903,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7324', - id: '36811', + _id: '36811', to: '315', }, { @@ -911,7 +911,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7486', - id: '37983', + _id: '37983', to: '315', }, { @@ -919,7 +919,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7329', - id: '36867', + _id: '36867', to: '315', }, { @@ -927,7 +927,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6348', - id: '29784', + _id: '29784', to: '315', }, { @@ -935,7 +935,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7584', - id: '38515', + _id: '38515', to: '315', }, { @@ -943,7 +943,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5531', - id: '9466', + _id: '9466', to: '315', }, { @@ -951,7 +951,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5780', - id: '17800', + _id: '17800', to: '315', }, { @@ -959,7 +959,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6023', - id: '29230', + _id: '29230', to: '315', }, { @@ -967,7 +967,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5289', - id: '4770', + _id: '4770', to: '315', }, { @@ -975,7 +975,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5287', - id: '4721', + _id: '4721', to: '315', }, { @@ -983,7 +983,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5452', - id: '8345', + _id: '8345', to: '315', }, { @@ -991,7 +991,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5720', - id: '15800', + _id: '15800', to: '315', }, { @@ -999,7 +999,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5079', - id: '314', + _id: '314', to: '315', }, { @@ -1007,7 +1007,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5924', - id: '23272', + _id: '23272', to: '315', }, { @@ -1015,7 +1015,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5566', - id: '9964', + _id: '9964', to: '315', }, { @@ -1023,7 +1023,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5884', - id: '20966', + _id: '20966', to: '315', }, { @@ -1031,7 +1031,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5800', - id: '18230', + _id: '18230', to: '315', }, { @@ -1039,7 +1039,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5136', - id: '2309', + _id: '2309', to: '315', }, { @@ -1047,7 +1047,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6763', - id: '30199', + _id: '30199', to: '316', }, { @@ -1055,7 +1055,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5384', - id: '6425', + _id: '6425', to: '316', }, { @@ -1063,7 +1063,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7705', - id: '39506', + _id: '39506', to: '317', }, { @@ -1071,7 +1071,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7166', - id: '35883', + _id: '35883', to: '318', }, { @@ -1079,7 +1079,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6224', - id: '29660', + _id: '29660', to: '318', }, { @@ -1087,7 +1087,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7340', - id: '36952', + _id: '36952', to: '318', }, { @@ -1095,7 +1095,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7649', - id: '39019', + _id: '39019', to: '318', }, { @@ -1103,7 +1103,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6008', - id: '28594', + _id: '28594', to: '318', }, { @@ -1111,7 +1111,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5799', - id: '18088', + _id: '18088', to: '318', }, { @@ -1119,7 +1119,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5122', - id: '2252', + _id: '2252', to: '324', }, { @@ -1127,7 +1127,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5124', - id: '2256', + _id: '2256', to: '324', }, { @@ -1135,7 +1135,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5692', - id: '14120', + _id: '14120', to: '324', }, { @@ -1143,7 +1143,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6447', - id: '29883', + _id: '29883', to: '327', }, { @@ -1151,7 +1151,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7229', - id: '36199', + _id: '36199', to: '327', }, { @@ -1159,7 +1159,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7334', - id: '36886', + _id: '36886', to: '327', }, { @@ -1167,7 +1167,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5883', - id: '20929', + _id: '20929', to: '327', }, { @@ -1175,7 +1175,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5639', - id: '12470', + _id: '12470', to: '327', }, { @@ -1183,7 +1183,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5714', - id: '15222', + _id: '15222', to: '327', }, { @@ -1191,7 +1191,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6478', - id: '29914', + _id: '29914', to: '330', }, { @@ -1199,7 +1199,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6805', - id: '30241', + _id: '30241', to: '330', }, { @@ -1207,7 +1207,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7091', - id: '35576', + _id: '35576', to: '330', }, { @@ -1215,7 +1215,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5071', - id: '37', + _id: '37', to: '330', }, { @@ -1223,7 +1223,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5961', - id: '24794', + _id: '24794', to: '330', }, { @@ -1231,7 +1231,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7115', - id: '35679', + _id: '35679', to: '332', }, { @@ -1239,7 +1239,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6119', - id: '29555', + _id: '29555', to: '332', }, { @@ -1247,7 +1247,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6587', - id: '30023', + _id: '30023', to: '332', }, { @@ -1255,7 +1255,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6132', - id: '29568', + _id: '29568', to: '332', }, { @@ -1263,7 +1263,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7734', - id: '39987', + _id: '39987', to: '332', }, { @@ -1271,7 +1271,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6324', - id: '29760', + _id: '29760', to: '332', }, { @@ -1279,7 +1279,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7369', - id: '37185', + _id: '37185', to: '332', }, { @@ -1287,7 +1287,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7201', - id: '36027', + _id: '36027', to: '332', }, { @@ -1295,7 +1295,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6275', - id: '29711', + _id: '29711', to: '332', }, { @@ -1303,7 +1303,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6520', - id: '29956', + _id: '29956', to: '332', }, { @@ -1311,7 +1311,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7116', - id: '35681', + _id: '35681', to: '332', }, { @@ -1319,7 +1319,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6739', - id: '30175', + _id: '30175', to: '332', }, { @@ -1327,7 +1327,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6420', - id: '29856', + _id: '29856', to: '332', }, { @@ -1335,7 +1335,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6041', - id: '29477', + _id: '29477', to: '332', }, { @@ -1343,7 +1343,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7523', - id: '38165', + _id: '38165', to: '332', }, { @@ -1351,7 +1351,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6419', - id: '29855', + _id: '29855', to: '332', }, { @@ -1359,7 +1359,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6895', - id: '30331', + _id: '30331', to: '332', }, { @@ -1367,7 +1367,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7259', - id: '36393', + _id: '36393', to: '332', }, { @@ -1375,7 +1375,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7541', - id: '38286', + _id: '38286', to: '332', }, { @@ -1383,7 +1383,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5263', - id: '4380', + _id: '4380', to: '332', }, { @@ -1391,7 +1391,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5754', - id: '17413', + _id: '17413', to: '332', }, { @@ -1399,7 +1399,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5183', - id: '2902', + _id: '2902', to: '332', }, { @@ -1407,7 +1407,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5867', - id: '20533', + _id: '20533', to: '332', }, { @@ -1415,7 +1415,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5151', - id: '2418', + _id: '2418', to: '332', }, { @@ -1423,7 +1423,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5711', - id: '15096', + _id: '15096', to: '332', }, { @@ -1431,7 +1431,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5542', - id: '9627', + _id: '9627', to: '332', }, { @@ -1439,7 +1439,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5520', - id: '9310', + _id: '9310', to: '332', }, { @@ -1447,7 +1447,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5809', - id: '18772', + _id: '18772', to: '332', }, { @@ -1455,7 +1455,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6899', - id: '30335', + _id: '30335', to: '334', }, { @@ -1463,7 +1463,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6762', - id: '30198', + _id: '30198', to: '334', }, { @@ -1471,7 +1471,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7107', - id: '35637', + _id: '35637', to: '334', }, { @@ -1479,7 +1479,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7576', - id: '38462', + _id: '38462', to: '334', }, { @@ -1487,7 +1487,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6429', - id: '29865', + _id: '29865', to: '334', }, { @@ -1495,7 +1495,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6576', - id: '30012', + _id: '30012', to: '334', }, { @@ -1503,7 +1503,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6800', - id: '30236', + _id: '30236', to: '334', }, { @@ -1511,7 +1511,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6704', - id: '30140', + _id: '30140', to: '334', }, { @@ -1519,7 +1519,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7102', - id: '35612', + _id: '35612', to: '334', }, { @@ -1527,7 +1527,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6298', - id: '29734', + _id: '29734', to: '334', }, { @@ -1535,7 +1535,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6222', - id: '29658', + _id: '29658', to: '334', }, { @@ -1543,7 +1543,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6761', - id: '30197', + _id: '30197', to: '334', }, { @@ -1551,7 +1551,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7105', - id: '35877', + _id: '35877', to: '334', }, { @@ -1559,7 +1559,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7097', - id: '35591', + _id: '35591', to: '334', }, { @@ -1567,7 +1567,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6619', - id: '30055', + _id: '30055', to: '334', }, { @@ -1575,7 +1575,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6828', - id: '30264', + _id: '30264', to: '334', }, { @@ -1583,7 +1583,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6617', - id: '30053', + _id: '30053', to: '334', }, { @@ -1591,7 +1591,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5306', - id: '5000', + _id: '5000', to: '334', }, { @@ -1599,7 +1599,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5339', - id: '5733', + _id: '5733', to: '334', }, { @@ -1607,7 +1607,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5081', - id: '339', + _id: '339', to: '334', }, { @@ -1615,7 +1615,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5446', - id: '8246', + _id: '8246', to: '334', }, { @@ -1623,7 +1623,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5548', - id: '9640', + _id: '9640', to: '334', }, { @@ -1631,7 +1631,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5155', - id: '2490', + _id: '2490', to: '334', }, { @@ -1639,7 +1639,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5178', - id: '2829', + _id: '2829', to: '334', }, { @@ -1647,7 +1647,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5137', - id: '2312', + _id: '2312', to: '334', }, { @@ -1655,7 +1655,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5319', - id: '5264', + _id: '5264', to: '334', }, { @@ -1663,7 +1663,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5808', - id: '18762', + _id: '18762', to: '334', }, { @@ -1671,7 +1671,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5325', - id: '5442', + _id: '5442', to: '334', }, { @@ -1679,7 +1679,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5574', - id: '10204', + _id: '10204', to: '334', }, { @@ -1687,7 +1687,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6784', - id: '30220', + _id: '30220', to: '338', }, { @@ -1695,7 +1695,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7513', - id: '38133', + _id: '38133', to: '338', }, { @@ -1703,7 +1703,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7351', - id: '37005', + _id: '37005', to: '338', }, { @@ -1711,7 +1711,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7587', - id: '38557', + _id: '38557', to: '338', }, { @@ -1719,7 +1719,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6069', - id: '29505', + _id: '29505', to: '338', }, { @@ -1727,7 +1727,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7277', - id: '36446', + _id: '36446', to: '338', }, { @@ -1735,7 +1735,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6637', - id: '30073', + _id: '30073', to: '338', }, { @@ -1743,7 +1743,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6667', - id: '30103', + _id: '30103', to: '338', }, { @@ -1751,7 +1751,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6593', - id: '30029', + _id: '30029', to: '338', }, { @@ -1759,7 +1759,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7543', - id: '38296', + _id: '38296', to: '338', }, { @@ -1767,7 +1767,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6833', - id: '30269', + _id: '30269', to: '338', }, { @@ -1775,7 +1775,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7158', - id: '35862', + _id: '35862', to: '338', }, { @@ -1783,7 +1783,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7183', - id: '35956', + _id: '35956', to: '338', }, { @@ -1791,7 +1791,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6718', - id: '30154', + _id: '30154', to: '338', }, { @@ -1799,7 +1799,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6613', - id: '30049', + _id: '30049', to: '338', }, { @@ -1807,7 +1807,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6512', - id: '29948', + _id: '29948', to: '338', }, { @@ -1815,7 +1815,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6300', - id: '29736', + _id: '29736', to: '338', }, { @@ -1823,7 +1823,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6567', - id: '30003', + _id: '30003', to: '338', }, { @@ -1831,7 +1831,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6560', - id: '29996', + _id: '29996', to: '338', }, { @@ -1839,7 +1839,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6552', - id: '29988', + _id: '29988', to: '338', }, { @@ -1847,7 +1847,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6317', - id: '29753', + _id: '29753', to: '338', }, { @@ -1855,7 +1855,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6284', - id: '29720', + _id: '29720', to: '338', }, { @@ -1863,7 +1863,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6877', - id: '30313', + _id: '30313', to: '338', }, { @@ -1871,7 +1871,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6982', - id: '35120', + _id: '35120', to: '338', }, { @@ -1879,7 +1879,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6318', - id: '29754', + _id: '29754', to: '338', }, { @@ -1887,7 +1887,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6582', - id: '30018', + _id: '30018', to: '338', }, { @@ -1895,7 +1895,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7492', - id: '38004', + _id: '38004', to: '338', }, { @@ -1903,7 +1903,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6286', - id: '29722', + _id: '29722', to: '338', }, { @@ -1911,7 +1911,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6737', - id: '30173', + _id: '30173', to: '338', }, { @@ -1919,7 +1919,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6580', - id: '30016', + _id: '30016', to: '338', }, { @@ -1927,7 +1927,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7142', - id: '35772', + _id: '35772', to: '338', }, { @@ -1935,7 +1935,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6545', - id: '29981', + _id: '29981', to: '338', }, { @@ -1943,7 +1943,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6861', - id: '30297', + _id: '30297', to: '338', }, { @@ -1951,7 +1951,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7339', - id: '36949', + _id: '36949', to: '338', }, { @@ -1959,7 +1959,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6614', - id: '30050', + _id: '30050', to: '338', }, { @@ -1967,7 +1967,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6197', - id: '29633', + _id: '29633', to: '338', }, { @@ -1975,7 +1975,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7752', - id: '40231', + _id: '40231', to: '338', }, { @@ -1983,7 +1983,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6743', - id: '30179', + _id: '30179', to: '338', }, { @@ -1991,7 +1991,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6974', - id: '35101', + _id: '35101', to: '338', }, { @@ -1999,7 +1999,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6062', - id: '29498', + _id: '29498', to: '338', }, { @@ -2007,7 +2007,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7000', - id: '35177', + _id: '35177', to: '338', }, { @@ -2015,7 +2015,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7285', - id: '36473', + _id: '36473', to: '338', }, { @@ -2023,7 +2023,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7758', - id: '40286', + _id: '40286', to: '338', }, { @@ -2031,7 +2031,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7352', - id: '37008', + _id: '37008', to: '338', }, { @@ -2039,7 +2039,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6071', - id: '29507', + _id: '29507', to: '338', }, { @@ -2047,7 +2047,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6998', - id: '35172', + _id: '35172', to: '338', }, { @@ -2055,7 +2055,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6107', - id: '29543', + _id: '29543', to: '338', }, { @@ -2063,7 +2063,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7185', - id: '35979', + _id: '35979', to: '338', }, { @@ -2071,7 +2071,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6757', - id: '30193', + _id: '30193', to: '338', }, { @@ -2079,7 +2079,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6876', - id: '30312', + _id: '30312', to: '338', }, { @@ -2087,7 +2087,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6636', - id: '30072', + _id: '30072', to: '338', }, { @@ -2095,7 +2095,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6322', - id: '29758', + _id: '29758', to: '338', }, { @@ -2103,7 +2103,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6634', - id: '30070', + _id: '30070', to: '338', }, { @@ -2111,7 +2111,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6525', - id: '29961', + _id: '29961', to: '338', }, { @@ -2119,7 +2119,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6557', - id: '29993', + _id: '29993', to: '338', }, { @@ -2127,7 +2127,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6565', - id: '30001', + _id: '30001', to: '338', }, { @@ -2135,7 +2135,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6126', - id: '29562', + _id: '29562', to: '338', }, { @@ -2143,7 +2143,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6736', - id: '30172', + _id: '30172', to: '338', }, { @@ -2151,7 +2151,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6460', - id: '29896', + _id: '29896', to: '338', }, { @@ -2159,7 +2159,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6448', - id: '29884', + _id: '29884', to: '338', }, { @@ -2167,7 +2167,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6786', - id: '30222', + _id: '30222', to: '338', }, { @@ -2175,7 +2175,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6211', - id: '29647', + _id: '29647', to: '338', }, { @@ -2183,7 +2183,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6813', - id: '30249', + _id: '30249', to: '338', }, { @@ -2191,7 +2191,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6756', - id: '30192', + _id: '30192', to: '338', }, { @@ -2199,7 +2199,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6068', - id: '29504', + _id: '29504', to: '338', }, { @@ -2207,7 +2207,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6469', - id: '29905', + _id: '29905', to: '338', }, { @@ -2215,7 +2215,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7265', - id: '36409', + _id: '36409', to: '338', }, { @@ -2223,7 +2223,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6738', - id: '30174', + _id: '30174', to: '338', }, { @@ -2231,7 +2231,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6256', - id: '29692', + _id: '29692', to: '338', }, { @@ -2239,7 +2239,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6242', - id: '29678', + _id: '29678', to: '338', }, { @@ -2247,7 +2247,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7657', - id: '39115', + _id: '39115', to: '338', }, { @@ -2255,7 +2255,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6964', - id: '35075', + _id: '35075', to: '338', }, { @@ -2263,7 +2263,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7586', - id: '38544', + _id: '38544', to: '338', }, { @@ -2271,7 +2271,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6394', - id: '29830', + _id: '29830', to: '338', }, { @@ -2279,7 +2279,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6320', - id: '29756', + _id: '29756', to: '338', }, { @@ -2287,7 +2287,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6834', - id: '30270', + _id: '30270', to: '338', }, { @@ -2295,7 +2295,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6862', - id: '30298', + _id: '30298', to: '338', }, { @@ -2303,7 +2303,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7507', - id: '38107', + _id: '38107', to: '338', }, { @@ -2311,7 +2311,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6771', - id: '30207', + _id: '30207', to: '338', }, { @@ -2319,7 +2319,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6579', - id: '30015', + _id: '30015', to: '338', }, { @@ -2327,7 +2327,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6566', - id: '30002', + _id: '30002', to: '338', }, { @@ -2335,7 +2335,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6127', - id: '29563', + _id: '29563', to: '338', }, { @@ -2343,7 +2343,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6778', - id: '30214', + _id: '30214', to: '338', }, { @@ -2351,7 +2351,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7508', - id: '38111', + _id: '38111', to: '338', }, { @@ -2359,7 +2359,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6796', - id: '30232', + _id: '30232', to: '338', }, { @@ -2367,7 +2367,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6386', - id: '29822', + _id: '29822', to: '338', }, { @@ -2375,7 +2375,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6730', - id: '30166', + _id: '30166', to: '338', }, { @@ -2383,7 +2383,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5068', - id: '2', + _id: '2', to: '338', }, { @@ -2391,7 +2391,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5588', - id: '10536', + _id: '10536', to: '338', }, { @@ -2399,7 +2399,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5074', - id: '71', + _id: '71', to: '338', }, { @@ -2407,7 +2407,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5913', - id: '22890', + _id: '22890', to: '338', }, { @@ -2415,7 +2415,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5181', - id: '2876', + _id: '2876', to: '338', }, { @@ -2423,7 +2423,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5249', - id: '3994', + _id: '3994', to: '338', }, { @@ -2431,7 +2431,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5629', - id: '11976', + _id: '11976', to: '338', }, { @@ -2439,7 +2439,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5691', - id: '14109', + _id: '14109', to: '338', }, { @@ -2447,7 +2447,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5787', - id: '17825', + _id: '17825', to: '338', }, { @@ -2455,7 +2455,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5822', - id: '18932', + _id: '18932', to: '338', }, { @@ -2463,7 +2463,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5784', - id: '17816', + _id: '17816', to: '338', }, { @@ -2471,7 +2471,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5172', - id: '2737', + _id: '2737', to: '338', }, { @@ -2479,7 +2479,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5073', - id: '62', + _id: '62', to: '338', }, { @@ -2487,7 +2487,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5304', - id: '4924', + _id: '4924', to: '338', }, { @@ -2495,7 +2495,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5898', - id: '22202', + _id: '22202', to: '338', }, { @@ -2503,7 +2503,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5199', - id: '3208', + _id: '3208', to: '338', }, { @@ -2511,7 +2511,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5421', - id: '6967', + _id: '6967', to: '338', }, { @@ -2519,7 +2519,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5654', - id: '13135', + _id: '13135', to: '338', }, { @@ -2527,7 +2527,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5944', - id: '23894', + _id: '23894', to: '338', }, { @@ -2535,7 +2535,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5129', - id: '2293', + _id: '2293', to: '338', }, { @@ -2543,7 +2543,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5609', - id: '11472', + _id: '11472', to: '338', }, { @@ -2551,7 +2551,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5788', - id: '17828', + _id: '17828', to: '338', }, { @@ -2559,7 +2559,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5483', - id: '8811', + _id: '8811', to: '338', }, { @@ -2567,7 +2567,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5725', - id: '16089', + _id: '16089', to: '338', }, { @@ -2575,7 +2575,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5697', - id: '14195', + _id: '14195', to: '338', }, { @@ -2583,7 +2583,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5303', - id: '4916', + _id: '4916', to: '338', }, { @@ -2591,7 +2591,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5522', - id: '9330', + _id: '9330', to: '338', }, { @@ -2599,7 +2599,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5427', - id: '7082', + _id: '7082', to: '338', }, { @@ -2607,7 +2607,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5156', - id: '2502', + _id: '2502', to: '338', }, { @@ -2615,7 +2615,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5876', - id: '20788', + _id: '20788', to: '338', }, { @@ -2623,7 +2623,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5328', - id: '5503', + _id: '5503', to: '338', }, { @@ -2631,7 +2631,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5963', - id: '24883', + _id: '24883', to: '338', }, { @@ -2639,7 +2639,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5786', - id: '17822', + _id: '17822', to: '338', }, { @@ -2647,7 +2647,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5839', - id: '19662', + _id: '19662', to: '338', }, { @@ -2655,7 +2655,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5089', - id: '448', + _id: '448', to: '338', }, { @@ -2663,7 +2663,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5115', - id: '2231', + _id: '2231', to: '338', }, { @@ -2671,7 +2671,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5108', - id: '2073', + _id: '2073', to: '338', }, { @@ -2679,7 +2679,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5812', - id: '18804', + _id: '18804', to: '338', }, { @@ -2687,7 +2687,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5525', - id: '9363', + _id: '9363', to: '338', }, { @@ -2695,7 +2695,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5237', - id: '3805', + _id: '3805', to: '338', }, { @@ -2703,7 +2703,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5835', - id: '19520', + _id: '19520', to: '338', }, { @@ -2711,7 +2711,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5583', - id: '10381', + _id: '10381', to: '338', }, { @@ -2719,7 +2719,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5203', - id: '3273', + _id: '3273', to: '338', }, { @@ -2727,7 +2727,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5190', - id: '2988', + _id: '2988', to: '338', }, { @@ -2735,7 +2735,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5182', - id: '2889', + _id: '2889', to: '338', }, { @@ -2743,7 +2743,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5584', - id: '10394', + _id: '10394', to: '338', }, { @@ -2751,7 +2751,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5628', - id: '11974', + _id: '11974', to: '338', }, { @@ -2759,7 +2759,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5148', - id: '2370', + _id: '2370', to: '338', }, { @@ -2767,7 +2767,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6785', - id: '30221', + _id: '30221', to: '338', }, { @@ -2775,7 +2775,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7504', - id: '38090', + _id: '38090', to: '338', }, { @@ -2783,7 +2783,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6873', - id: '30309', + _id: '30309', to: '341', }, { @@ -2791,7 +2791,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7051', - id: '35370', + _id: '35370', to: '343', }, { @@ -2799,7 +2799,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7049', - id: '35365', + _id: '35365', to: '343', }, { @@ -2807,7 +2807,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7050', - id: '35367', + _id: '35367', to: '344', }, { @@ -2815,7 +2815,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7305', - id: '36712', + _id: '36712', to: '346', }, { @@ -2823,7 +2823,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5771', - id: '17744', + _id: '17744', to: '346', }, { @@ -2831,7 +2831,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7048', - id: '35350', + _id: '35350', to: '347', }, { @@ -2839,7 +2839,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6734', - id: '30170', + _id: '30170', to: '347', }, { @@ -2847,7 +2847,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6110', - id: '29546', + _id: '29546', to: '348', }, { @@ -2855,7 +2855,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6111', - id: '29547', + _id: '29547', to: '348', }, { @@ -2863,7 +2863,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6010', - id: '28665', + _id: '28665', to: '348', }, { @@ -2871,7 +2871,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7195', - id: '36013', + _id: '36013', to: '350', }, { @@ -2879,7 +2879,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6150', - id: '29586', + _id: '29586', to: '350', }, { @@ -2887,7 +2887,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7143', - id: '35774', + _id: '35774', to: '350', }, { @@ -2895,7 +2895,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7560', - id: '38393', + _id: '38393', to: '350', }, { @@ -2903,7 +2903,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6880', - id: '30316', + _id: '30316', to: '350', }, { @@ -2911,7 +2911,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7722', - id: '39652', + _id: '39652', to: '350', }, { @@ -2919,7 +2919,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7045', - id: '35337', + _id: '35337', to: '350', }, { @@ -2927,7 +2927,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7765', - id: '40354', + _id: '40354', to: '350', }, { @@ -2935,7 +2935,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7687', - id: '39315', + _id: '39315', to: '350', }, { @@ -2943,7 +2943,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6868', - id: '30304', + _id: '30304', to: '350', }, { @@ -2951,7 +2951,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7007', - id: '35200', + _id: '35200', to: '350', }, { @@ -2959,7 +2959,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7140', - id: '35765', + _id: '35765', to: '350', }, { @@ -2967,7 +2967,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7627', - id: '38873', + _id: '38873', to: '350', }, { @@ -2975,7 +2975,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7234', - id: '36247', + _id: '36247', to: '350', }, { @@ -2983,7 +2983,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7193', - id: '36009', + _id: '36009', to: '350', }, { @@ -2991,7 +2991,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6249', - id: '29685', + _id: '29685', to: '350', }, { @@ -2999,7 +2999,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6138', - id: '29574', + _id: '29574', to: '350', }, { @@ -3007,7 +3007,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7432', - id: '37686', + _id: '37686', to: '350', }, { @@ -3015,7 +3015,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7395', - id: '37367', + _id: '37367', to: '350', }, { @@ -3023,7 +3023,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6099', - id: '29535', + _id: '29535', to: '350', }, { @@ -3031,7 +3031,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7069', - id: '35501', + _id: '35501', to: '350', }, { @@ -3039,7 +3039,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7226', - id: '36162', + _id: '36162', to: '350', }, { @@ -3047,7 +3047,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6698', - id: '30134', + _id: '30134', to: '350', }, { @@ -3055,7 +3055,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6255', - id: '29691', + _id: '29691', to: '350', }, { @@ -3063,7 +3063,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7555', - id: '38369', + _id: '38369', to: '350', }, { @@ -3071,7 +3071,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7491', - id: '38001', + _id: '38001', to: '350', }, { @@ -3079,7 +3079,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7714', - id: '39571', + _id: '39571', to: '350', }, { @@ -3087,7 +3087,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7447', - id: '37760', + _id: '37760', to: '350', }, { @@ -3095,7 +3095,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6299', - id: '29735', + _id: '29735', to: '350', }, { @@ -3103,7 +3103,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7266', - id: '36411', + _id: '36411', to: '350', }, { @@ -3111,7 +3111,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6788', - id: '30224', + _id: '30224', to: '350', }, { @@ -3119,7 +3119,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5069', - id: '21', + _id: '21', to: '350', }, { @@ -3127,7 +3127,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5458', - id: '8452', + _id: '8452', to: '350', }, { @@ -3135,7 +3135,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5990', - id: '26805', + _id: '26805', to: '350', }, { @@ -3143,7 +3143,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5597', - id: '10662', + _id: '10662', to: '350', }, { @@ -3151,7 +3151,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5348', - id: '5821', + _id: '5821', to: '350', }, { @@ -3159,7 +3159,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5517', - id: '9228', + _id: '9228', to: '350', }, { @@ -3167,7 +3167,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5710', - id: '15054', + _id: '15054', to: '350', }, { @@ -3175,7 +3175,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5758', - id: '17534', + _id: '17534', to: '350', }, { @@ -3183,7 +3183,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5355', - id: '5923', + _id: '5923', to: '350', }, { @@ -3191,7 +3191,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5105', - id: '1894', + _id: '1894', to: '350', }, { @@ -3199,7 +3199,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5283', - id: '4711', + _id: '4711', to: '350', }, { @@ -3207,7 +3207,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6001', - id: '27910', + _id: '27910', to: '350', }, { @@ -3215,7 +3215,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5580', - id: '10341', + _id: '10341', to: '350', }, { @@ -3223,7 +3223,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5992', - id: '26851', + _id: '26851', to: '350', }, { @@ -3231,7 +3231,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5670', - id: '13440', + _id: '13440', to: '350', }, { @@ -3239,7 +3239,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5935', - id: '23458', + _id: '23458', to: '350', }, { @@ -3247,7 +3247,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5487', - id: '8842', + _id: '8842', to: '350', }, { @@ -3255,7 +3255,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5641', - id: '12757', + _id: '12757', to: '350', }, { @@ -3263,7 +3263,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5991', - id: '26839', + _id: '26839', to: '350', }, { @@ -3271,7 +3271,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5752', - id: '17381', + _id: '17381', to: '350', }, { @@ -3279,7 +3279,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5565', - id: '9944', + _id: '9944', to: '350', }, { @@ -3287,7 +3287,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5648', - id: '12989', + _id: '12989', to: '350', }, { @@ -3295,7 +3295,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5803', - id: '18689', + _id: '18689', to: '350', }, { @@ -3303,7 +3303,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5473', - id: '8589', + _id: '8589', to: '350', }, { @@ -3311,7 +3311,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5149', - id: '2397', + _id: '2397', to: '350', }, { @@ -3319,7 +3319,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5979', - id: '26507', + _id: '26507', to: '350', }, { @@ -3327,7 +3327,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5652', - id: '13093', + _id: '13093', to: '350', }, { @@ -3335,7 +3335,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5593', - id: '10603', + _id: '10603', to: '350', }, { @@ -3343,7 +3343,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5103', - id: '1616', + _id: '1616', to: '350', }, { @@ -3351,7 +3351,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5282', - id: '4709', + _id: '4709', to: '350', }, { @@ -3359,7 +3359,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7094', - id: '35584', + _id: '35584', to: '350', }, { @@ -3367,7 +3367,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7202', - id: '36037', + _id: '36037', to: '350', }, { @@ -3375,7 +3375,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6446', - id: '29882', + _id: '29882', to: '350', }, { @@ -3383,7 +3383,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7194', - id: '36011', + _id: '36011', to: '350', }, { @@ -3391,7 +3391,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6994', - id: '38061', + _id: '38061', to: '350', }, { @@ -3399,7 +3399,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6901', - id: '30337', + _id: '30337', to: '350', }, { @@ -3407,7 +3407,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7789', - id: '40533', + _id: '40533', to: '350', }, { @@ -3415,7 +3415,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6302', - id: '29738', + _id: '29738', to: '350', }, { @@ -3423,7 +3423,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7660', - id: '39163', + _id: '39163', to: '350', }, { @@ -3431,7 +3431,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7286', - id: '36477', + _id: '36477', to: '350', }, { @@ -3439,7 +3439,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7198', - id: '36020', + _id: '36020', to: '350', }, { @@ -3447,7 +3447,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7497', - id: '38101', + _id: '38101', to: '350', }, { @@ -3455,7 +3455,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6277', - id: '29713', + _id: '29713', to: '350', }, { @@ -3463,7 +3463,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6749', - id: '30185', + _id: '30185', to: '350', }, { @@ -3471,7 +3471,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7208', - id: '36070', + _id: '36070', to: '350', }, { @@ -3479,7 +3479,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6499', - id: '29935', + _id: '29935', to: '350', }, { @@ -3487,7 +3487,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6903', - id: '30339', + _id: '30339', to: '350', }, { @@ -3495,7 +3495,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6820', - id: '30256', + _id: '30256', to: '350', }, { @@ -3503,7 +3503,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7182', - id: '35930', + _id: '35930', to: '350', }, { @@ -3511,7 +3511,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7686', - id: '39307', + _id: '39307', to: '350', }, { @@ -3519,7 +3519,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6061', - id: '29497', + _id: '29497', to: '352', }, { @@ -3527,7 +3527,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5059', - id: '36689', + _id: '36689', to: '352', }, { @@ -3535,7 +3535,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7136', - id: '35744', + _id: '35744', to: '352', }, { @@ -3543,7 +3543,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7457', - id: '37800', + _id: '37800', to: '352', }, { @@ -3551,7 +3551,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6850', - id: '30286', + _id: '30286', to: '352', }, { @@ -3559,7 +3559,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6510', - id: '29946', + _id: '29946', to: '352', }, { @@ -3567,7 +3567,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7189', - id: '35991', + _id: '35991', to: '352', }, { @@ -3575,7 +3575,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7489', - id: '37993', + _id: '37993', to: '352', }, { @@ -3583,7 +3583,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7144', - id: '35778', + _id: '35778', to: '352', }, { @@ -3591,7 +3591,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7372', - id: '37197', + _id: '37197', to: '352', }, { @@ -3599,7 +3599,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7733', - id: '39984', + _id: '39984', to: '352', }, { @@ -3607,7 +3607,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6575', - id: '30011', + _id: '30011', to: '352', }, { @@ -3615,7 +3615,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5412', - id: '6873', + _id: '6873', to: '352', }, { @@ -3623,7 +3623,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5228', - id: '3616', + _id: '3616', to: '352', }, { @@ -3631,7 +3631,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5569', - id: '10003', + _id: '10003', to: '352', }, { @@ -3639,7 +3639,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5276', - id: '4696', + _id: '4696', to: '352', }, { @@ -3647,7 +3647,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5248', - id: '3956', + _id: '3956', to: '352', }, { @@ -3655,7 +3655,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5683', - id: '13838', + _id: '13838', to: '352', }, { @@ -3663,7 +3663,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5238', - id: '3813', + _id: '3813', to: '352', }, { @@ -3671,7 +3671,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5816', - id: '18845', + _id: '18845', to: '352', }, { @@ -3679,7 +3679,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6439', - id: '29875', + _id: '29875', to: '353', }, { @@ -3687,7 +3687,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7066', - id: '35483', + _id: '35483', to: '353', }, { @@ -3695,7 +3695,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7230', - id: '36219', + _id: '36219', to: '353', }, { @@ -3703,7 +3703,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7552', - id: '38336', + _id: '38336', to: '353', }, { @@ -3711,7 +3711,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7170', - id: '35891', + _id: '35891', to: '353', }, { @@ -3719,7 +3719,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7297', - id: '36665', + _id: '36665', to: '353', }, { @@ -3727,7 +3727,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7455', - id: '37783', + _id: '37783', to: '353', }, { @@ -3735,7 +3735,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5251', - id: '4025', + _id: '4025', to: '353', }, { @@ -3743,7 +3743,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5934', - id: '23445', + _id: '23445', to: '353', }, { @@ -3751,7 +3751,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5216', - id: '3448', + _id: '3448', to: '353', }, { @@ -3759,7 +3759,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5351', - id: '5883', + _id: '5883', to: '353', }, { @@ -3767,7 +3767,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5833', - id: '19419', + _id: '19419', to: '353', }, { @@ -3775,7 +3775,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5917', - id: '23047', + _id: '23047', to: '353', }, { @@ -3783,7 +3783,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5244', - id: '3907', + _id: '3907', to: '353', }, { @@ -3791,7 +3791,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6013', - id: '28876', + _id: '28876', to: '354', }, { @@ -3799,7 +3799,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6856', - id: '30292', + _id: '30292', to: '357', }, { @@ -3807,7 +3807,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6376', - id: '29812', + _id: '29812', to: '357', }, { @@ -3815,7 +3815,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6377', - id: '29813', + _id: '29813', to: '357', }, { @@ -3823,7 +3823,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6372', - id: '29808', + _id: '29808', to: '357', }, { @@ -3831,7 +3831,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6855', - id: '30291', + _id: '30291', to: '357', }, { @@ -3839,7 +3839,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6282', - id: '29718', + _id: '29718', to: '357', }, { @@ -3847,7 +3847,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6371', - id: '29807', + _id: '29807', to: '357', }, { @@ -3855,7 +3855,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6281', - id: '29717', + _id: '29717', to: '357', }, { @@ -3863,7 +3863,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5430', - id: '7142', + _id: '7142', to: '357', }, { @@ -3871,7 +3871,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6518', - id: '29954', + _id: '29954', to: '358', }, { @@ -3879,7 +3879,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7129', - id: '35715', + _id: '35715', to: '358', }, { @@ -3887,7 +3887,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7738', - id: '40030', + _id: '40030', to: '358', }, { @@ -3895,7 +3895,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7216', - id: '36113', + _id: '36113', to: '358', }, { @@ -3903,7 +3903,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7748', - id: '40186', + _id: '40186', to: '358', }, { @@ -3911,7 +3911,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7082', - id: '35544', + _id: '35544', to: '358', }, { @@ -3919,7 +3919,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7454', - id: '37781', + _id: '37781', to: '358', }, { @@ -3927,7 +3927,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5632', - id: '12046', + _id: '12046', to: '358', }, { @@ -3935,7 +3935,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5712', - id: '15112', + _id: '15112', to: '358', }, { @@ -3943,7 +3943,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5860', - id: '20356', + _id: '20356', to: '358', }, { @@ -3951,7 +3951,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6005', - id: '28410', + _id: '28410', to: '358', }, { @@ -3959,7 +3959,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5510', - id: '9089', + _id: '9089', to: '358', }, { @@ -3967,7 +3967,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5519', - id: '9294', + _id: '9294', to: '358', }, { @@ -3975,7 +3975,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '5076', - id: '286', + _id: '286', to: '358', }, { @@ -3983,7 +3983,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7817', - id: '40808', + _id: '40808', to: '359', }, { @@ -3991,7 +3991,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6830', - id: '30266', + _id: '30266', to: '362', }, { @@ -3999,7 +3999,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '6598', - id: '30034', + _id: '30034', to: '362', }, { @@ -4007,7 +4007,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken Type: 'COUNTRY', }, from: '7472', - id: '39105', + _id: '39105', to: '362', }, ], @@ -4024,7 +4024,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Afghanistan', tld: 'AF', }, - id: '295', + _id: '295', }, { attributes: { @@ -4037,7 +4037,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Azizi Bank', }, - id: '6219', + _id: '6219', }, { attributes: { @@ -4050,7 +4050,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Maiwand Bank', }, - id: '6217', + _id: '6217', }, { attributes: { @@ -4063,7 +4063,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Da Afghanistan Bank', }, - id: '6792', + _id: '6792', }, { attributes: { @@ -4076,7 +4076,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Afgan United Bank', }, - id: '6220', + _id: '6220', }, { attributes: { @@ -4089,7 +4089,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Maiwand Bank', }, - id: '7011', + _id: '7011', }, { attributes: { @@ -4102,7 +4102,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Afghan United Bank', }, - id: '6216', + _id: '6216', }, { attributes: { @@ -4115,7 +4115,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'New Kabul Bank', }, - id: '6795', + _id: '6795', }, { attributes: { @@ -4128,7 +4128,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Kabul Bank', }, - id: '6955', + _id: '6955', }, { attributes: { @@ -4141,7 +4141,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bakhtar Bank', }, - id: '6218', + _id: '6218', }, { attributes: { @@ -4154,7 +4154,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bakhtar Bank', }, - id: '7483', + _id: '7483', }, { attributes: { @@ -4167,7 +4167,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Da Afghanistan Bank', }, - id: '7695', + _id: '7695', }, { attributes: { @@ -4181,7 +4181,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Afghanistan International Bank', }, - id: '5820', + _id: '5820', }, { attributes: { @@ -4195,7 +4195,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Andorra', tld: 'AD', }, - id: '299', + _id: '299', }, { attributes: { @@ -4208,7 +4208,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banca Privada Dandorra S.A.', }, - id: '7178', + _id: '7178', }, { attributes: { @@ -4222,7 +4222,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Mora Banc Grup SA', }, - id: '5158', + _id: '5158', }, { attributes: { @@ -4236,7 +4236,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Angola', tld: 'AO', }, - id: '300', + _id: '300', }, { attributes: { @@ -4249,7 +4249,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Finibanco Angola S.A', }, - id: '7707', + _id: '7707', }, { attributes: { @@ -4262,7 +4262,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco De Fomento Sarl Angola', }, - id: '7047', + _id: '7047', }, { attributes: { @@ -4276,7 +4276,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Antigua and Barbuda', tld: 'AG', }, - id: '303', + _id: '303', }, { attributes: { @@ -4289,7 +4289,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Global Bank of Commerce Ltd', }, - id: '7314', + _id: '7314', }, { attributes: { @@ -4302,7 +4302,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Global Bank of Commerce', }, - id: '6346', + _id: '6346', }, { attributes: { @@ -4315,7 +4315,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Global Bank of Commerce ', }, - id: '6347', + _id: '6347', }, { attributes: { @@ -4329,7 +4329,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Armenia', tld: 'AM', }, - id: '305', + _id: '305', }, { attributes: { @@ -4342,7 +4342,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Armswissbank Cjsc', }, - id: '7638', + _id: '7638', }, { attributes: { @@ -4355,7 +4355,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Armbusinessbank', }, - id: '7253', + _id: '7253', }, { attributes: { @@ -4369,7 +4369,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Australia', tld: 'AU', }, - id: '307', + _id: '307', }, { attributes: { @@ -4382,7 +4382,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Commonwealth Bank of Australia', }, - id: '6961', + _id: '6961', }, { attributes: { @@ -4395,7 +4395,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Australia And New Zealand Banking', }, - id: '7365', + _id: '7365', }, { attributes: { @@ -4408,7 +4408,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Macquarie Bank Ltd', }, - id: '7720', + _id: '7720', }, { attributes: { @@ -4421,7 +4421,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ozforex Limited', }, - id: '7501', + _id: '7501', }, { attributes: { @@ -4434,7 +4434,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'National Australia Bank Limited', }, - id: '7060', + _id: '7060', }, { attributes: { @@ -4447,7 +4447,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'St. George Bank, A Division of Westpac Banking Corp', }, - id: '6414', + _id: '6414', }, { attributes: { @@ -4460,7 +4460,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Travelex Limited', }, - id: '6988', + _id: '6988', }, { attributes: { @@ -4473,7 +4473,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Commonwealth Bank of Australia', }, - id: '6415', + _id: '6415', }, { attributes: { @@ -4486,7 +4486,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Macquarie Bank Limited ', }, - id: '7366', + _id: '7366', }, { attributes: { @@ -4499,7 +4499,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Credit Union Australia Ltd', }, - id: '7354', + _id: '7354', }, { attributes: { @@ -4512,7 +4512,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Westpac Banking Corporation', }, - id: '6416', + _id: '6416', }, { attributes: { @@ -4526,7 +4526,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Australia New Zealand Bkg Gr Lt', }, - id: '5121', + _id: '5121', }, { attributes: { @@ -4540,7 +4540,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'National Australia Bank Limited', }, - id: '5869', + _id: '5869', }, { attributes: { @@ -4554,7 +4554,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Australia And New Zealand Banking', }, - id: '5825', + _id: '5825', }, { attributes: { @@ -4568,7 +4568,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Macquarie Bank Ltd', }, - id: '5985', + _id: '5985', }, { attributes: { @@ -4582,7 +4582,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Commonwealth Bank of Australia', }, - id: '5530', + _id: '5530', }, { attributes: { @@ -4596,7 +4596,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Australia And New Zealand Banking Grp Ltd', }, - id: '5753', + _id: '5753', }, { attributes: { @@ -4610,7 +4610,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Commonwealth Bank of Australia', }, - id: '5109', + _id: '5109', }, { attributes: { @@ -4624,7 +4624,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ozforex Limited', }, - id: '5891', + _id: '5891', }, { attributes: { @@ -4638,7 +4638,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Western Union Business Solutions', }, - id: '5836', + _id: '5836', }, { attributes: { @@ -4652,7 +4652,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Western Australia Ltd', }, - id: '5999', + _id: '5999', }, { attributes: { @@ -4666,7 +4666,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Suncorp Metway Ltd', }, - id: '5875', + _id: '5875', }, { attributes: { @@ -4680,7 +4680,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'National Australia Bank Limited', }, - id: '5341', + _id: '5341', }, { attributes: { @@ -4694,7 +4694,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Macquarie Bank Limited', }, - id: '5343', + _id: '5343', }, { attributes: { @@ -4708,7 +4708,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Austria', tld: 'AT', }, - id: '308', + _id: '308', }, { attributes: { @@ -4721,7 +4721,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisen Zentralbank Osterreich Aktiengesellschaft', }, - id: '6670', + _id: '6670', }, { attributes: { @@ -4734,7 +4734,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'VTB Bank', }, - id: '7215', + _id: '7215', }, { attributes: { @@ -4747,7 +4747,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Vorarlberger Volksbank Gmbh', }, - id: '7647', + _id: '7647', }, { attributes: { @@ -4760,7 +4760,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Meinl Bankag', }, - id: '7601', + _id: '7601', }, { attributes: { @@ -4773,7 +4773,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Capital Bank Grawe Gruppe Ag', }, - id: '7663', + _id: '7663', }, { attributes: { @@ -4786,7 +4786,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'UniCredit Bank Austria AG', }, - id: '6947', + _id: '6947', }, { attributes: { @@ -4799,7 +4799,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank Styria', }, - id: '6438', + _id: '6438', }, { attributes: { @@ -4812,7 +4812,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisen Bank International AG', }, - id: '7415', + _id: '7415', }, { attributes: { @@ -4825,7 +4825,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisen Zentralbankoesterreich AG', }, - id: '7651', + _id: '7651', }, { attributes: { @@ -4838,7 +4838,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bawag Psk Bank', }, - id: '6954', + _id: '6954', }, { attributes: { @@ -4851,7 +4851,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisen Zentralbank Osterreich', }, - id: '6066', + _id: '6066', }, { attributes: { @@ -4864,7 +4864,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Meinl Bank AG', }, - id: '6755', + _id: '6755', }, { attributes: { @@ -4877,7 +4877,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisen Zentralbank Oesterreich AG', }, - id: '7301', + _id: '7301', }, { attributes: { @@ -4890,7 +4890,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Meinl Bank AG', }, - id: '7233', + _id: '7233', }, { attributes: { @@ -4904,7 +4904,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisen Zentralbank', }, - id: '5931', + _id: '5931', }, { attributes: { @@ -4918,7 +4918,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Erste Group Bank AG', }, - id: '5298', + _id: '5298', }, { attributes: { @@ -4932,7 +4932,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Meinl Bank AG', }, - id: '5366', + _id: '5366', }, { attributes: { @@ -4946,7 +4946,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Vorarlberger Volksbank Gmbh', }, - id: '5792', + _id: '5792', }, { attributes: { @@ -4960,7 +4960,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Erste Group Bank AG', }, - id: '5642', + _id: '5642', }, { attributes: { @@ -4974,7 +4974,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'VTB Bank', }, - id: '5713', + _id: '5713', }, { attributes: { @@ -4988,7 +4988,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisen Bank International AG', }, - id: '5187', + _id: '5187', }, { attributes: { @@ -5002,7 +5002,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Denizbank AG', }, - id: '5738', + _id: '5738', }, { attributes: { @@ -5016,7 +5016,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'UniCredit Bank Austria AG', }, - id: '5364', + _id: '5364', }, { attributes: { @@ -5030,7 +5030,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisenlandesbank', }, - id: '5888', + _id: '5888', }, { attributes: { @@ -5044,7 +5044,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'VTB Bank', }, - id: '5174', + _id: '5174', }, { attributes: { @@ -5058,7 +5058,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisen Zentralbank Oesterreich AG', }, - id: '5724', + _id: '5724', }, { attributes: { @@ -5072,7 +5072,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisen Bank International AG', }, - id: '5393', + _id: '5393', }, { attributes: { @@ -5086,7 +5086,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Vorarlberger Volksbank Gmbh', }, - id: '5300', + _id: '5300', }, { attributes: { @@ -5100,7 +5100,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Capital Bank Grawe Gruppe Ag', }, - id: '5969', + _id: '5969', }, { attributes: { @@ -5114,7 +5114,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Azerbaijan', tld: 'AZ', }, - id: '309', + _id: '309', }, { attributes: { @@ -5127,7 +5127,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Baku', }, - id: '7538', + _id: '7538', }, { attributes: { @@ -5140,7 +5140,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Atabank', }, - id: '6735', + _id: '6735', }, { attributes: { @@ -5153,7 +5153,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Azerpost', }, - id: '6072', + _id: '6072', }, { attributes: { @@ -5166,7 +5166,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Gunaybank Joint Stock Bank', }, - id: '7410', + _id: '7410', }, { attributes: { @@ -5180,7 +5180,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Kapital Bank', }, - id: '5144', + _id: '5144', }, { attributes: { @@ -5194,7 +5194,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Bahamas', tld: 'BS', }, - id: '310', + _id: '310', }, { attributes: { @@ -5207,7 +5207,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Winterbotham Trust Company', }, - id: '7423', + _id: '7423', }, { attributes: { @@ -5220,7 +5220,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Winterbotham Trust Company Limited', }, - id: '7164', + _id: '7164', }, { attributes: { @@ -5233,7 +5233,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank J Safra Sarasin Bahamas Ltd', }, - id: '6165', + _id: '6165', }, { attributes: { @@ -5246,7 +5246,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Winterbotham Trust Company Limited', }, - id: '6213', + _id: '6213', }, { attributes: { @@ -5259,7 +5259,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Gonet Bank And Trust Limited', }, - id: '7099', + _id: '7099', }, { attributes: { @@ -5273,7 +5273,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Bahrain', tld: 'BH', }, - id: '311', + _id: '311', }, { attributes: { @@ -5286,7 +5286,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Turk Ekonomi Bankasi A.S. Bahrain Branch', }, - id: '7221', + _id: '7221', }, { attributes: { @@ -5299,7 +5299,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Denizbank AS Bahrain Branch', }, - id: '7220', + _id: '7220', }, { attributes: { @@ -5313,7 +5313,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Denizbank AS Bahrain Branch', }, - id: '5164', + _id: '5164', }, { attributes: { @@ -5327,7 +5327,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Bangladesh', tld: 'BD', }, - id: '312', + _id: '312', }, { attributes: { @@ -5340,7 +5340,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Social Islami Bank Ltd', }, - id: '6696', + _id: '6696', }, { attributes: { @@ -5353,7 +5353,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Rupali Bank', }, - id: '7590', + _id: '7590', }, { attributes: { @@ -5366,7 +5366,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Islami Bank Bangladesh Ltd', }, - id: '6413', + _id: '6413', }, { attributes: { @@ -5380,7 +5380,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Scb Bangladesh', }, - id: '5398', + _id: '5398', }, { attributes: { @@ -5394,7 +5394,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Social Islami Bank Limited', }, - id: '5622', + _id: '5622', }, { attributes: { @@ -5408,7 +5408,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Barbados', tld: 'BB', }, - id: '313', + _id: '313', }, { attributes: { @@ -5421,7 +5421,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Rbc Royal Bank', }, - id: '6462', + _id: '6462', }, { attributes: { @@ -5434,7 +5434,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'J And T Bank And Trust', }, - id: '7187', + _id: '7187', }, { attributes: { @@ -5447,7 +5447,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Amicorp Bank And Trust Ltd', }, - id: '6160', + _id: '6160', }, { attributes: { @@ -5460,7 +5460,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Rbc Royal Bank', }, - id: '7401', + _id: '7401', }, { attributes: { @@ -5473,7 +5473,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Amicorp Bank And Trust Ltd ', }, - id: '7514', + _id: '7514', }, { attributes: { @@ -5486,7 +5486,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'First Caribbean International Bank', }, - id: '6422', + _id: '6422', }, { attributes: { @@ -5499,7 +5499,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Firstcaribbean International Bank', }, - id: '7680', + _id: '7680', }, { attributes: { @@ -5513,7 +5513,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Rbc Royal Bank', }, - id: '5804', + _id: '5804', }, { attributes: { @@ -5527,7 +5527,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Belarus', tld: 'BY', }, - id: '314', + _id: '314', }, { attributes: { @@ -5540,7 +5540,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank Belveb OJSC', }, - id: '6297', + _id: '6297', }, { attributes: { @@ -5553,7 +5553,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Belarusky Narodny Bank', }, - id: '7521', + _id: '7521', }, { attributes: { @@ -5566,7 +5566,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Belvnesheconombank', }, - id: '6673', + _id: '6673', }, { attributes: { @@ -5580,7 +5580,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Belgium', tld: 'BE', }, - id: '315', + _id: '315', }, { attributes: { @@ -5593,7 +5593,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'ING Belgium NV/Sa', }, - id: '7167', + _id: '7167', }, { attributes: { @@ -5606,7 +5606,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Euroclear Bank', }, - id: '7424', + _id: '7424', }, { attributes: { @@ -5619,7 +5619,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'ING Belgium S A', }, - id: '6687', + _id: '6687', }, { attributes: { @@ -5632,7 +5632,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Credit To Euroclear Bank SA', }, - id: '6035', + _id: '6035', }, { attributes: { @@ -5645,7 +5645,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'JPMorgan International Bank', }, - id: '7511', + _id: '7511', }, { attributes: { @@ -5658,7 +5658,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'JPMorgan Chase Bank National', }, - id: '7330', + _id: '7330', }, { attributes: { @@ -5671,7 +5671,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Euroclear Bank SA', }, - id: '7690', + _id: '7690', }, { attributes: { @@ -5679,7 +5679,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken labels: ['Entity'], name: 'Commerzbank AG', }, - id: '6933', + _id: '6933', }, { attributes: { @@ -5692,7 +5692,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Jpm International Bank', }, - id: '7324', + _id: '7324', }, { attributes: { @@ -5705,7 +5705,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'JPMorgan International Bank- Brussels', }, - id: '7486', + _id: '7486', }, { attributes: { @@ -5718,7 +5718,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'P Morgan Chase Bank National', }, - id: '7329', + _id: '7329', }, { attributes: { @@ -5731,7 +5731,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Deutsche Bank AG', }, - id: '6348', + _id: '6348', }, { attributes: { @@ -5744,7 +5744,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of New York Mellon', }, - id: '7584', + _id: '7584', }, { attributes: { @@ -5758,7 +5758,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cbc Banque S.A.', }, - id: '5531', + _id: '5531', }, { attributes: { @@ -5772,7 +5772,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Jpm International Bank', }, - id: '5780', + _id: '5780', }, { attributes: { @@ -5786,7 +5786,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'ING Belgium SA', }, - id: '6023', + _id: '6023', }, { attributes: { @@ -5800,7 +5800,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Euroclear Bank SA', }, - id: '5289', + _id: '5289', }, { attributes: { @@ -5814,7 +5814,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Kbc Bank NV', }, - id: '5287', + _id: '5287', }, { attributes: { @@ -5828,7 +5828,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'ING Belgium Sa/Nv', }, - id: '5452', + _id: '5452', }, { attributes: { @@ -5842,7 +5842,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Euroclear Bank', }, - id: '5720', + _id: '5720', }, { attributes: { @@ -5856,7 +5856,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'ING Belgium S A', }, - id: '5079', + _id: '5079', }, { attributes: { @@ -5870,7 +5870,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Commerzbank AG', }, - id: '5924', + _id: '5924', }, { attributes: { @@ -5884,7 +5884,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'ING Belgium Sa/Nv', }, - id: '5566', + _id: '5566', }, { attributes: { @@ -5898,7 +5898,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Euroclear Bank SA', }, - id: '5884', + _id: '5884', }, { attributes: { @@ -5912,7 +5912,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of New York Mellon', }, - id: '5800', + _id: '5800', }, { attributes: { @@ -5926,7 +5926,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'JPMorgan International Bank- Brussels', }, - id: '5136', + _id: '5136', }, { attributes: { @@ -5940,7 +5940,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Belize', tld: 'BZ', }, - id: '316', + _id: '316', }, { attributes: { @@ -5953,7 +5953,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Belize Bank International Limited', }, - id: '6763', + _id: '6763', }, { attributes: { @@ -5967,7 +5967,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Atlantic Bank Ltd', }, - id: '5384', + _id: '5384', }, { attributes: { @@ -5981,7 +5981,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Benin', tld: 'BJ', }, - id: '317', + _id: '317', }, { attributes: { @@ -5994,7 +5994,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Diamond Bank Benin SA', }, - id: '7705', + _id: '7705', }, { attributes: { @@ -6008,7 +6008,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Bermuda', tld: 'BM', }, - id: '318', + _id: '318', }, { attributes: { @@ -6021,7 +6021,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Bermuda', }, - id: '7166', + _id: '7166', }, { attributes: { @@ -6034,7 +6034,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'HSBC Bank Bermuda', }, - id: '6224', + _id: '6224', }, { attributes: { @@ -6047,7 +6047,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'HSBC Bank Bermuda Limited', }, - id: '7340', + _id: '7340', }, { attributes: { @@ -6060,7 +6060,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of N.T. Butterfield And Sons Ltd', }, - id: '7649', + _id: '7649', }, { attributes: { @@ -6074,7 +6074,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of N.T. Butterfield', }, - id: '6008', + _id: '6008', }, { attributes: { @@ -6088,7 +6088,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of N.T. Butterfield And Sons Ltd', }, - id: '5799', + _id: '5799', }, { attributes: { @@ -6102,7 +6102,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Brazil', tld: 'BR', }, - id: '324', + _id: '324', }, { attributes: { @@ -6116,7 +6116,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Santander Sa', }, - id: '5122', + _id: '5122', }, { attributes: { @@ -6130,7 +6130,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Itau Ho', }, - id: '5124', + _id: '5124', }, { attributes: { @@ -6144,7 +6144,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Bva S A', }, - id: '5692', + _id: '5692', }, { attributes: { @@ -6158,7 +6158,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Bulgaria', tld: 'BG', }, - id: '327', + _id: '327', }, { attributes: { @@ -6171,7 +6171,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Encouragement Bank Ad', }, - id: '6447', + _id: '6447', }, { attributes: { @@ -6184,7 +6184,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Piraeus Bank', }, - id: '7229', + _id: '7229', }, { attributes: { @@ -6197,7 +6197,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Investbank Plc', }, - id: '7334', + _id: '7334', }, { attributes: { @@ -6211,7 +6211,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Piraeus Bank', }, - id: '5883', + _id: '5883', }, { attributes: { @@ -6225,7 +6225,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Piraeus Bank Bulgaria Ad', }, - id: '5639', + _id: '5639', }, { attributes: { @@ -6239,7 +6239,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Piraeus Bank', }, - id: '5714', + _id: '5714', }, { attributes: { @@ -6253,7 +6253,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Cambodia', tld: 'KH', }, - id: '330', + _id: '330', }, { attributes: { @@ -6266,7 +6266,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Canadia Bank Ltd.', }, - id: '6478', + _id: '6478', }, { attributes: { @@ -6279,7 +6279,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Maybank', }, - id: '6805', + _id: '6805', }, { attributes: { @@ -6292,7 +6292,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Anz Royal Bank', }, - id: '7091', + _id: '7091', }, { attributes: { @@ -6306,7 +6306,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'CIMB Bank Plc', }, - id: '5071', + _id: '5071', }, { attributes: { @@ -6320,7 +6320,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'First Commercial Bank Phnom Penh Br', }, - id: '5961', + _id: '5961', }, { attributes: { @@ -6334,7 +6334,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Canada', tld: 'CA', }, - id: '332', + _id: '332', }, { attributes: { @@ -6347,7 +6347,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Rbc', }, - id: '7115', + _id: '7115', }, { attributes: { @@ -6360,7 +6360,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Royal Bank of Canada', }, - id: '6119', + _id: '6119', }, { attributes: { @@ -6373,7 +6373,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'The Toronto Dominion Bank', }, - id: '6587', + _id: '6587', }, { attributes: { @@ -6386,7 +6386,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Credit Union Central', }, - id: '6132', + _id: '6132', }, { attributes: { @@ -6399,7 +6399,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bmo Harris Na Mt Unit Bk of Mtl', }, - id: '7734', + _id: '7734', }, { attributes: { @@ -6412,7 +6412,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Royal Bank of Canada', }, - id: '6324', + _id: '6324', }, { attributes: { @@ -6425,7 +6425,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Royal Bank of Canada', }, - id: '7369', + _id: '7369', }, { attributes: { @@ -6438,7 +6438,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Canadian Imperial Bank of Commerce', }, - id: '7201', + _id: '7201', }, { attributes: { @@ -6451,7 +6451,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Montreal', }, - id: '6275', + _id: '6275', }, { attributes: { @@ -6464,7 +6464,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'National Bank of Canada Nbc', }, - id: '6520', + _id: '6520', }, { attributes: { @@ -6477,7 +6477,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Toronto Dominion Bank', }, - id: '7116', + _id: '7116', }, { attributes: { @@ -6490,7 +6490,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'TD Bank', }, - id: '6739', + _id: '6739', }, { attributes: { @@ -6503,7 +6503,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Montreal, Canada', }, - id: '6420', + _id: '6420', }, { attributes: { @@ -6516,7 +6516,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cibc', }, - id: '6041', + _id: '6041', }, { attributes: { @@ -6529,7 +6529,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'UBS Bank', }, - id: '7523', + _id: '7523', }, { attributes: { @@ -6542,7 +6542,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Jameson Bank', }, - id: '6419', + _id: '6419', }, { attributes: { @@ -6555,7 +6555,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'The Royal Bank of Canada', }, - id: '6895', + _id: '6895', }, { attributes: { @@ -6568,7 +6568,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Travelex Currency Services ', }, - id: '7259', + _id: '7259', }, { attributes: { @@ -6581,7 +6581,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Montreal', }, - id: '7541', + _id: '7541', }, { attributes: { @@ -6595,7 +6595,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Amani Makungu At Bank of Montreal', }, - id: '5263', + _id: '5263', }, { attributes: { @@ -6609,7 +6609,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'HSBC Bank Canada', }, - id: '5754', + _id: '5754', }, { attributes: { @@ -6623,7 +6623,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Caisse Centrale Desjardins', }, - id: '5183', + _id: '5183', }, { attributes: { @@ -6637,7 +6637,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Montreal', }, - id: '5867', + _id: '5867', }, { attributes: { @@ -6651,7 +6651,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Canadian Imperial Bank of Commerce', }, - id: '5151', + _id: '5151', }, { attributes: { @@ -6665,7 +6665,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Montreal', }, - id: '5711', + _id: '5711', }, { attributes: { @@ -6679,7 +6679,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Central 1 Credit Union', }, - id: '5542', + _id: '5542', }, { attributes: { @@ -6693,7 +6693,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Travelex Currency Services Inc', }, - id: '5520', + _id: '5520', }, { attributes: { @@ -6707,7 +6707,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Royal Bank of Canada Ci Ltd', }, - id: '5809', + _id: '5809', }, { attributes: { @@ -6720,7 +6720,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Channel Islands', }, - id: '334', + _id: '334', }, { attributes: { @@ -6733,7 +6733,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Caledonian Bank Ltd', }, - id: '6899', + _id: '6899', }, { attributes: { @@ -6746,7 +6746,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Butterfield International', }, - id: '6762', + _id: '6762', }, { attributes: { @@ -6759,7 +6759,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Caledonian Bank Ltd', }, - id: '7107', + _id: '7107', }, { attributes: { @@ -6772,7 +6772,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Butterfield International', }, - id: '7576', + _id: '7576', }, { attributes: { @@ -6785,7 +6785,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Venezolano De Credito Cayman Branch Banco Universal', }, - id: '6429', + _id: '6429', }, { attributes: { @@ -6798,7 +6798,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DMS Bank And Trust Ltd', }, - id: '6576', + _id: '6576', }, { attributes: { @@ -6811,7 +6811,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'First Caribbean International Bank', }, - id: '6800', + _id: '6800', }, { attributes: { @@ -6824,7 +6824,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cainvest International Bank Ltd', }, - id: '6704', + _id: '6704', }, { attributes: { @@ -6837,7 +6837,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DMS Bank & Trust Ltd', }, - id: '7102', + _id: '7102', }, { attributes: { @@ -6850,7 +6850,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Maples And Calder', }, - id: '6298', + _id: '6298', }, { attributes: { @@ -6863,7 +6863,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Caledonian Bank Limited', }, - id: '6222', + _id: '6222', }, { attributes: { @@ -6876,7 +6876,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Butterfield', }, - id: '6761', + _id: '6761', }, { attributes: { @@ -6889,7 +6889,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Santander', }, - id: '7105', + _id: '7105', }, { attributes: { @@ -6902,7 +6902,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Caledonian Bank Limited', }, - id: '7097', + _id: '7097', }, { attributes: { @@ -6915,7 +6915,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Fidelity Bank', }, - id: '6619', + _id: '6619', }, { attributes: { @@ -6928,7 +6928,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DMS Bank & Trust Ltd', }, - id: '6828', + _id: '6828', }, { attributes: { @@ -6941,7 +6941,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Royal Bank of Canada', }, - id: '6617', + _id: '6617', }, { attributes: { @@ -6955,7 +6955,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DMS Bank & Trust Ltd. ', }, - id: '5306', + _id: '5306', }, { attributes: { @@ -6969,7 +6969,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Butterfield International', }, - id: '5339', + _id: '5339', }, { attributes: { @@ -6983,7 +6983,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Maples And Calder', }, - id: '5081', + _id: '5081', }, { attributes: { @@ -6997,7 +6997,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DMS Bank & Trust Ltd. ', }, - id: '5446', + _id: '5446', }, { attributes: { @@ -7011,7 +7011,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Caledonian Bank Ltd', }, - id: '5548', + _id: '5548', }, { attributes: { @@ -7025,7 +7025,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Maplesfs Limited', }, - id: '5155', + _id: '5155', }, { attributes: { @@ -7039,7 +7039,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Caledonian Bank Limited', }, - id: '5178', + _id: '5178', }, { attributes: { @@ -7053,7 +7053,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DMS Bank & Trust Ltd', }, - id: '5137', + _id: '5137', }, { attributes: { @@ -7067,7 +7067,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Butterfield International', }, - id: '5319', + _id: '5319', }, { attributes: { @@ -7081,7 +7081,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Scotiabank And Trust Cayman Ltd', }, - id: '5808', + _id: '5808', }, { attributes: { @@ -7095,7 +7095,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Atlantic Security Bank', }, - id: '5325', + _id: '5325', }, { attributes: { @@ -7109,7 +7109,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Santander', }, - id: '5574', + _id: '5574', }, { attributes: { @@ -7123,7 +7123,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'China', tld: 'CN', }, - id: '338', + _id: '338', }, { attributes: { @@ -7136,7 +7136,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Minsheng Banking Corporation Ltd', }, - id: '6784', + _id: '6784', }, { attributes: { @@ -7149,7 +7149,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Development Bank', }, - id: '7513', + _id: '7513', }, { attributes: { @@ -7162,7 +7162,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hang Seng Bank', }, - id: '7351', + _id: '7351', }, { attributes: { @@ -7175,7 +7175,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Sichuan Branch', }, - id: '7587', + _id: '7587', }, { attributes: { @@ -7188,7 +7188,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: "Industrial And Comm'L Bank of China", }, - id: '6069', + _id: '6069', }, { attributes: { @@ -7201,7 +7201,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial Commercial Bank of China', }, - id: '7277', + _id: '7277', }, { attributes: { @@ -7214,7 +7214,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China, Beijing Branch', }, - id: '6637', + _id: '6637', }, { attributes: { @@ -7227,7 +7227,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of East Asia', }, - id: '6667', + _id: '6667', }, { attributes: { @@ -7240,7 +7240,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Agricultural Bank of China Liaoning Branch', }, - id: '6593', + _id: '6593', }, { attributes: { @@ -7253,7 +7253,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Hebei Tangshan Branch', }, - id: '7543', + _id: '7543', }, { attributes: { @@ -7266,7 +7266,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Agricultural Development Bank of China', }, - id: '6833', + _id: '6833', }, { attributes: { @@ -7279,7 +7279,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Guangfa Bank Co., Ltd', }, - id: '7158', + _id: '7158', }, { attributes: { @@ -7292,7 +7292,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Guangdong Branch', }, - id: '7183', + _id: '7183', }, { attributes: { @@ -7305,7 +7305,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank Corp', }, - id: '6718', + _id: '6718', }, { attributes: { @@ -7318,7 +7318,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Hangzhou Co Ltd', }, - id: '6613', + _id: '6613', }, { attributes: { @@ -7331,7 +7331,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Foshan Shunde Rural Commercial Bk Co Ltd', }, - id: '6512', + _id: '6512', }, { attributes: { @@ -7344,7 +7344,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank', }, - id: '6300', + _id: '6300', }, { attributes: { @@ -7357,7 +7357,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of East Asia China Limited', }, - id: '6567', + _id: '6567', }, { attributes: { @@ -7370,7 +7370,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Guangdong Development Bank', }, - id: '6560', + _id: '6560', }, { attributes: { @@ -7383,7 +7383,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank', }, - id: '6552', + _id: '6552', }, { attributes: { @@ -7396,7 +7396,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Minsheng Banking Corp', }, - id: '6317', + _id: '6317', }, { attributes: { @@ -7409,7 +7409,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ping An Bank Co', }, - id: '6284', + _id: '6284', }, { attributes: { @@ -7422,7 +7422,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Ltd', }, - id: '6877', + _id: '6877', }, { attributes: { @@ -7435,7 +7435,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Shanghai ', }, - id: '6982', + _id: '6982', }, { attributes: { @@ -7448,7 +7448,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Rizhao Co', }, - id: '6318', + _id: '6318', }, { attributes: { @@ -7461,7 +7461,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Beijingco. Ltd.', }, - id: '6582', + _id: '6582', }, { attributes: { @@ -7474,7 +7474,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Communications- Offshore Banking Unit', }, - id: '7492', + _id: '7492', }, { attributes: { @@ -7487,7 +7487,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of East Asia China Limited', }, - id: '6286', + _id: '6286', }, { attributes: { @@ -7500,7 +7500,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank', }, - id: '6737', + _id: '6737', }, { attributes: { @@ -7513,7 +7513,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank', }, - id: '6580', + _id: '6580', }, { attributes: { @@ -7526,7 +7526,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China', }, - id: '7142', + _id: '7142', }, { attributes: { @@ -7539,7 +7539,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank', }, - id: '6545', + _id: '6545', }, { attributes: { @@ -7552,7 +7552,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: "Industrial And Comm'L Bank of China", }, - id: '6861', + _id: '6861', }, { attributes: { @@ -7565,7 +7565,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hua Xia Bank Beijing', }, - id: '7339', + _id: '7339', }, { attributes: { @@ -7578,7 +7578,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China', }, - id: '6614', + _id: '6614', }, { attributes: { @@ -7591,7 +7591,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Shanghai Pudong Development Bank', }, - id: '6197', + _id: '6197', }, { attributes: { @@ -7604,7 +7604,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Minsheng Banking Corporation', }, - id: '7752', + _id: '7752', }, { attributes: { @@ -7617,7 +7617,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Jiangsu Co Lt', }, - id: '6743', + _id: '6743', }, { attributes: { @@ -7630,7 +7630,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ping An Bank Co Ltd', }, - id: '6974', + _id: '6974', }, { attributes: { @@ -7643,7 +7643,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank Corporation', }, - id: '6062', + _id: '6062', }, { attributes: { @@ -7656,7 +7656,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Merchants Bank', }, - id: '7000', + _id: '7000', }, { attributes: { @@ -7669,7 +7669,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Shanghai ', }, - id: '7285', + _id: '7285', }, { attributes: { @@ -7682,7 +7682,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'First Sino Bank', }, - id: '7758', + _id: '7758', }, { attributes: { @@ -7695,7 +7695,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hang Sheng Bank', }, - id: '7352', + _id: '7352', }, { attributes: { @@ -7708,7 +7708,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Agricultural Bank of China', }, - id: '6071', + _id: '6071', }, { attributes: { @@ -7721,7 +7721,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Communications', }, - id: '6998', + _id: '6998', }, { attributes: { @@ -7734,7 +7734,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Nanyang Commercial Bank Ltd', }, - id: '6107', + _id: '6107', }, { attributes: { @@ -7747,7 +7747,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Shanghai Pudong Development Bank', }, - id: '7185', + _id: '7185', }, { attributes: { @@ -7760,7 +7760,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Guangfa Bank Co Ltd', }, - id: '6757', + _id: '6757', }, { attributes: { @@ -7773,7 +7773,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Limited', }, - id: '6876', + _id: '6876', }, { attributes: { @@ -7786,7 +7786,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China, Head Office', }, - id: '6636', + _id: '6636', }, { attributes: { @@ -7799,7 +7799,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Jiangsu Co Ltd', }, - id: '6322', + _id: '6322', }, { attributes: { @@ -7812,7 +7812,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China, Sichuan', }, - id: '6634', + _id: '6634', }, { attributes: { @@ -7825,7 +7825,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Citic Bank', }, - id: '6525', + _id: '6525', }, { attributes: { @@ -7838,7 +7838,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Limited', }, - id: '6557', + _id: '6557', }, { attributes: { @@ -7851,7 +7851,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China', }, - id: '6565', + _id: '6565', }, { attributes: { @@ -7864,7 +7864,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank Corporation', }, - id: '6126', + _id: '6126', }, { attributes: { @@ -7877,7 +7877,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hong Kong And Shanghai Banking Corp', }, - id: '6736', + _id: '6736', }, { attributes: { @@ -7890,7 +7890,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial Bank Co., Ltd', }, - id: '6460', + _id: '6460', }, { attributes: { @@ -7903,7 +7903,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China', }, - id: '6448', + _id: '6448', }, { attributes: { @@ -7916,7 +7916,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hong Kong Shanghai Banking Corporation Ltd', }, - id: '6786', + _id: '6786', }, { attributes: { @@ -7929,7 +7929,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Kunshan Rural Commercial Bank', }, - id: '6211', + _id: '6211', }, { attributes: { @@ -7942,7 +7942,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China', }, - id: '6813', + _id: '6813', }, { attributes: { @@ -7955,7 +7955,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank', }, - id: '6756', + _id: '6756', }, { attributes: { @@ -7968,7 +7968,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Ningbo Co., Ltd.', }, - id: '6068', + _id: '6068', }, { attributes: { @@ -7981,7 +7981,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Agricultural Bank of China', }, - id: '6469', + _id: '6469', }, { attributes: { @@ -7994,7 +7994,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Communications Co Ltd', }, - id: '7265', + _id: '7265', }, { attributes: { @@ -8007,7 +8007,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank Corporation', }, - id: '6738', + _id: '6738', }, { attributes: { @@ -8020,7 +8020,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial Commercial Bk of China', }, - id: '6256', + _id: '6256', }, { attributes: { @@ -8033,7 +8033,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Shanghai Pudong Development Bank', }, - id: '6242', + _id: '6242', }, { attributes: { @@ -8046,7 +8046,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Merchants Bank H O', }, - id: '7657', + _id: '7657', }, { attributes: { @@ -8059,7 +8059,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DBS Bank', }, - id: '6964', + _id: '6964', }, { attributes: { @@ -8072,7 +8072,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China, Hebei Branch', }, - id: '7586', + _id: '7586', }, { attributes: { @@ -8085,7 +8085,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China', }, - id: '6394', + _id: '6394', }, { attributes: { @@ -8098,7 +8098,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank Corporation', }, - id: '6320', + _id: '6320', }, { attributes: { @@ -8111,7 +8111,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial & Commercial Bk of China', }, - id: '6834', + _id: '6834', }, { attributes: { @@ -8124,7 +8124,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial & Commercial Bank', }, - id: '6862', + _id: '6862', }, { attributes: { @@ -8137,7 +8137,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank Corporation', }, - id: '7507', + _id: '7507', }, { attributes: { @@ -8150,7 +8150,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China', }, - id: '6771', + _id: '6771', }, { attributes: { @@ -8163,7 +8163,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Chinacitic Bank', }, - id: '6579', + _id: '6579', }, { attributes: { @@ -8176,7 +8176,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DBS Bank', }, - id: '6566', + _id: '6566', }, { attributes: { @@ -8189,7 +8189,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Laishang Bank', }, - id: '6127', + _id: '6127', }, { attributes: { @@ -8202,7 +8202,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Merchants Bank, Offshore', }, - id: '6778', + _id: '6778', }, { attributes: { @@ -8215,7 +8215,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial And Commercial Bank of China', }, - id: '7508', + _id: '7508', }, { attributes: { @@ -8228,7 +8228,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Icbc Limited', }, - id: '6796', + _id: '6796', }, { attributes: { @@ -8241,7 +8241,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hua Xia Bank', }, - id: '6386', + _id: '6386', }, { attributes: { @@ -8254,7 +8254,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial And Commercial Bank of China', }, - id: '6730', + _id: '6730', }, { attributes: { @@ -8268,7 +8268,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank Corporation', }, - id: '5068', + _id: '5068', }, { attributes: { @@ -8282,7 +8282,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank', }, - id: '5588', + _id: '5588', }, { attributes: { @@ -8296,7 +8296,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hebei Tangshan Branch', }, - id: '5074', + _id: '5074', }, { attributes: { @@ -8310,7 +8310,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Wing Hang Bank', }, - id: '5913', + _id: '5913', }, { attributes: { @@ -8324,7 +8324,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Agricultural Bank of China', }, - id: '5181', + _id: '5181', }, { attributes: { @@ -8338,7 +8338,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial Comml Bank of China', }, - id: '5249', + _id: '5249', }, { attributes: { @@ -8352,7 +8352,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hang Seng Bank', }, - id: '5629', + _id: '5629', }, { attributes: { @@ -8366,7 +8366,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Communications Co', }, - id: '5691', + _id: '5691', }, { attributes: { @@ -8380,7 +8380,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ping An Bank', }, - id: '5787', + _id: '5787', }, { attributes: { @@ -8394,7 +8394,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Communications Co. Ltd', }, - id: '5822', + _id: '5822', }, { attributes: { @@ -8408,7 +8408,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Merchants Bank', }, - id: '5784', + _id: '5784', }, { attributes: { @@ -8422,7 +8422,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DBS Bank', }, - id: '5172', + _id: '5172', }, { attributes: { @@ -8436,7 +8436,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Communications', }, - id: '5073', + _id: '5073', }, { attributes: { @@ -8450,7 +8450,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Communications Co., Ltd. ', }, - id: '5304', + _id: '5304', }, { attributes: { @@ -8464,7 +8464,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Nanjing', }, - id: '5898', + _id: '5898', }, { attributes: { @@ -8478,7 +8478,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ping An Bank Co., Ltd.', }, - id: '5199', + _id: '5199', }, { attributes: { @@ -8492,7 +8492,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Limited', }, - id: '5421', + _id: '5421', }, { attributes: { @@ -8506,7 +8506,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Ltd', }, - id: '5654', + _id: '5654', }, { attributes: { @@ -8520,7 +8520,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ping An Bank Co Ltd', }, - id: '5944', + _id: '5944', }, { attributes: { @@ -8534,7 +8534,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Standard Chartered Bank China Ltd', }, - id: '5129', + _id: '5129', }, { attributes: { @@ -8548,7 +8548,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DBS Bank', }, - id: '5609', + _id: '5609', }, { attributes: { @@ -8562,7 +8562,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Agricultural Bank of China', }, - id: '5788', + _id: '5788', }, { attributes: { @@ -8576,7 +8576,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Merchants Bank', }, - id: '5483', + _id: '5483', }, { attributes: { @@ -8590,7 +8590,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Jiangsu Rugao Rural Commercial Bank Co Ltd', }, - id: '5725', + _id: '5725', }, { attributes: { @@ -8604,7 +8604,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial Commercial Bank of China', }, - id: '5697', + _id: '5697', }, { attributes: { @@ -8618,7 +8618,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hua Xia Bank Beijing', }, - id: '5303', + _id: '5303', }, { attributes: { @@ -8632,7 +8632,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Shanghai Pudong Development Bank Co Ltd', }, - id: '5522', + _id: '5522', }, { attributes: { @@ -8646,7 +8646,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ping An Bank Co Ltd', }, - id: '5427', + _id: '5427', }, { attributes: { @@ -8660,7 +8660,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Industrial & Commercial Bank Beijing H.O. of China', }, - id: '5156', + _id: '5156', }, { attributes: { @@ -8674,7 +8674,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China', }, - id: '5876', + _id: '5876', }, { attributes: { @@ -8688,7 +8688,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'DBS Bank', }, - id: '5328', + _id: '5328', }, { attributes: { @@ -8702,7 +8702,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China', }, - id: '5963', + _id: '5963', }, { attributes: { @@ -8716,7 +8716,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank', }, - id: '5786', + _id: '5786', }, { attributes: { @@ -8730,7 +8730,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Communications- Offshore Banking Unit', }, - id: '5839', + _id: '5839', }, { attributes: { @@ -8744,7 +8744,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Merchant Bank Co Ltd', }, - id: '5089', + _id: '5089', }, { attributes: { @@ -8758,7 +8758,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Standard Chartered Bank China Ltd', }, - id: '5115', + _id: '5115', }, { attributes: { @@ -8772,7 +8772,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Limited', }, - id: '5108', + _id: '5108', }, { attributes: { @@ -8786,7 +8786,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Agricultural Bank of China Limited', }, - id: '5812', + _id: '5812', }, { attributes: { @@ -8800,7 +8800,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Merchant Bank', }, - id: '5525', + _id: '5525', }, { attributes: { @@ -8814,7 +8814,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Shanghai', }, - id: '5237', + _id: '5237', }, { attributes: { @@ -8828,7 +8828,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Communications', }, - id: '5835', + _id: '5835', }, { attributes: { @@ -8842,7 +8842,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Shanghai Pudong Development Bank', }, - id: '5583', + _id: '5583', }, { attributes: { @@ -8856,7 +8856,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ping An Bank Co Ltd', }, - id: '5203', + _id: '5203', }, { attributes: { @@ -8870,7 +8870,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'China Construction Bank', }, - id: '5190', + _id: '5190', }, { attributes: { @@ -8884,7 +8884,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: "Industrial And Comm'L Bank of China", }, - id: '5182', + _id: '5182', }, { attributes: { @@ -8898,7 +8898,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'First Sino Bank', }, - id: '5584', + _id: '5584', }, { attributes: { @@ -8912,7 +8912,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of East Asia', }, - id: '5628', + _id: '5628', }, { attributes: { @@ -8926,7 +8926,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of China Limited China', }, - id: '5148', + _id: '5148', }, { attributes: { @@ -8939,7 +8939,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Wing Hang Bank China Ltd', }, - id: '6785', + _id: '6785', }, { attributes: { @@ -8952,7 +8952,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Nanjing', }, - id: '7504', + _id: '7504', }, { attributes: { @@ -8966,7 +8966,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Colombia', tld: 'CO', }, - id: '341', + _id: '341', }, { attributes: { @@ -8979,7 +8979,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bbva Colombia', }, - id: '6873', + _id: '6873', }, { attributes: { @@ -8993,7 +8993,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Congo', tld: 'CG', }, - id: '343', + _id: '343', }, { attributes: { @@ -9006,7 +9006,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Trust Merchant Bank Sarl', }, - id: '7051', + _id: '7051', }, { attributes: { @@ -9019,7 +9019,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: "Banque Internationale Pour L'Afrique Au Congo", }, - id: '7049', + _id: '7049', }, { attributes: { @@ -9033,7 +9033,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Congo, the Democratic Republic of the', tld: 'CD', }, - id: '344', + _id: '344', }, { attributes: { @@ -9046,7 +9046,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ecobank, Republique Democratique Du Congo', }, - id: '7050', + _id: '7050', }, { attributes: { @@ -9060,7 +9060,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Costa Rica', tld: 'CR', }, - id: '346', + _id: '346', }, { attributes: { @@ -9073,7 +9073,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Bct SA', }, - id: '7305', + _id: '7305', }, { attributes: { @@ -9087,7 +9087,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Bct SA', }, - id: '5771', + _id: '5771', }, { attributes: { @@ -9101,7 +9101,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Ivory Coast', tld: 'CI', }, - id: '347', + _id: '347', }, { attributes: { @@ -9114,7 +9114,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: "Banque Internationale Pour Le Commerce Et L'Industrie", }, - id: '7048', + _id: '7048', }, { attributes: { @@ -9127,7 +9127,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: "Banque Atlantique-Cote D'Avoir", }, - id: '6734', + _id: '6734', }, { attributes: { @@ -9141,7 +9141,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Croatia', tld: 'HR', }, - id: '348', + _id: '348', }, { attributes: { @@ -9154,7 +9154,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Erste And Steiermaerkische Bank D.D', }, - id: '6110', + _id: '6110', }, { attributes: { @@ -9167,7 +9167,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Zagrebacka Banka Dd', }, - id: '6111', + _id: '6111', }, { attributes: { @@ -9181,7 +9181,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisenbank Austria D.D. Zagreb', }, - id: '6010', + _id: '6010', }, { attributes: { @@ -9195,7 +9195,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Cyprus', tld: 'CY', }, - id: '350', + _id: '350', }, { attributes: { @@ -9208,7 +9208,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Public Co Ltd', }, - id: '7195', + _id: '7195', }, { attributes: { @@ -9221,7 +9221,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Barclays', }, - id: '6150', + _id: '6150', }, { attributes: { @@ -9234,7 +9234,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hellenic Bank', }, - id: '7143', + _id: '7143', }, { attributes: { @@ -9247,7 +9247,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Popular Bank Ltd', }, - id: '7560', + _id: '7560', }, { attributes: { @@ -9260,7 +9260,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Promsvyazbank ', }, - id: '6880', + _id: '6880', }, { attributes: { @@ -9273,7 +9273,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Russian Commercial Bank Cyprus', }, - id: '7722', + _id: '7722', }, { attributes: { @@ -9286,7 +9286,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Popular Bank Limited', }, - id: '7045', + _id: '7045', }, { attributes: { @@ -9299,7 +9299,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hellenic Bank Public Company Ltd', }, - id: '7765', + _id: '7765', }, { attributes: { @@ -9312,7 +9312,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Nkb Investments Ltd, Limassol', }, - id: '7687', + _id: '7687', }, { attributes: { @@ -9325,7 +9325,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hellenic Bank Public Company Ltd', }, - id: '6868', + _id: '6868', }, { attributes: { @@ -9338,7 +9338,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hellenic Bank Public Company', }, - id: '7007', + _id: '7007', }, { attributes: { @@ -9351,7 +9351,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Eurobank EFG Cyprus Ltd', }, - id: '7140', + _id: '7140', }, { attributes: { @@ -9364,7 +9364,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Piraeus Bank Cyprus', }, - id: '7627', + _id: '7627', }, { attributes: { @@ -9377,7 +9377,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Eurobank Cyprus Ltd', }, - id: '7234', + _id: '7234', }, { attributes: { @@ -9390,7 +9390,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Privat Bank', }, - id: '7193', + _id: '7193', }, { attributes: { @@ -9403,7 +9403,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Russian Commercial Bank', }, - id: '6249', + _id: '6249', }, { attributes: { @@ -9416,7 +9416,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Fbme Bank Ltd', }, - id: '6138', + _id: '6138', }, { attributes: { @@ -9429,7 +9429,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Nkb Investments Ltd', }, - id: '7432', + _id: '7432', }, { attributes: { @@ -9442,7 +9442,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ojsc Promsvyazbank', }, - id: '7395', + _id: '7395', }, { attributes: { @@ -9455,7 +9455,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Public Company Ltd', }, - id: '6099', + _id: '6099', }, { attributes: { @@ -9468,7 +9468,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Fbme Bank Ltd', }, - id: '7069', + _id: '7069', }, { attributes: { @@ -9481,7 +9481,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Barclays Bank', }, - id: '7226', + _id: '7226', }, { attributes: { @@ -9494,7 +9494,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Piraeus Bank Cyprus Limited', }, - id: '6698', + _id: '6698', }, { attributes: { @@ -9507,7 +9507,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Promsvyazbank', }, - id: '6255', + _id: '6255', }, { attributes: { @@ -9520,7 +9520,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'RCB Bank Ltd', }, - id: '7555', + _id: '7555', }, { attributes: { @@ -9533,7 +9533,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus', }, - id: '7491', + _id: '7491', }, { attributes: { @@ -9546,7 +9546,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Marfin Popular Bank Pcl', }, - id: '7714', + _id: '7714', }, { attributes: { @@ -9559,7 +9559,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Russian Commercial Bank', }, - id: '7447', + _id: '7447', }, { attributes: { @@ -9572,7 +9572,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Marfin Popular Bank', }, - id: '6299', + _id: '6299', }, { attributes: { @@ -9585,7 +9585,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Development Bank Public', }, - id: '7266', + _id: '7266', }, { attributes: { @@ -9598,7 +9598,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Eurobank EFG Cyprus Ltd', }, - id: '6788', + _id: '6788', }, { attributes: { @@ -9612,7 +9612,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Societe Generale Bank Cyprus Ltd', }, - id: '5069', + _id: '5069', }, { attributes: { @@ -9626,7 +9626,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hellenic Bank Ltd', }, - id: '5458', + _id: '5458', }, { attributes: { @@ -9640,7 +9640,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Russian Commercial Bank Cyprus', }, - id: '5990', + _id: '5990', }, { attributes: { @@ -9654,7 +9654,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Eurobank Cyprus Ltd', }, - id: '5597', + _id: '5597', }, { attributes: { @@ -9668,7 +9668,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Barclays Bank Plc, Nicosia', }, - id: '5348', + _id: '5348', }, { attributes: { @@ -9682,7 +9682,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Barclays Bank Plc, Nicosia', }, - id: '5517', + _id: '5517', }, { attributes: { @@ -9696,7 +9696,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Marfin Popular Bank Public Co. Ltd', }, - id: '5710', + _id: '5710', }, { attributes: { @@ -9710,7 +9710,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Public Company Ltd', }, - id: '5758', + _id: '5758', }, { attributes: { @@ -9724,7 +9724,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Barclays Bank Plc', }, - id: '5355', + _id: '5355', }, { attributes: { @@ -9738,7 +9738,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Public Company Ltd.', }, - id: '5105', + _id: '5105', }, { attributes: { @@ -9752,7 +9752,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Piraeus Bank Cyprus Ltd', }, - id: '5283', + _id: '5283', }, { attributes: { @@ -9766,7 +9766,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Pcl', }, - id: '6001', + _id: '6001', }, { attributes: { @@ -9780,7 +9780,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Usb Bank P.L.C.', }, - id: '5580', + _id: '5580', }, { attributes: { @@ -9794,7 +9794,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hellenic Bank', }, - id: '5992', + _id: '5992', }, { attributes: { @@ -9808,7 +9808,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Popular Bank Public Co Ltd', }, - id: '5670', + _id: '5670', }, { attributes: { @@ -9822,7 +9822,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Popular Bank Ltd', }, - id: '5935', + _id: '5935', }, { attributes: { @@ -9836,7 +9836,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Marfin Popular Bank', }, - id: '5487', + _id: '5487', }, { attributes: { @@ -9850,7 +9850,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Marfin Popular Bank Public Co Ltd', }, - id: '5641', + _id: '5641', }, { attributes: { @@ -9864,7 +9864,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Public', }, - id: '5991', + _id: '5991', }, { attributes: { @@ -9878,7 +9878,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hellenic Bank Ltd', }, - id: '5752', + _id: '5752', }, { attributes: { @@ -9892,7 +9892,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Public Company Limited', }, - id: '5565', + _id: '5565', }, { attributes: { @@ -9906,7 +9906,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Barclays Bank Plc Wealth', }, - id: '5648', + _id: '5648', }, { attributes: { @@ -9920,7 +9920,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Development Bank Public Company Ltd', }, - id: '5803', + _id: '5803', }, { attributes: { @@ -9934,7 +9934,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Eurobank Cyprus Ltd', }, - id: '5473', + _id: '5473', }, { attributes: { @@ -9948,7 +9948,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hellenic Bank', }, - id: '5149', + _id: '5149', }, { attributes: { @@ -9962,7 +9962,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Plc Ex Cyprus', }, - id: '5979', + _id: '5979', }, { attributes: { @@ -9976,7 +9976,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Piraeus Bank Cyprus Ltd', }, - id: '5652', + _id: '5652', }, { attributes: { @@ -9990,7 +9990,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Popular Bank Public Co Ltd', }, - id: '5593', + _id: '5593', }, { attributes: { @@ -10004,7 +10004,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Marfin Popular Bank Public Co Ltd', }, - id: '5103', + _id: '5103', }, { attributes: { @@ -10018,7 +10018,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Co Operative Central Bank', }, - id: '5282', + _id: '5282', }, { attributes: { @@ -10031,7 +10031,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Alpha Bank Cyprus Ltd', }, - id: '7094', + _id: '7094', }, { attributes: { @@ -10044,7 +10044,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Public Company Limited', }, - id: '7202', + _id: '7202', }, { attributes: { @@ -10057,7 +10057,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'RCB Bank Ltd', }, - id: '6446', + _id: '6446', }, { attributes: { @@ -10070,7 +10070,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Hellenic Bank Ltd', }, - id: '7194', + _id: '7194', }, { attributes: { @@ -10083,7 +10083,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Promsvyazbank', }, - id: '6994', + _id: '6994', }, { attributes: { @@ -10096,7 +10096,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Development Bank', }, - id: '6901', + _id: '6901', }, { attributes: { @@ -10109,7 +10109,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Popular Bank', }, - id: '7789', + _id: '7789', }, { attributes: { @@ -10122,7 +10122,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Barclays Bank Plc Cyprus Ltd.', }, - id: '6302', + _id: '6302', }, { attributes: { @@ -10135,7 +10135,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Popular Bank Public Co Ltd', }, - id: '7660', + _id: '7660', }, { attributes: { @@ -10148,7 +10148,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Marfin Popular Bank Public Co. Ltd.', }, - id: '7286', + _id: '7286', }, { attributes: { @@ -10161,7 +10161,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Marfin Popular Bank', }, - id: '7198', + _id: '7198', }, { attributes: { @@ -10174,7 +10174,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Byblos Bank S.A.L.', }, - id: '7497', + _id: '7497', }, { attributes: { @@ -10187,7 +10187,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Barclays Bank Plc', }, - id: '6277', + _id: '6277', }, { attributes: { @@ -10200,7 +10200,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Russian Commercial Bank', }, - id: '6749', + _id: '6749', }, { attributes: { @@ -10213,7 +10213,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Barclays', }, - id: '7208', + _id: '7208', }, { attributes: { @@ -10226,7 +10226,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ojsc Promsvyazbank, Cyprus Branch', }, - id: '6499', + _id: '6499', }, { attributes: { @@ -10239,7 +10239,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Cyprus Development Bank', }, - id: '6903', + _id: '6903', }, { attributes: { @@ -10252,7 +10252,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Public Company', }, - id: '6820', + _id: '6820', }, { attributes: { @@ -10265,7 +10265,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Usb Bank Plc', }, - id: '7182', + _id: '7182', }, { attributes: { @@ -10278,7 +10278,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bank of Cyprus Public Company Ltd', }, - id: '7686', + _id: '7686', }, { attributes: { @@ -10292,7 +10292,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Czech Republic', tld: 'CZ', }, - id: '352', + _id: '352', }, { attributes: { @@ -10305,7 +10305,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Deutsche Bank AG', }, - id: '6061', + _id: '6061', }, { attributes: { @@ -10318,7 +10318,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Deutsche Bank AG', }, - id: '5059', + _id: '5059', }, { attributes: { @@ -10331,7 +10331,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Lbbw Bank Cz A.S.', }, - id: '7136', + _id: '7136', }, { attributes: { @@ -10344,7 +10344,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ceska Sporitelna A.S', }, - id: '7457', + _id: '7457', }, { attributes: { @@ -10357,7 +10357,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisenbank A.S.', }, - id: '6850', + _id: '6850', }, { attributes: { @@ -10370,7 +10370,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ceska Sportelna A.S', }, - id: '6510', + _id: '6510', }, { attributes: { @@ -10383,7 +10383,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'PPF Banka A.S.', }, - id: '7189', + _id: '7189', }, { attributes: { @@ -10396,7 +10396,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ceska Sporitelna A S', }, - id: '7489', + _id: '7489', }, { attributes: { @@ -10409,7 +10409,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'PPF Banka A S', }, - id: '7144', + _id: '7144', }, { attributes: { @@ -10422,7 +10422,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'UniCredit Bank Czech Republic, A.S.', }, - id: '7372', + _id: '7372', }, { attributes: { @@ -10435,7 +10435,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ceskoslovenska Obchodni Banka, A.S.', }, - id: '7733', + _id: '7733', }, { attributes: { @@ -10448,7 +10448,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Raiffeisenbank A.S.', }, - id: '6575', + _id: '6575', }, { attributes: { @@ -10462,7 +10462,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Lbbw Bank Cz A.S.', }, - id: '5412', + _id: '5412', }, { attributes: { @@ -10476,7 +10476,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Lbbw Bank Cz A.S. ', }, - id: '5228', + _id: '5228', }, { attributes: { @@ -10490,7 +10490,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ceskoslovenska Obchodni Banka A S', }, - id: '5569', + _id: '5569', }, { attributes: { @@ -10504,7 +10504,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ceskoslovenska Obchodni Banka AS', }, - id: '5276', + _id: '5276', }, { attributes: { @@ -10518,7 +10518,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ceska Sportelna A.S.', }, - id: '5248', + _id: '5248', }, { attributes: { @@ -10532,7 +10532,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ceskoslovenska Obchodni Banka A.S. ', }, - id: '5683', + _id: '5683', }, { attributes: { @@ -10546,7 +10546,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'PPF Banka A.S. ', }, - id: '5238', + _id: '5238', }, { attributes: { @@ -10560,7 +10560,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Ceska Sporitelna A S', }, - id: '5816', + _id: '5816', }, { attributes: { @@ -10574,7 +10574,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Denmark', tld: 'DK', }, - id: '353', + _id: '353', }, { attributes: { @@ -10587,7 +10587,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Arbejdernes Landsbank A/S', }, - id: '6439', + _id: '6439', }, { attributes: { @@ -10600,7 +10600,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Danske Bank A S', }, - id: '7066', + _id: '7066', }, { attributes: { @@ -10613,7 +10613,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Saxo Bank AS', }, - id: '7230', + _id: '7230', }, { attributes: { @@ -10626,7 +10626,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'A-S Jyske Bank', }, - id: '7552', + _id: '7552', }, { attributes: { @@ -10639,7 +10639,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Danske Bank A/S', }, - id: '7170', + _id: '7170', }, { attributes: { @@ -10652,7 +10652,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Lan And Spar Bank AS', }, - id: '7297', + _id: '7297', }, { attributes: { @@ -10665,7 +10665,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Nordea Bank Danmark A/S', }, - id: '7455', + _id: '7455', }, { attributes: { @@ -10679,7 +10679,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Nordea Bank Danmark A S', }, - id: '5251', + _id: '5251', }, { attributes: { @@ -10693,7 +10693,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Danske Bank A/S', }, - id: '5934', + _id: '5934', }, { attributes: { @@ -10707,7 +10707,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Nordea Bank Danmark A/S', }, - id: '5216', + _id: '5216', }, { attributes: { @@ -10721,7 +10721,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Saxo Bank', }, - id: '5351', + _id: '5351', }, { attributes: { @@ -10735,7 +10735,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Amagerbanken Aktieselskab', }, - id: '5833', + _id: '5833', }, { attributes: { @@ -10749,7 +10749,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'A-S Jyske Bank', }, - id: '5917', + _id: '5917', }, { attributes: { @@ -10763,7 +10763,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Danske Bank A/S', }, - id: '5244', + _id: '5244', }, { attributes: { @@ -10777,7 +10777,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Djibouti', tld: 'DJ', }, - id: '354', + _id: '354', }, { attributes: { @@ -10791,7 +10791,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: "Bqe Pour Le Comm Et I'Ind-Mer Rouge", }, - id: '6013', + _id: '6013', }, { attributes: { @@ -10805,7 +10805,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Ecuador', tld: 'EC', }, - id: '357', + _id: '357', }, { attributes: { @@ -10818,7 +10818,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Pichincha', }, - id: '6856', + _id: '6856', }, { attributes: { @@ -10831,7 +10831,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco De La Produccion S.A. Produbanco', }, - id: '6376', + _id: '6376', }, { attributes: { @@ -10844,7 +10844,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Bancodel Pichincha', }, - id: '6377', + _id: '6377', }, { attributes: { @@ -10857,7 +10857,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Internacionals.A.', }, - id: '6372', + _id: '6372', }, { attributes: { @@ -10870,7 +10870,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Internacional', }, - id: '6855', + _id: '6855', }, { attributes: { @@ -10883,7 +10883,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Del Pichincha', }, - id: '6282', + _id: '6282', }, { attributes: { @@ -10896,7 +10896,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco Internacional S.A.', }, - id: '6371', + _id: '6371', }, { attributes: { @@ -10909,7 +10909,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banco De La Produccion S.A.', }, - id: '6281', + _id: '6281', }, { attributes: { @@ -10923,7 +10923,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Produbanco', }, - id: '5430', + _id: '5430', }, { attributes: { @@ -10937,7 +10937,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Egypt', tld: 'EG', }, - id: '358', + _id: '358', }, { attributes: { @@ -10950,7 +10950,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'National Societe Generale Bank Sae', }, - id: '6518', + _id: '6518', }, { attributes: { @@ -10963,7 +10963,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Al Watany Bank of Egypt', }, - id: '7129', + _id: '7129', }, { attributes: { @@ -10976,7 +10976,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Al Baraka Bank Egypt', }, - id: '7738', + _id: '7738', }, { attributes: { @@ -10989,7 +10989,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Housing And Development Bank', }, - id: '7216', + _id: '7216', }, { attributes: { @@ -11002,7 +11002,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Albaraka Bank', }, - id: '7748', + _id: '7748', }, { attributes: { @@ -11015,7 +11015,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Albaraka Bank Egypt', }, - id: '7082', + _id: '7082', }, { attributes: { @@ -11028,7 +11028,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Commercial International Bank', }, - id: '7454', + _id: '7454', }, { attributes: { @@ -11042,7 +11042,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Housing And Development Bank', }, - id: '5632', + _id: '5632', }, { attributes: { @@ -11056,7 +11056,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Albaraka Bank', }, - id: '5712', + _id: '5712', }, { attributes: { @@ -11070,7 +11070,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Commercial International Bank', }, - id: '5860', + _id: '5860', }, { attributes: { @@ -11084,7 +11084,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Albaraka Bank Egypt', }, - id: '6005', + _id: '6005', }, { attributes: { @@ -11098,7 +11098,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Al Baraka Bank Egypt', }, - id: '5510', + _id: '5510', }, { attributes: { @@ -11112,7 +11112,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Housing And Development Bank', }, - id: '5519', + _id: '5519', }, { attributes: { @@ -11126,7 +11126,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Banque Du Caire', }, - id: '5076', + _id: '5076', }, { attributes: { @@ -11140,7 +11140,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'El Salvador', tld: 'SV', }, - id: '359', + _id: '359', }, { attributes: { @@ -11153,7 +11153,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'HSBC Salvadoreno SA', }, - id: '7817', + _id: '7817', }, { attributes: { @@ -11167,7 +11167,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken name: 'Estonia', tld: 'EE', }, - id: '362', + _id: '362', }, { attributes: { @@ -11180,7 +11180,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Versobank AS', }, - id: '6830', + _id: '6830', }, { attributes: { @@ -11193,7 +11193,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Eesti Kreditbank', }, - id: '6598', + _id: '6598', }, { attributes: { @@ -11206,7 +11206,7 @@ export const fincenEntityInCountryQueryResultPayload: GraphQueryResultFromBacken }, name: 'Swedbank AS', }, - id: '7472', + _id: '7472', }, ], }, @@ -11224,7 +11224,7 @@ export const fincenFilingFromBangkokBenefitsBangkokQueryResultPayload: GraphQuer Type: 'BENEFITS', }, from: '2082', - id: '31895', + _id: '31895', to: '5870', }, { @@ -11232,7 +11232,7 @@ export const fincenFilingFromBangkokBenefitsBangkokQueryResultPayload: GraphQuer Type: 'BENEFITS', }, from: '3471', - id: '33284', + _id: '33284', to: '5947', }, { @@ -11240,7 +11240,7 @@ export const fincenFilingFromBangkokBenefitsBangkokQueryResultPayload: GraphQuer Type: 'BENEFITS', }, from: '2693', - id: '32506', + _id: '32506', to: '6521', }, ], @@ -11257,7 +11257,7 @@ export const fincenFilingFromBangkokBenefitsBangkokQueryResultPayload: GraphQuer }, name: 'Bangkok Bank Ltd', }, - id: '5870', + _id: '5870', }, { attributes: { @@ -11287,7 +11287,7 @@ export const fincenFilingFromBangkokBenefitsBangkokQueryResultPayload: GraphQuer originator_iso: 'HKG', sar_id: '2953', }, - id: '2082', + _id: '2082', }, { attributes: { @@ -11301,7 +11301,7 @@ export const fincenFilingFromBangkokBenefitsBangkokQueryResultPayload: GraphQuer }, name: 'Bangkok Bank Public Company Limited', }, - id: '5947', + _id: '5947', }, { attributes: { @@ -11331,7 +11331,7 @@ export const fincenFilingFromBangkokBenefitsBangkokQueryResultPayload: GraphQuer originator_iso: 'ISR', sar_id: '3778', }, - id: '3471', + _id: '3471', }, { attributes: { @@ -11344,7 +11344,7 @@ export const fincenFilingFromBangkokBenefitsBangkokQueryResultPayload: GraphQuer }, name: 'Bangkok Bank Public Company Ltd', }, - id: '6521', + _id: '6521', }, { attributes: { @@ -11374,7 +11374,7 @@ export const fincenFilingFromBangkokBenefitsBangkokQueryResultPayload: GraphQuer originator_iso: 'HKG', sar_id: '2955', }, - id: '2693', + _id: '2693', }, ], }, @@ -11395,7 +11395,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe Type: 'COUNTRY', }, from: '6219', - id: '29655', + _id: '29655', to: '295', }, { @@ -11403,7 +11403,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe Type: 'BENEFITS', }, from: '3416', - id: '33229', + _id: '33229', to: '5068', }, ], @@ -11420,7 +11420,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe name: 'Afghanistan', tld: 'AF', }, - id: '295', + _id: '295', }, { attributes: { @@ -11433,7 +11433,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe }, name: 'Azizi Bank', }, - id: '6219', + _id: '6219', }, { attributes: { @@ -11463,7 +11463,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SGP', sar_id: '3297', }, - id: '549', + _id: '549', }, { attributes: { @@ -11493,7 +11493,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '3983', }, - id: '3416', + _id: '3416', }, { attributes: { @@ -11507,7 +11507,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe }, name: 'China Construction Bank Corporation', }, - id: '5068', + _id: '5068', }, { attributes: { @@ -11537,7 +11537,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SGP', sar_id: '3297', }, - id: '550', + _id: '550', }, { attributes: { @@ -11566,7 +11566,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '551', + _id: '551', }, { attributes: { @@ -11595,7 +11595,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '552', + _id: '552', }, { attributes: { @@ -11624,7 +11624,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '553', + _id: '553', }, { attributes: { @@ -11653,7 +11653,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '554', + _id: '554', }, { attributes: { @@ -11682,7 +11682,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '555', + _id: '555', }, { attributes: { @@ -11711,7 +11711,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '556', + _id: '556', }, { attributes: { @@ -11740,7 +11740,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '557', + _id: '557', }, { attributes: { @@ -11769,7 +11769,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '558', + _id: '558', }, { attributes: { @@ -11798,7 +11798,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '559', + _id: '559', }, { attributes: { @@ -11827,7 +11827,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '560', + _id: '560', }, { attributes: { @@ -11856,7 +11856,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '561', + _id: '561', }, { attributes: { @@ -11885,7 +11885,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '562', + _id: '562', }, { attributes: { @@ -11914,7 +11914,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '563', + _id: '563', }, { attributes: { @@ -11943,7 +11943,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '564', + _id: '564', }, { attributes: { @@ -11972,7 +11972,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '565', + _id: '565', }, { attributes: { @@ -12001,7 +12001,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '566', + _id: '566', }, { attributes: { @@ -12030,7 +12030,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '567', + _id: '567', }, { attributes: { @@ -12059,7 +12059,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '568', + _id: '568', }, { attributes: { @@ -12088,7 +12088,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '569', + _id: '569', }, { attributes: { @@ -12117,7 +12117,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '570', + _id: '570', }, { attributes: { @@ -12146,7 +12146,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '571', + _id: '571', }, { attributes: { @@ -12175,7 +12175,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '572', + _id: '572', }, { attributes: { @@ -12204,7 +12204,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '573', + _id: '573', }, { attributes: { @@ -12233,7 +12233,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '574', + _id: '574', }, { attributes: { @@ -12262,7 +12262,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '575', + _id: '575', }, { attributes: { @@ -12291,7 +12291,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '576', + _id: '576', }, { attributes: { @@ -12320,7 +12320,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '577', + _id: '577', }, { attributes: { @@ -12349,7 +12349,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '578', + _id: '578', }, { attributes: { @@ -12378,7 +12378,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '579', + _id: '579', }, { attributes: { @@ -12407,7 +12407,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '580', + _id: '580', }, { attributes: { @@ -12436,7 +12436,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '581', + _id: '581', }, { attributes: { @@ -12465,7 +12465,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '582', + _id: '582', }, { attributes: { @@ -12494,7 +12494,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '583', + _id: '583', }, { attributes: { @@ -12523,7 +12523,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '584', + _id: '584', }, { attributes: { @@ -12552,7 +12552,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '585', + _id: '585', }, { attributes: { @@ -12581,7 +12581,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '586', + _id: '586', }, { attributes: { @@ -12610,7 +12610,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '587', + _id: '587', }, { attributes: { @@ -12639,7 +12639,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '588', + _id: '588', }, { attributes: { @@ -12668,7 +12668,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '589', + _id: '589', }, { attributes: { @@ -12697,7 +12697,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '590', + _id: '590', }, { attributes: { @@ -12726,7 +12726,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '591', + _id: '591', }, { attributes: { @@ -12755,7 +12755,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '592', + _id: '592', }, { attributes: { @@ -12784,7 +12784,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '593', + _id: '593', }, { attributes: { @@ -12813,7 +12813,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '594', + _id: '594', }, { attributes: { @@ -12842,7 +12842,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '595', + _id: '595', }, { attributes: { @@ -12871,7 +12871,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '596', + _id: '596', }, { attributes: { @@ -12900,7 +12900,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '597', + _id: '597', }, { attributes: { @@ -12929,7 +12929,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '598', + _id: '598', }, { attributes: { @@ -12958,7 +12958,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '599', + _id: '599', }, { attributes: { @@ -12987,7 +12987,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '600', + _id: '600', }, { attributes: { @@ -13016,7 +13016,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '601', + _id: '601', }, { attributes: { @@ -13045,7 +13045,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '602', + _id: '602', }, { attributes: { @@ -13074,7 +13074,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '603', + _id: '603', }, { attributes: { @@ -13103,7 +13103,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '604', + _id: '604', }, { attributes: { @@ -13132,7 +13132,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '605', + _id: '605', }, { attributes: { @@ -13161,7 +13161,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '606', + _id: '606', }, { attributes: { @@ -13190,7 +13190,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '607', + _id: '607', }, { attributes: { @@ -13219,7 +13219,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '608', + _id: '608', }, { attributes: { @@ -13248,7 +13248,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '609', + _id: '609', }, { attributes: { @@ -13277,7 +13277,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '610', + _id: '610', }, { attributes: { @@ -13306,7 +13306,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '611', + _id: '611', }, { attributes: { @@ -13335,7 +13335,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '612', + _id: '612', }, { attributes: { @@ -13364,7 +13364,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '613', + _id: '613', }, { attributes: { @@ -13393,7 +13393,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '614', + _id: '614', }, { attributes: { @@ -13422,7 +13422,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '615', + _id: '615', }, { attributes: { @@ -13451,7 +13451,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '616', + _id: '616', }, { attributes: { @@ -13480,7 +13480,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '617', + _id: '617', }, { attributes: { @@ -13509,7 +13509,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '618', + _id: '618', }, { attributes: { @@ -13538,7 +13538,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '619', + _id: '619', }, { attributes: { @@ -13567,7 +13567,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '620', + _id: '620', }, { attributes: { @@ -13596,7 +13596,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '621', + _id: '621', }, { attributes: { @@ -13625,7 +13625,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '622', + _id: '622', }, { attributes: { @@ -13654,7 +13654,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '623', + _id: '623', }, { attributes: { @@ -13683,7 +13683,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '624', + _id: '624', }, { attributes: { @@ -13712,7 +13712,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '625', + _id: '625', }, { attributes: { @@ -13741,7 +13741,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '626', + _id: '626', }, { attributes: { @@ -13770,7 +13770,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '627', + _id: '627', }, { attributes: { @@ -13799,7 +13799,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '628', + _id: '628', }, { attributes: { @@ -13828,7 +13828,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '629', + _id: '629', }, { attributes: { @@ -13857,7 +13857,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '630', + _id: '630', }, { attributes: { @@ -13886,7 +13886,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '631', + _id: '631', }, { attributes: { @@ -13915,7 +13915,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '632', + _id: '632', }, { attributes: { @@ -13944,7 +13944,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '633', + _id: '633', }, { attributes: { @@ -13973,7 +13973,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '634', + _id: '634', }, { attributes: { @@ -14002,7 +14002,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '635', + _id: '635', }, { attributes: { @@ -14031,7 +14031,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '636', + _id: '636', }, { attributes: { @@ -14060,7 +14060,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '637', + _id: '637', }, { attributes: { @@ -14089,7 +14089,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '638', + _id: '638', }, { attributes: { @@ -14118,7 +14118,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '639', + _id: '639', }, { attributes: { @@ -14147,7 +14147,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '640', + _id: '640', }, { attributes: { @@ -14176,7 +14176,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '641', + _id: '641', }, { attributes: { @@ -14205,7 +14205,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '642', + _id: '642', }, { attributes: { @@ -14235,7 +14235,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '643', + _id: '643', }, { attributes: { @@ -14265,7 +14265,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '644', + _id: '644', }, { attributes: { @@ -14295,7 +14295,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2924', }, - id: '645', + _id: '645', }, { attributes: { @@ -14325,7 +14325,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '646', + _id: '646', }, { attributes: { @@ -14355,7 +14355,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '647', + _id: '647', }, { attributes: { @@ -14385,7 +14385,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '648', + _id: '648', }, { attributes: { @@ -14415,7 +14415,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '649', + _id: '649', }, { attributes: { @@ -14445,7 +14445,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GIB', sar_id: '2924', }, - id: '650', + _id: '650', }, { attributes: { @@ -14475,7 +14475,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2345', }, - id: '651', + _id: '651', }, { attributes: { @@ -14505,7 +14505,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2354', }, - id: '652', + _id: '652', }, { attributes: { @@ -14535,7 +14535,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2354', }, - id: '653', + _id: '653', }, { attributes: { @@ -14565,7 +14565,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2354', }, - id: '654', + _id: '654', }, { attributes: { @@ -14595,7 +14595,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2354', }, - id: '655', + _id: '655', }, { attributes: { @@ -14625,7 +14625,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SGP', sar_id: '2354', }, - id: '656', + _id: '656', }, { attributes: { @@ -14655,7 +14655,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AUT', sar_id: '2354', }, - id: '657', + _id: '657', }, { attributes: { @@ -14685,7 +14685,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'KAZ', sar_id: '2354', }, - id: '658', + _id: '658', }, { attributes: { @@ -14715,7 +14715,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2354', }, - id: '659', + _id: '659', }, { attributes: { @@ -14745,7 +14745,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2354', }, - id: '660', + _id: '660', }, { attributes: { @@ -14775,7 +14775,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2354', }, - id: '661', + _id: '661', }, { attributes: { @@ -14805,7 +14805,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2354', }, - id: '662', + _id: '662', }, { attributes: { @@ -14835,7 +14835,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2354', }, - id: '663', + _id: '663', }, { attributes: { @@ -14865,7 +14865,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '664', + _id: '664', }, { attributes: { @@ -14895,7 +14895,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '665', + _id: '665', }, { attributes: { @@ -14925,7 +14925,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '2778', }, - id: '666', + _id: '666', }, { attributes: { @@ -14955,7 +14955,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LBN', sar_id: '2355', }, - id: '667', + _id: '667', }, { attributes: { @@ -14985,7 +14985,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LBN', sar_id: '2355', }, - id: '668', + _id: '668', }, { attributes: { @@ -15015,7 +15015,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LBN', sar_id: '2355', }, - id: '669', + _id: '669', }, { attributes: { @@ -15045,7 +15045,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LBN', sar_id: '2355', }, - id: '670', + _id: '670', }, { attributes: { @@ -15075,7 +15075,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LBN', sar_id: '2355', }, - id: '671', + _id: '671', }, { attributes: { @@ -15105,7 +15105,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '672', + _id: '672', }, { attributes: { @@ -15135,7 +15135,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '673', + _id: '673', }, { attributes: { @@ -15165,7 +15165,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '674', + _id: '674', }, { attributes: { @@ -15195,7 +15195,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '675', + _id: '675', }, { attributes: { @@ -15225,7 +15225,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '676', + _id: '676', }, { attributes: { @@ -15255,7 +15255,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '677', + _id: '677', }, { attributes: { @@ -15285,7 +15285,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '678', + _id: '678', }, { attributes: { @@ -15315,7 +15315,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '679', + _id: '679', }, { attributes: { @@ -15345,7 +15345,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '680', + _id: '680', }, { attributes: { @@ -15375,7 +15375,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '681', + _id: '681', }, { attributes: { @@ -15405,7 +15405,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '682', + _id: '682', }, { attributes: { @@ -15435,7 +15435,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '683', + _id: '683', }, { attributes: { @@ -15465,7 +15465,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2355', }, - id: '684', + _id: '684', }, { attributes: { @@ -15495,7 +15495,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ZMB', sar_id: '2355', }, - id: '685', + _id: '685', }, { attributes: { @@ -15525,7 +15525,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ZMB', sar_id: '2355', }, - id: '686', + _id: '686', }, { attributes: { @@ -15555,7 +15555,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ZMB', sar_id: '2355', }, - id: '687', + _id: '687', }, { attributes: { @@ -15585,7 +15585,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ZMB', sar_id: '2355', }, - id: '688', + _id: '688', }, { attributes: { @@ -15615,7 +15615,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ZMB', sar_id: '2355', }, - id: '689', + _id: '689', }, { attributes: { @@ -15645,7 +15645,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ZMB', sar_id: '2355', }, - id: '690', + _id: '690', }, { attributes: { @@ -15675,7 +15675,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ZMB', sar_id: '2355', }, - id: '691', + _id: '691', }, { attributes: { @@ -15705,7 +15705,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ZMB', sar_id: '2355', }, - id: '692', + _id: '692', }, { attributes: { @@ -15735,7 +15735,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AUT', sar_id: '3176', }, - id: '693', + _id: '693', }, { attributes: { @@ -15765,7 +15765,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AFG', sar_id: '4314', }, - id: '694', + _id: '694', }, { attributes: { @@ -15795,7 +15795,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AFG', sar_id: '4314', }, - id: '695', + _id: '695', }, { attributes: { @@ -15825,7 +15825,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AFG', sar_id: '4314', }, - id: '696', + _id: '696', }, { attributes: { @@ -15855,7 +15855,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AFG', sar_id: '4314', }, - id: '697', + _id: '697', }, { attributes: { @@ -15885,7 +15885,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AFG', sar_id: '4314', }, - id: '698', + _id: '698', }, { attributes: { @@ -15915,7 +15915,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AFG', sar_id: '4314', }, - id: '699', + _id: '699', }, { attributes: { @@ -15945,7 +15945,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'MYS', sar_id: '4031', }, - id: '700', + _id: '700', }, { attributes: { @@ -15975,7 +15975,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GEO', sar_id: '3535', }, - id: '701', + _id: '701', }, { attributes: { @@ -16005,7 +16005,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '702', + _id: '702', }, { attributes: { @@ -16035,7 +16035,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '703', + _id: '703', }, { attributes: { @@ -16065,7 +16065,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '704', + _id: '704', }, { attributes: { @@ -16095,7 +16095,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '705', + _id: '705', }, { attributes: { @@ -16125,7 +16125,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '706', + _id: '706', }, { attributes: { @@ -16155,7 +16155,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '707', + _id: '707', }, { attributes: { @@ -16185,7 +16185,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '708', + _id: '708', }, { attributes: { @@ -16215,7 +16215,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '709', + _id: '709', }, { attributes: { @@ -16245,7 +16245,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '710', + _id: '710', }, { attributes: { @@ -16275,7 +16275,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '711', + _id: '711', }, { attributes: { @@ -16305,7 +16305,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '712', + _id: '712', }, { attributes: { @@ -16335,7 +16335,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '713', + _id: '713', }, { attributes: { @@ -16365,7 +16365,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '714', + _id: '714', }, { attributes: { @@ -16395,7 +16395,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '715', + _id: '715', }, { attributes: { @@ -16425,7 +16425,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '716', + _id: '716', }, { attributes: { @@ -16455,7 +16455,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '717', + _id: '717', }, { attributes: { @@ -16485,7 +16485,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '718', + _id: '718', }, { attributes: { @@ -16515,7 +16515,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '719', + _id: '719', }, { attributes: { @@ -16545,7 +16545,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '720', + _id: '720', }, { attributes: { @@ -16575,7 +16575,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '721', + _id: '721', }, { attributes: { @@ -16605,7 +16605,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '722', + _id: '722', }, { attributes: { @@ -16635,7 +16635,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3244', }, - id: '723', + _id: '723', }, { attributes: { @@ -16665,7 +16665,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DEU', sar_id: '3719', }, - id: '724', + _id: '724', }, { attributes: { @@ -16695,7 +16695,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DEU', sar_id: '3719', }, - id: '725', + _id: '725', }, { attributes: { @@ -16725,7 +16725,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'TWN', sar_id: '3719', }, - id: '726', + _id: '726', }, { attributes: { @@ -16755,7 +16755,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3719', }, - id: '727', + _id: '727', }, { attributes: { @@ -16785,7 +16785,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AUS', sar_id: '3719', }, - id: '728', + _id: '728', }, { attributes: { @@ -16815,7 +16815,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'MUS', sar_id: '3719', }, - id: '729', + _id: '729', }, { attributes: { @@ -16845,7 +16845,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3719', }, - id: '730', + _id: '730', }, { attributes: { @@ -16875,7 +16875,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '3719', }, - id: '731', + _id: '731', }, { attributes: { @@ -16905,7 +16905,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '3719', }, - id: '732', + _id: '732', }, { attributes: { @@ -16935,7 +16935,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3719', }, - id: '733', + _id: '733', }, { attributes: { @@ -16965,7 +16965,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '2971', }, - id: '734', + _id: '734', }, { attributes: { @@ -16995,7 +16995,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '3535', }, - id: '735', + _id: '735', }, { attributes: { @@ -17025,7 +17025,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3535', }, - id: '736', + _id: '736', }, { attributes: { @@ -17055,7 +17055,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'UKR', sar_id: '3535', }, - id: '737', + _id: '737', }, { attributes: { @@ -17085,7 +17085,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '3535', }, - id: '738', + _id: '738', }, { attributes: { @@ -17115,7 +17115,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '3535', }, - id: '739', + _id: '739', }, { attributes: { @@ -17145,7 +17145,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GEO', sar_id: '3535', }, - id: '740', + _id: '740', }, { attributes: { @@ -17175,7 +17175,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '3535', }, - id: '741', + _id: '741', }, { attributes: { @@ -17205,7 +17205,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DEU', sar_id: '3430', }, - id: '742', + _id: '742', }, { attributes: { @@ -17235,7 +17235,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '3430', }, - id: '743', + _id: '743', }, { attributes: { @@ -17265,7 +17265,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '3430', }, - id: '744', + _id: '744', }, { attributes: { @@ -17295,7 +17295,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '3430', }, - id: '745', + _id: '745', }, { attributes: { @@ -17325,7 +17325,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '3430', }, - id: '746', + _id: '746', }, { attributes: { @@ -17355,7 +17355,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '3430', }, - id: '747', + _id: '747', }, { attributes: { @@ -17385,7 +17385,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '3430', }, - id: '748', + _id: '748', }, { attributes: { @@ -17415,7 +17415,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SGP', sar_id: '3430', }, - id: '749', + _id: '749', }, { attributes: { @@ -17445,7 +17445,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DEU', sar_id: '3430', }, - id: '750', + _id: '750', }, { attributes: { @@ -17475,7 +17475,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SGP', sar_id: '3430', }, - id: '751', + _id: '751', }, { attributes: { @@ -17505,7 +17505,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SGP', sar_id: '3430', }, - id: '752', + _id: '752', }, { attributes: { @@ -17535,7 +17535,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3430', }, - id: '753', + _id: '753', }, { attributes: { @@ -17565,7 +17565,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '3430', }, - id: '754', + _id: '754', }, { attributes: { @@ -17595,7 +17595,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3430', }, - id: '755', + _id: '755', }, { attributes: { @@ -17625,7 +17625,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NLD', sar_id: '3430', }, - id: '756', + _id: '756', }, { attributes: { @@ -17655,7 +17655,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '3716', }, - id: '757', + _id: '757', }, { attributes: { @@ -17685,7 +17685,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NLD', sar_id: '3716', }, - id: '758', + _id: '758', }, { attributes: { @@ -17715,7 +17715,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DEU', sar_id: '3716', }, - id: '759', + _id: '759', }, { attributes: { @@ -17745,7 +17745,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DEU', sar_id: '3716', }, - id: '760', + _id: '760', }, { attributes: { @@ -17775,7 +17775,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3716', }, - id: '761', + _id: '761', }, { attributes: { @@ -17805,7 +17805,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LUX', sar_id: '3716', }, - id: '762', + _id: '762', }, { attributes: { @@ -17835,7 +17835,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3716', }, - id: '763', + _id: '763', }, { attributes: { @@ -17865,7 +17865,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '764', + _id: '764', }, { attributes: { @@ -17895,7 +17895,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '765', + _id: '765', }, { attributes: { @@ -17925,7 +17925,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '766', + _id: '766', }, { attributes: { @@ -17955,7 +17955,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '767', + _id: '767', }, { attributes: { @@ -17985,7 +17985,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '768', + _id: '768', }, { attributes: { @@ -18015,7 +18015,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '769', + _id: '769', }, { attributes: { @@ -18045,7 +18045,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2359', }, - id: '770', + _id: '770', }, { attributes: { @@ -18075,7 +18075,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '771', + _id: '771', }, { attributes: { @@ -18105,7 +18105,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '772', + _id: '772', }, { attributes: { @@ -18135,7 +18135,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '773', + _id: '773', }, { attributes: { @@ -18165,7 +18165,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AUS', sar_id: '2359', }, - id: '774', + _id: '774', }, { attributes: { @@ -18195,7 +18195,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2359', }, - id: '775', + _id: '775', }, { attributes: { @@ -18225,7 +18225,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '776', + _id: '776', }, { attributes: { @@ -18255,7 +18255,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '777', + _id: '777', }, { attributes: { @@ -18285,7 +18285,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '778', + _id: '778', }, { attributes: { @@ -18315,7 +18315,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2359', }, - id: '779', + _id: '779', }, { attributes: { @@ -18345,7 +18345,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SRB', sar_id: '2712', }, - id: '780', + _id: '780', }, { attributes: { @@ -18375,7 +18375,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '2765', }, - id: '781', + _id: '781', }, { attributes: { @@ -18405,7 +18405,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DEU', sar_id: '3062', }, - id: '782', + _id: '782', }, { attributes: { @@ -18435,7 +18435,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2848', }, - id: '783', + _id: '783', }, { attributes: { @@ -18465,7 +18465,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2848', }, - id: '784', + _id: '784', }, { attributes: { @@ -18495,7 +18495,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2848', }, - id: '785', + _id: '785', }, { attributes: { @@ -18525,7 +18525,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2848', }, - id: '786', + _id: '786', }, { attributes: { @@ -18555,7 +18555,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2848', }, - id: '787', + _id: '787', }, { attributes: { @@ -18585,7 +18585,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NLD', sar_id: '3038', }, - id: '788', + _id: '788', }, { attributes: { @@ -18615,7 +18615,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '4399', }, - id: '789', + _id: '789', }, { attributes: { @@ -18645,7 +18645,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '3064', }, - id: '790', + _id: '790', }, { attributes: { @@ -18675,7 +18675,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '3482', }, - id: '791', + _id: '791', }, { attributes: { @@ -18705,7 +18705,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SYC', sar_id: '3482', }, - id: '792', + _id: '792', }, { attributes: { @@ -18735,7 +18735,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DEU', sar_id: '3482', }, - id: '793', + _id: '793', }, { attributes: { @@ -18765,7 +18765,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '3482', }, - id: '794', + _id: '794', }, { attributes: { @@ -18795,7 +18795,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AUS', sar_id: '3482', }, - id: '795', + _id: '795', }, { attributes: { @@ -18825,7 +18825,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3482', }, - id: '796', + _id: '796', }, { attributes: { @@ -18855,7 +18855,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '3482', }, - id: '797', + _id: '797', }, { attributes: { @@ -18885,7 +18885,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '3482', }, - id: '798', + _id: '798', }, { attributes: { @@ -18915,7 +18915,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '3482', }, - id: '799', + _id: '799', }, { attributes: { @@ -18945,7 +18945,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '3482', }, - id: '800', + _id: '800', }, { attributes: { @@ -18975,7 +18975,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '3575', }, - id: '801', + _id: '801', }, { attributes: { @@ -19005,7 +19005,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '3488', }, - id: '802', + _id: '802', }, { attributes: { @@ -19035,7 +19035,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '4392', }, - id: '803', + _id: '803', }, { attributes: { @@ -19065,7 +19065,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'IDN', sar_id: '2986', }, - id: '804', + _id: '804', }, { attributes: { @@ -19095,7 +19095,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'IDN', sar_id: '2986', }, - id: '805', + _id: '805', }, { attributes: { @@ -19125,7 +19125,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SVN', sar_id: '4054', }, - id: '806', + _id: '806', }, { attributes: { @@ -19155,7 +19155,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '4262', }, - id: '807', + _id: '807', }, { attributes: { @@ -19185,7 +19185,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CYP', sar_id: '2716', }, - id: '808', + _id: '808', }, { attributes: { @@ -19215,7 +19215,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2300', }, - id: '809', + _id: '809', }, { attributes: { @@ -19245,7 +19245,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'EST', sar_id: '2707', }, - id: '810', + _id: '810', }, { attributes: { @@ -19275,7 +19275,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'IDN', sar_id: '3087', }, - id: '811', + _id: '811', }, { attributes: { @@ -19305,7 +19305,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AFG', sar_id: '3107', }, - id: '812', + _id: '812', }, { attributes: { @@ -19335,7 +19335,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AFG', sar_id: '3107', }, - id: '813', + _id: '813', }, { attributes: { @@ -19365,7 +19365,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AFG', sar_id: '3107', }, - id: '814', + _id: '814', }, { attributes: { @@ -19395,7 +19395,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '2716', }, - id: '815', + _id: '815', }, { attributes: { @@ -19425,7 +19425,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '2716', }, - id: '816', + _id: '816', }, { attributes: { @@ -19455,7 +19455,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2716', }, - id: '817', + _id: '817', }, { attributes: { @@ -19485,7 +19485,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2716', }, - id: '818', + _id: '818', }, { attributes: { @@ -19515,7 +19515,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2716', }, - id: '819', + _id: '819', }, { attributes: { @@ -19545,7 +19545,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CYP', sar_id: '2716', }, - id: '820', + _id: '820', }, { attributes: { @@ -19575,7 +19575,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2707', }, - id: '821', + _id: '821', }, { attributes: { @@ -19605,7 +19605,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '822', + _id: '822', }, { attributes: { @@ -19635,7 +19635,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '823', + _id: '823', }, { attributes: { @@ -19665,7 +19665,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '824', + _id: '824', }, { attributes: { @@ -19695,7 +19695,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '825', + _id: '825', }, { attributes: { @@ -19725,7 +19725,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '826', + _id: '826', }, { attributes: { @@ -19755,7 +19755,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '827', + _id: '827', }, { attributes: { @@ -19785,7 +19785,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '828', + _id: '828', }, { attributes: { @@ -19815,7 +19815,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '829', + _id: '829', }, { attributes: { @@ -19845,7 +19845,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '830', + _id: '830', }, { attributes: { @@ -19875,7 +19875,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '3317', }, - id: '831', + _id: '831', }, { attributes: { @@ -19905,7 +19905,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'EST', sar_id: '2393', }, - id: '832', + _id: '832', }, { attributes: { @@ -19935,7 +19935,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'EST', sar_id: '2393', }, - id: '833', + _id: '833', }, { attributes: { @@ -19965,7 +19965,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'MDA', sar_id: '2393', }, - id: '834', + _id: '834', }, { attributes: { @@ -19995,7 +19995,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2393', }, - id: '835', + _id: '835', }, { attributes: { @@ -20025,7 +20025,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2393', }, - id: '836', + _id: '836', }, { attributes: { @@ -20055,7 +20055,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'EST', sar_id: '2393', }, - id: '837', + _id: '837', }, { attributes: { @@ -20085,7 +20085,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DEU', sar_id: '2393', }, - id: '838', + _id: '838', }, { attributes: { @@ -20115,7 +20115,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2393', }, - id: '839', + _id: '839', }, { attributes: { @@ -20145,7 +20145,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2393', }, - id: '840', + _id: '840', }, { attributes: { @@ -20175,7 +20175,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2478', }, - id: '841', + _id: '841', }, { attributes: { @@ -20205,7 +20205,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2478', }, - id: '842', + _id: '842', }, { attributes: { @@ -20235,7 +20235,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2478', }, - id: '843', + _id: '843', }, { attributes: { @@ -20265,7 +20265,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2478', }, - id: '844', + _id: '844', }, { attributes: { @@ -20295,7 +20295,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2478', }, - id: '845', + _id: '845', }, { attributes: { @@ -20325,7 +20325,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2295', }, - id: '846', + _id: '846', }, { attributes: { @@ -20355,7 +20355,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NLD', sar_id: '2295', }, - id: '847', + _id: '847', }, { attributes: { @@ -20385,7 +20385,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2295', }, - id: '848', + _id: '848', }, { attributes: { @@ -20415,7 +20415,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2295', }, - id: '849', + _id: '849', }, { attributes: { @@ -20445,7 +20445,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2300', }, - id: '850', + _id: '850', }, { attributes: { @@ -20475,7 +20475,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2300', }, - id: '851', + _id: '851', }, { attributes: { @@ -20505,7 +20505,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2300', }, - id: '852', + _id: '852', }, { attributes: { @@ -20535,7 +20535,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2300', }, - id: '853', + _id: '853', }, { attributes: { @@ -20565,7 +20565,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NZL', sar_id: '3201', }, - id: '854', + _id: '854', }, { attributes: { @@ -20595,7 +20595,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3964', }, - id: '855', + _id: '855', }, { attributes: { @@ -20625,7 +20625,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3964', }, - id: '856', + _id: '856', }, { attributes: { @@ -20655,7 +20655,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3964', }, - id: '857', + _id: '857', }, { attributes: { @@ -20685,7 +20685,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NLD', sar_id: '3964', }, - id: '858', + _id: '858', }, { attributes: { @@ -20715,7 +20715,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3964', }, - id: '859', + _id: '859', }, { attributes: { @@ -20745,7 +20745,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3964', }, - id: '860', + _id: '860', }, { attributes: { @@ -20775,7 +20775,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'TUR', sar_id: '3964', }, - id: '861', + _id: '861', }, { attributes: { @@ -20805,7 +20805,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'TUR', sar_id: '3964', }, - id: '862', + _id: '862', }, { attributes: { @@ -20835,7 +20835,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3964', }, - id: '863', + _id: '863', }, { attributes: { @@ -20865,7 +20865,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '3964', }, - id: '864', + _id: '864', }, { attributes: { @@ -20895,7 +20895,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '4242', }, - id: '865', + _id: '865', }, { attributes: { @@ -20925,7 +20925,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '4242', }, - id: '866', + _id: '866', }, { attributes: { @@ -20955,7 +20955,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '4242', }, - id: '867', + _id: '867', }, { attributes: { @@ -20985,7 +20985,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '4242', }, - id: '868', + _id: '868', }, { attributes: { @@ -21015,7 +21015,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '4242', }, - id: '869', + _id: '869', }, { attributes: { @@ -21045,7 +21045,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '4242', }, - id: '870', + _id: '870', }, { attributes: { @@ -21075,7 +21075,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '4242', }, - id: '871', + _id: '871', }, { attributes: { @@ -21105,7 +21105,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '4242', }, - id: '872', + _id: '872', }, { attributes: { @@ -21135,7 +21135,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LIE', sar_id: '4242', }, - id: '873', + _id: '873', }, { attributes: { @@ -21165,7 +21165,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NLD', sar_id: '3274', }, - id: '874', + _id: '874', }, { attributes: { @@ -21195,7 +21195,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '3274', }, - id: '875', + _id: '875', }, { attributes: { @@ -21225,7 +21225,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '4255', }, - id: '876', + _id: '876', }, { attributes: { @@ -21255,7 +21255,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '4255', }, - id: '877', + _id: '877', }, { attributes: { @@ -21285,7 +21285,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '4255', }, - id: '878', + _id: '878', }, { attributes: { @@ -21315,7 +21315,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '4255', }, - id: '879', + _id: '879', }, { attributes: { @@ -21345,7 +21345,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '4255', }, - id: '880', + _id: '880', }, { attributes: { @@ -21375,7 +21375,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2388', }, - id: '881', + _id: '881', }, { attributes: { @@ -21405,7 +21405,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '4303', }, - id: '882', + _id: '882', }, { attributes: { @@ -21435,7 +21435,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '4303', }, - id: '883', + _id: '883', }, { attributes: { @@ -21465,7 +21465,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LUX', sar_id: '4303', }, - id: '884', + _id: '884', }, { attributes: { @@ -21495,7 +21495,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NLD', sar_id: '3101', }, - id: '885', + _id: '885', }, { attributes: { @@ -21525,7 +21525,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '4098', }, - id: '886', + _id: '886', }, { attributes: { @@ -21555,7 +21555,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '4098', }, - id: '887', + _id: '887', }, { attributes: { @@ -21585,7 +21585,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'EST', sar_id: '2336', }, - id: '888', + _id: '888', }, { attributes: { @@ -21615,7 +21615,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'EST', sar_id: '2336', }, - id: '889', + _id: '889', }, { attributes: { @@ -21645,7 +21645,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'EST', sar_id: '2336', }, - id: '890', + _id: '890', }, { attributes: { @@ -21675,7 +21675,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CYP', sar_id: '2335', }, - id: '891', + _id: '891', }, { attributes: { @@ -21705,7 +21705,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CYP', sar_id: '2335', }, - id: '892', + _id: '892', }, { attributes: { @@ -21735,7 +21735,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CYP', sar_id: '2335', }, - id: '893', + _id: '893', }, { attributes: { @@ -21765,7 +21765,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NGA', sar_id: '2905', }, - id: '894', + _id: '894', }, { attributes: { @@ -21795,7 +21795,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AGO', sar_id: '2905', }, - id: '895', + _id: '895', }, { attributes: { @@ -21825,7 +21825,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AGO', sar_id: '2905', }, - id: '896', + _id: '896', }, { attributes: { @@ -21855,7 +21855,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AGO', sar_id: '2905', }, - id: '897', + _id: '897', }, { attributes: { @@ -21885,7 +21885,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AGO', sar_id: '2905', }, - id: '898', + _id: '898', }, { attributes: { @@ -21915,7 +21915,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AGO', sar_id: '2905', }, - id: '899', + _id: '899', }, { attributes: { @@ -21945,7 +21945,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AGO', sar_id: '2905', }, - id: '900', + _id: '900', }, { attributes: { @@ -21975,7 +21975,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '901', + _id: '901', }, { attributes: { @@ -22005,7 +22005,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '902', + _id: '902', }, { attributes: { @@ -22035,7 +22035,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '903', + _id: '903', }, { attributes: { @@ -22065,7 +22065,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '904', + _id: '904', }, { attributes: { @@ -22095,7 +22095,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '905', + _id: '905', }, { attributes: { @@ -22125,7 +22125,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '906', + _id: '906', }, { attributes: { @@ -22155,7 +22155,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '907', + _id: '907', }, { attributes: { @@ -22185,7 +22185,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '908', + _id: '908', }, { attributes: { @@ -22215,7 +22215,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '909', + _id: '909', }, { attributes: { @@ -22245,7 +22245,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '910', + _id: '910', }, { attributes: { @@ -22275,7 +22275,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '911', + _id: '911', }, { attributes: { @@ -22305,7 +22305,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '912', + _id: '912', }, { attributes: { @@ -22335,7 +22335,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '913', + _id: '913', }, { attributes: { @@ -22365,7 +22365,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CIV', sar_id: '2905', }, - id: '914', + _id: '914', }, { attributes: { @@ -22395,7 +22395,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '915', + _id: '915', }, { attributes: { @@ -22425,7 +22425,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COD', sar_id: '2905', }, - id: '916', + _id: '916', }, { attributes: { @@ -22455,7 +22455,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COD', sar_id: '2905', }, - id: '917', + _id: '917', }, { attributes: { @@ -22485,7 +22485,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '918', + _id: '918', }, { attributes: { @@ -22515,7 +22515,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '919', + _id: '919', }, { attributes: { @@ -22545,7 +22545,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '920', + _id: '920', }, { attributes: { @@ -22575,7 +22575,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '921', + _id: '921', }, { attributes: { @@ -22605,7 +22605,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '922', + _id: '922', }, { attributes: { @@ -22635,7 +22635,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '923', + _id: '923', }, { attributes: { @@ -22665,7 +22665,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '924', + _id: '924', }, { attributes: { @@ -22695,7 +22695,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '925', + _id: '925', }, { attributes: { @@ -22725,7 +22725,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '926', + _id: '926', }, { attributes: { @@ -22755,7 +22755,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '927', + _id: '927', }, { attributes: { @@ -22785,7 +22785,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '928', + _id: '928', }, { attributes: { @@ -22815,7 +22815,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '929', + _id: '929', }, { attributes: { @@ -22845,7 +22845,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '930', + _id: '930', }, { attributes: { @@ -22875,7 +22875,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '931', + _id: '931', }, { attributes: { @@ -22905,7 +22905,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '932', + _id: '932', }, { attributes: { @@ -22935,7 +22935,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '933', + _id: '933', }, { attributes: { @@ -22965,7 +22965,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '934', + _id: '934', }, { attributes: { @@ -22995,7 +22995,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '935', + _id: '935', }, { attributes: { @@ -23025,7 +23025,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '936', + _id: '936', }, { attributes: { @@ -23055,7 +23055,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '937', + _id: '937', }, { attributes: { @@ -23085,7 +23085,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '938', + _id: '938', }, { attributes: { @@ -23115,7 +23115,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '939', + _id: '939', }, { attributes: { @@ -23145,7 +23145,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '940', + _id: '940', }, { attributes: { @@ -23175,7 +23175,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '941', + _id: '941', }, { attributes: { @@ -23205,7 +23205,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '942', + _id: '942', }, { attributes: { @@ -23235,7 +23235,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '943', + _id: '943', }, { attributes: { @@ -23265,7 +23265,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '944', + _id: '944', }, { attributes: { @@ -23295,7 +23295,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '945', + _id: '945', }, { attributes: { @@ -23325,7 +23325,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '946', + _id: '946', }, { attributes: { @@ -23355,7 +23355,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '947', + _id: '947', }, { attributes: { @@ -23385,7 +23385,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '948', + _id: '948', }, { attributes: { @@ -23415,7 +23415,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '949', + _id: '949', }, { attributes: { @@ -23445,7 +23445,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '950', + _id: '950', }, { attributes: { @@ -23475,7 +23475,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '951', + _id: '951', }, { attributes: { @@ -23505,7 +23505,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '952', + _id: '952', }, { attributes: { @@ -23535,7 +23535,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '953', + _id: '953', }, { attributes: { @@ -23565,7 +23565,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '954', + _id: '954', }, { attributes: { @@ -23595,7 +23595,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '955', + _id: '955', }, { attributes: { @@ -23625,7 +23625,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '956', + _id: '956', }, { attributes: { @@ -23655,7 +23655,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '957', + _id: '957', }, { attributes: { @@ -23685,7 +23685,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '958', + _id: '958', }, { attributes: { @@ -23715,7 +23715,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '959', + _id: '959', }, { attributes: { @@ -23745,7 +23745,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '960', + _id: '960', }, { attributes: { @@ -23775,7 +23775,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '961', + _id: '961', }, { attributes: { @@ -23805,7 +23805,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '962', + _id: '962', }, { attributes: { @@ -23835,7 +23835,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '963', + _id: '963', }, { attributes: { @@ -23865,7 +23865,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '964', + _id: '964', }, { attributes: { @@ -23895,7 +23895,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '965', + _id: '965', }, { attributes: { @@ -23925,7 +23925,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '966', + _id: '966', }, { attributes: { @@ -23955,7 +23955,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'COG', sar_id: '2905', }, - id: '967', + _id: '967', }, { attributes: { @@ -23985,7 +23985,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '968', + _id: '968', }, { attributes: { @@ -24015,7 +24015,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '969', + _id: '969', }, { attributes: { @@ -24045,7 +24045,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '970', + _id: '970', }, { attributes: { @@ -24075,7 +24075,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '971', + _id: '971', }, { attributes: { @@ -24105,7 +24105,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '972', + _id: '972', }, { attributes: { @@ -24135,7 +24135,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '973', + _id: '973', }, { attributes: { @@ -24165,7 +24165,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '974', + _id: '974', }, { attributes: { @@ -24195,7 +24195,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '975', + _id: '975', }, { attributes: { @@ -24225,7 +24225,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '976', + _id: '976', }, { attributes: { @@ -24255,7 +24255,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '977', + _id: '977', }, { attributes: { @@ -24285,7 +24285,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '978', + _id: '978', }, { attributes: { @@ -24315,7 +24315,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RWA', sar_id: '2905', }, - id: '979', + _id: '979', }, { attributes: { @@ -24345,7 +24345,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '4145', }, - id: '980', + _id: '980', }, { attributes: { @@ -24375,7 +24375,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'HKG', sar_id: '4145', }, - id: '981', + _id: '981', }, { attributes: { @@ -24405,7 +24405,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '4145', }, - id: '982', + _id: '982', }, { attributes: { @@ -24435,7 +24435,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '4145', }, - id: '983', + _id: '983', }, { attributes: { @@ -24465,7 +24465,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '4145', }, - id: '984', + _id: '984', }, { attributes: { @@ -24495,7 +24495,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SGP', sar_id: '4145', }, - id: '985', + _id: '985', }, { attributes: { @@ -24525,7 +24525,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '4145', }, - id: '986', + _id: '986', }, { attributes: { @@ -24555,7 +24555,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '4145', }, - id: '987', + _id: '987', }, { attributes: { @@ -24585,7 +24585,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '4145', }, - id: '988', + _id: '988', }, { attributes: { @@ -24615,7 +24615,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '4145', }, - id: '989', + _id: '989', }, { attributes: { @@ -24645,7 +24645,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHN', sar_id: '4145', }, - id: '990', + _id: '990', }, { attributes: { @@ -24675,7 +24675,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '3894', }, - id: '991', + _id: '991', }, { attributes: { @@ -24705,7 +24705,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3871', }, - id: '992', + _id: '992', }, { attributes: { @@ -24735,7 +24735,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '2921', }, - id: '993', + _id: '993', }, { attributes: { @@ -24765,7 +24765,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '2921', }, - id: '994', + _id: '994', }, { attributes: { @@ -24795,7 +24795,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '2921', }, - id: '995', + _id: '995', }, { attributes: { @@ -24825,7 +24825,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '2921', }, - id: '996', + _id: '996', }, { attributes: { @@ -24855,7 +24855,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '2921', }, - id: '997', + _id: '997', }, { attributes: { @@ -24885,7 +24885,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'IRL', sar_id: '2921', }, - id: '998', + _id: '998', }, { attributes: { @@ -24915,7 +24915,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '2921', }, - id: '999', + _id: '999', }, { attributes: { @@ -24945,7 +24945,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '2921', }, - id: '1000', + _id: '1000', }, { attributes: { @@ -24975,7 +24975,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'AUS', sar_id: '4011', }, - id: '1001', + _id: '1001', }, { attributes: { @@ -25005,7 +25005,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SWE', sar_id: '4011', }, - id: '1002', + _id: '1002', }, { attributes: { @@ -25035,7 +25035,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '4011', }, - id: '1003', + _id: '1003', }, { attributes: { @@ -25065,7 +25065,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'NLD', sar_id: '4011', }, - id: '1004', + _id: '1004', }, { attributes: { @@ -25095,7 +25095,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '4011', }, - id: '1005', + _id: '1005', }, { attributes: { @@ -25125,7 +25125,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '4011', }, - id: '1006', + _id: '1006', }, { attributes: { @@ -25155,7 +25155,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'DNK', sar_id: '4011', }, - id: '1007', + _id: '1007', }, { attributes: { @@ -25185,7 +25185,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '4011', }, - id: '1008', + _id: '1008', }, { attributes: { @@ -25215,7 +25215,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'USA', sar_id: '4011', }, - id: '1009', + _id: '1009', }, { attributes: { @@ -25245,7 +25245,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '3884', }, - id: '1010', + _id: '1010', }, { attributes: { @@ -25275,7 +25275,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '3884', }, - id: '1011', + _id: '1011', }, { attributes: { @@ -25305,7 +25305,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '3884', }, - id: '1012', + _id: '1012', }, { attributes: { @@ -25335,7 +25335,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '3873', }, - id: '1013', + _id: '1013', }, { attributes: { @@ -25365,7 +25365,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '3873', }, - id: '1014', + _id: '1014', }, { attributes: { @@ -25395,7 +25395,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '3873', }, - id: '1015', + _id: '1015', }, { attributes: { @@ -25425,7 +25425,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '3721', }, - id: '1016', + _id: '1016', }, { attributes: { @@ -25455,7 +25455,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'TZA', sar_id: '2424', }, - id: '1017', + _id: '1017', }, { attributes: { @@ -25485,7 +25485,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CYP', sar_id: '2424', }, - id: '1018', + _id: '1018', }, { attributes: { @@ -25515,7 +25515,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CYP', sar_id: '2424', }, - id: '1019', + _id: '1019', }, { attributes: { @@ -25545,7 +25545,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'UKR', sar_id: '2424', }, - id: '1020', + _id: '1020', }, { attributes: { @@ -25575,7 +25575,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2424', }, - id: '1021', + _id: '1021', }, { attributes: { @@ -25605,7 +25605,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2424', }, - id: '1022', + _id: '1022', }, { attributes: { @@ -25635,7 +25635,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CYP', sar_id: '2424', }, - id: '1023', + _id: '1023', }, { attributes: { @@ -25665,7 +25665,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '2424', }, - id: '1024', + _id: '1024', }, { attributes: { @@ -25695,7 +25695,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'TZA', sar_id: '2424', }, - id: '1025', + _id: '1025', }, { attributes: { @@ -25725,7 +25725,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'POL', sar_id: '3246', }, - id: '1026', + _id: '1026', }, { attributes: { @@ -25755,7 +25755,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2390', }, - id: '1027', + _id: '1027', }, { attributes: { @@ -25785,7 +25785,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2390', }, - id: '1028', + _id: '1028', }, { attributes: { @@ -25815,7 +25815,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2390', }, - id: '1029', + _id: '1029', }, { attributes: { @@ -25839,7 +25839,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2390', }, - id: '1030', + _id: '1030', }, { attributes: { @@ -25869,7 +25869,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2390', }, - id: '1031', + _id: '1031', }, { attributes: { @@ -25899,7 +25899,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'GBR', sar_id: '2390', }, - id: '1032', + _id: '1032', }, { attributes: { @@ -25929,7 +25929,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2390', }, - id: '1033', + _id: '1033', }, { attributes: { @@ -25959,7 +25959,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'KAZ', sar_id: '2390', }, - id: '1034', + _id: '1034', }, { attributes: { @@ -25989,7 +25989,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'ARE', sar_id: '2390', }, - id: '1035', + _id: '1035', }, { attributes: { @@ -26019,7 +26019,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2390', }, - id: '1036', + _id: '1036', }, { attributes: { @@ -26049,7 +26049,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2746', }, - id: '1037', + _id: '1037', }, { attributes: { @@ -26079,7 +26079,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2746', }, - id: '1038', + _id: '1038', }, { attributes: { @@ -26109,7 +26109,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2746', }, - id: '1039', + _id: '1039', }, { attributes: { @@ -26139,7 +26139,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2746', }, - id: '1040', + _id: '1040', }, { attributes: { @@ -26169,7 +26169,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2746', }, - id: '1041', + _id: '1041', }, { attributes: { @@ -26199,7 +26199,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'POL', sar_id: '2746', }, - id: '1042', + _id: '1042', }, { attributes: { @@ -26229,7 +26229,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'CHE', sar_id: '2746', }, - id: '1043', + _id: '1043', }, { attributes: { @@ -26259,7 +26259,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'RUS', sar_id: '2746', }, - id: '1044', + _id: '1044', }, { attributes: { @@ -26289,7 +26289,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2457', }, - id: '1045', + _id: '1045', }, { attributes: { @@ -26319,7 +26319,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'LVA', sar_id: '2457', }, - id: '1046', + _id: '1046', }, { attributes: { @@ -26349,7 +26349,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'EGY', sar_id: '2457', }, - id: '1047', + _id: '1047', }, { attributes: { @@ -26379,7 +26379,7 @@ export const fincenFilingBenefitsEntityInCountryQueryResultPayload: GraphQueryRe originator_iso: 'SGP', sar_id: '2457', }, - id: '1048', + _id: '1048', }, ], }, @@ -26397,7 +26397,7 @@ export const fincenFilingBenefitsEntityWithSameOriginatorQueryResultPayload: Gra Type: 'BENEFITS', }, from: '4966', - id: '34779', + _id: '34779', to: '6088', }, { @@ -26405,7 +26405,7 @@ export const fincenFilingBenefitsEntityWithSameOriginatorQueryResultPayload: Gra Type: 'ORIGINATOR', }, from: '4966', - id: '40734', + _id: '40734', to: '6088', }, ], @@ -26438,7 +26438,7 @@ export const fincenFilingBenefitsEntityWithSameOriginatorQueryResultPayload: Gra originator_iso: 'HKG', sar_id: '3146', }, - id: '4966', + _id: '4966', }, { attributes: { @@ -26451,7 +26451,7 @@ export const fincenFilingBenefitsEntityWithSameOriginatorQueryResultPayload: Gra }, name: 'HSBC', }, - id: '6088', + _id: '6088', }, ], }, diff --git a/libs/shared/lib/mock-data/query-result/mockLargeQueryResults.ts b/libs/shared/lib/mock-data/query-result/mockLargeQueryResults.ts index 94b37d591..a6f84e9b7 100644 --- a/libs/shared/lib/mock-data/query-result/mockLargeQueryResults.ts +++ b/libs/shared/lib/mock-data/query-result/mockLargeQueryResults.ts @@ -13,7 +13,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14514', + _id: '14514', to: '855', }, { @@ -21,7 +21,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14570', + _id: '14570', to: '883', }, { @@ -29,7 +29,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14558', + _id: '14558', to: '877', }, { @@ -37,7 +37,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14452', + _id: '14452', to: '824', }, { @@ -45,7 +45,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14582', + _id: '14582', to: '889', }, { @@ -53,7 +53,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14498', + _id: '14498', to: '847', }, { @@ -61,7 +61,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14526', + _id: '14526', to: '861', }, { @@ -69,7 +69,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14600', + _id: '14600', to: '898', }, { @@ -77,7 +77,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14472', + _id: '14472', to: '834', }, { @@ -85,7 +85,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14520', + _id: '14520', to: '858', }, { @@ -93,7 +93,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14580', + _id: '14580', to: '888', }, { @@ -101,7 +101,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14604', + _id: '14604', to: '900', }, { @@ -109,7 +109,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14524', + _id: '14524', to: '860', }, { @@ -117,7 +117,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14528', + _id: '14528', to: '862', }, { @@ -125,7 +125,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14586', + _id: '14586', to: '891', }, { @@ -133,7 +133,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14460', + _id: '14460', to: '828', }, { @@ -141,7 +141,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14506', + _id: '14506', to: '851', }, { @@ -149,7 +149,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14568', + _id: '14568', to: '882', }, { @@ -157,7 +157,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14598', + _id: '14598', to: '897', }, { @@ -165,7 +165,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14606', + _id: '14606', to: '901', }, { @@ -173,7 +173,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14538', + _id: '14538', to: '867', }, { @@ -181,7 +181,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14512', + _id: '14512', to: '854', }, { @@ -189,7 +189,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14560', + _id: '14560', to: '878', }, { @@ -197,7 +197,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14482', + _id: '14482', to: '839', }, { @@ -205,7 +205,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14522', + _id: '14522', to: '859', }, { @@ -213,7 +213,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14546', + _id: '14546', to: '871', }, { @@ -221,7 +221,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14478', + _id: '14478', to: '837', }, { @@ -229,7 +229,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14572', + _id: '14572', to: '884', }, { @@ -237,7 +237,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14504', + _id: '14504', to: '850', }, { @@ -245,7 +245,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14464', + _id: '14464', to: '830', }, { @@ -253,7 +253,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14510', + _id: '14510', to: '853', }, { @@ -261,7 +261,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14562', + _id: '14562', to: '879', }, { @@ -269,7 +269,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14552', + _id: '14552', to: '874', }, { @@ -277,7 +277,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14592', + _id: '14592', to: '894', }, { @@ -285,7 +285,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14496', + _id: '14496', to: '846', }, { @@ -293,7 +293,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14556', + _id: '14556', to: '876', }, { @@ -301,7 +301,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14566', + _id: '14566', to: '881', }, { @@ -309,7 +309,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14594', + _id: '14594', to: '895', }, { @@ -317,7 +317,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14516', + _id: '14516', to: '856', }, { @@ -325,7 +325,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14576', + _id: '14576', to: '886', }, { @@ -333,7 +333,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14564', + _id: '14564', to: '880', }, { @@ -341,7 +341,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14500', + _id: '14500', to: '848', }, { @@ -349,7 +349,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14540', + _id: '14540', to: '868', }, { @@ -357,7 +357,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14492', + _id: '14492', to: '844', }, { @@ -365,7 +365,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14470', + _id: '14470', to: '833', }, { @@ -373,7 +373,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14608', + _id: '14608', to: '902', }, { @@ -381,7 +381,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14458', + _id: '14458', to: '827', }, { @@ -389,7 +389,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14518', + _id: '14518', to: '857', }, { @@ -397,7 +397,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14584', + _id: '14584', to: '890', }, { @@ -405,7 +405,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14474', + _id: '14474', to: '835', }, { @@ -413,7 +413,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14550', + _id: '14550', to: '873', }, { @@ -421,7 +421,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14462', + _id: '14462', to: '829', }, { @@ -429,7 +429,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14536', + _id: '14536', to: '866', }, { @@ -437,7 +437,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14534', + _id: '14534', to: '865', }, { @@ -445,7 +445,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14548', + _id: '14548', to: '872', }, { @@ -453,7 +453,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14542', + _id: '14542', to: '869', }, { @@ -461,7 +461,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14530', + _id: '14530', to: '863', }, { @@ -469,7 +469,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14486', + _id: '14486', to: '841', }, { @@ -477,7 +477,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14554', + _id: '14554', to: '875', }, { @@ -485,7 +485,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14602', + _id: '14602', to: '899', }, { @@ -493,7 +493,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14588', + _id: '14588', to: '892', }, { @@ -501,7 +501,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14484', + _id: '14484', to: '840', }, { @@ -509,7 +509,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14502', + _id: '14502', to: '849', }, { @@ -517,7 +517,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14454', + _id: '14454', to: '825', }, { @@ -525,7 +525,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14476', + _id: '14476', to: '836', }, { @@ -533,7 +533,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14488', + _id: '14488', to: '842', }, { @@ -541,7 +541,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14490', + _id: '14490', to: '843', }, { @@ -549,7 +549,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14466', + _id: '14466', to: '831', }, { @@ -557,7 +557,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14508', + _id: '14508', to: '852', }, { @@ -565,7 +565,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14574', + _id: '14574', to: '885', }, { @@ -573,7 +573,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14480', + _id: '14480', to: '838', }, { @@ -581,7 +581,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14544', + _id: '14544', to: '870', }, { @@ -589,7 +589,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14468', + _id: '14468', to: '832', }, { @@ -597,7 +597,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14578', + _id: '14578', to: '887', }, { @@ -605,7 +605,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14532', + _id: '14532', to: '864', }, { @@ -613,7 +613,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14456', + _id: '14456', to: '826', }, { @@ -621,7 +621,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14590', + _id: '14590', to: '893', }, { @@ -629,7 +629,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14596', + _id: '14596', to: '896', }, { @@ -637,7 +637,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '219', - id: '14494', + _id: '14494', to: '845', }, { @@ -645,7 +645,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14650', + _id: '14650', to: '923', }, { @@ -653,7 +653,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14654', + _id: '14654', to: '925', }, { @@ -661,7 +661,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14756', + _id: '14756', to: '976', }, { @@ -669,7 +669,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14698', + _id: '14698', to: '947', }, { @@ -677,7 +677,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14704', + _id: '14704', to: '950', }, { @@ -685,7 +685,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14746', + _id: '14746', to: '971', }, { @@ -693,7 +693,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14640', + _id: '14640', to: '918', }, { @@ -701,7 +701,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14732', + _id: '14732', to: '964', }, { @@ -709,7 +709,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14626', + _id: '14626', to: '911', }, { @@ -717,7 +717,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14730', + _id: '14730', to: '963', }, { @@ -725,7 +725,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14684', + _id: '14684', to: '940', }, { @@ -733,7 +733,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14666', + _id: '14666', to: '931', }, { @@ -741,7 +741,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14766', + _id: '14766', to: '981', }, { @@ -749,7 +749,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14610', + _id: '14610', to: '903', }, { @@ -757,7 +757,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14676', + _id: '14676', to: '936', }, { @@ -765,7 +765,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14632', + _id: '14632', to: '914', }, { @@ -773,7 +773,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14708', + _id: '14708', to: '952', }, { @@ -781,7 +781,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14616', + _id: '14616', to: '906', }, { @@ -789,7 +789,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14622', + _id: '14622', to: '909', }, { @@ -797,7 +797,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14712', + _id: '14712', to: '954', }, { @@ -805,7 +805,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14738', + _id: '14738', to: '967', }, { @@ -813,7 +813,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14618', + _id: '14618', to: '907', }, { @@ -821,7 +821,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14740', + _id: '14740', to: '968', }, { @@ -829,7 +829,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14752', + _id: '14752', to: '974', }, { @@ -837,7 +837,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14702', + _id: '14702', to: '949', }, { @@ -845,7 +845,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14644', + _id: '14644', to: '920', }, { @@ -853,7 +853,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14762', + _id: '14762', to: '979', }, { @@ -861,7 +861,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14628', + _id: '14628', to: '912', }, { @@ -869,7 +869,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14744', + _id: '14744', to: '970', }, { @@ -877,7 +877,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14764', + _id: '14764', to: '980', }, { @@ -885,7 +885,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14748', + _id: '14748', to: '972', }, { @@ -893,7 +893,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14646', + _id: '14646', to: '921', }, { @@ -901,7 +901,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14694', + _id: '14694', to: '945', }, { @@ -909,7 +909,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14664', + _id: '14664', to: '930', }, { @@ -917,7 +917,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14726', + _id: '14726', to: '961', }, { @@ -925,7 +925,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14662', + _id: '14662', to: '929', }, { @@ -933,7 +933,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14642', + _id: '14642', to: '919', }, { @@ -941,7 +941,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14680', + _id: '14680', to: '938', }, { @@ -949,7 +949,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14722', + _id: '14722', to: '959', }, { @@ -957,7 +957,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14750', + _id: '14750', to: '973', }, { @@ -965,7 +965,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14612', + _id: '14612', to: '904', }, { @@ -973,7 +973,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14636', + _id: '14636', to: '916', }, { @@ -981,7 +981,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14634', + _id: '14634', to: '915', }, { @@ -989,7 +989,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14710', + _id: '14710', to: '953', }, { @@ -997,7 +997,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14620', + _id: '14620', to: '908', }, { @@ -1005,7 +1005,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14670', + _id: '14670', to: '933', }, { @@ -1013,7 +1013,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14652', + _id: '14652', to: '924', }, { @@ -1021,7 +1021,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14656', + _id: '14656', to: '926', }, { @@ -1029,7 +1029,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14624', + _id: '14624', to: '910', }, { @@ -1037,7 +1037,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14674', + _id: '14674', to: '935', }, { @@ -1045,7 +1045,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14706', + _id: '14706', to: '951', }, { @@ -1053,7 +1053,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14678', + _id: '14678', to: '937', }, { @@ -1061,7 +1061,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14728', + _id: '14728', to: '962', }, { @@ -1069,7 +1069,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14668', + _id: '14668', to: '932', }, { @@ -1077,7 +1077,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14742', + _id: '14742', to: '969', }, { @@ -1085,7 +1085,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14714', + _id: '14714', to: '955', }, { @@ -1093,7 +1093,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14688', + _id: '14688', to: '942', }, { @@ -1101,7 +1101,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14716', + _id: '14716', to: '956', }, { @@ -1109,7 +1109,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14690', + _id: '14690', to: '943', }, { @@ -1117,7 +1117,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14672', + _id: '14672', to: '934', }, { @@ -1125,7 +1125,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14734', + _id: '14734', to: '965', }, { @@ -1133,7 +1133,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14724', + _id: '14724', to: '960', }, { @@ -1141,7 +1141,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14760', + _id: '14760', to: '978', }, { @@ -1149,7 +1149,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14630', + _id: '14630', to: '913', }, { @@ -1157,7 +1157,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14736', + _id: '14736', to: '966', }, { @@ -1165,7 +1165,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14686', + _id: '14686', to: '941', }, { @@ -1173,7 +1173,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14682', + _id: '14682', to: '939', }, { @@ -1181,7 +1181,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14768', + _id: '14768', to: '982', }, { @@ -1189,7 +1189,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14758', + _id: '14758', to: '977', }, { @@ -1197,7 +1197,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14700', + _id: '14700', to: '948', }, { @@ -1205,7 +1205,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14720', + _id: '14720', to: '958', }, { @@ -1213,7 +1213,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14718', + _id: '14718', to: '957', }, { @@ -1221,7 +1221,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14692', + _id: '14692', to: '944', }, { @@ -1229,7 +1229,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14614', + _id: '14614', to: '905', }, { @@ -1237,7 +1237,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14658', + _id: '14658', to: '927', }, { @@ -1245,7 +1245,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14660', + _id: '14660', to: '928', }, { @@ -1253,7 +1253,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14696', + _id: '14696', to: '946', }, { @@ -1261,7 +1261,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14638', + _id: '14638', to: '917', }, { @@ -1269,7 +1269,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14754', + _id: '14754', to: '975', }, { @@ -1277,7 +1277,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '220', - id: '14648', + _id: '14648', to: '922', }, { @@ -1285,7 +1285,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14784', + _id: '14784', to: '990', }, { @@ -1293,7 +1293,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14770', + _id: '14770', to: '983', }, { @@ -1301,7 +1301,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14786', + _id: '14786', to: '991', }, { @@ -1309,7 +1309,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14780', + _id: '14780', to: '988', }, { @@ -1317,7 +1317,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14776', + _id: '14776', to: '986', }, { @@ -1325,7 +1325,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14774', + _id: '14774', to: '985', }, { @@ -1333,7 +1333,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14782', + _id: '14782', to: '989', }, { @@ -1341,7 +1341,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14790', + _id: '14790', to: '993', }, { @@ -1349,7 +1349,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14772', + _id: '14772', to: '984', }, { @@ -1357,7 +1357,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14778', + _id: '14778', to: '987', }, { @@ -1365,7 +1365,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '221', - id: '14788', + _id: '14788', to: '992', }, { @@ -1373,7 +1373,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14866', + _id: '14866', to: '1031', }, { @@ -1381,7 +1381,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14900', + _id: '14900', to: '1048', }, { @@ -1389,7 +1389,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14856', + _id: '14856', to: '1026', }, { @@ -1397,7 +1397,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14840', + _id: '14840', to: '1018', }, { @@ -1405,7 +1405,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14942', + _id: '14942', to: '1069', }, { @@ -1413,7 +1413,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14904', + _id: '14904', to: '1050', }, { @@ -1421,7 +1421,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14836', + _id: '14836', to: '1016', }, { @@ -1429,7 +1429,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14874', + _id: '14874', to: '1035', }, { @@ -1437,7 +1437,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14810', + _id: '14810', to: '1003', }, { @@ -1445,7 +1445,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14858', + _id: '14858', to: '1027', }, { @@ -1453,7 +1453,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14872', + _id: '14872', to: '1034', }, { @@ -1461,7 +1461,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14846', + _id: '14846', to: '1021', }, { @@ -1469,7 +1469,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14808', + _id: '14808', to: '1002', }, { @@ -1477,7 +1477,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14860', + _id: '14860', to: '1028', }, { @@ -1485,7 +1485,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14804', + _id: '14804', to: '1000', }, { @@ -1493,7 +1493,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14820', + _id: '14820', to: '1008', }, { @@ -1501,7 +1501,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14884', + _id: '14884', to: '1040', }, { @@ -1509,7 +1509,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14896', + _id: '14896', to: '1046', }, { @@ -1517,7 +1517,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14882', + _id: '14882', to: '1039', }, { @@ -1525,7 +1525,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14818', + _id: '14818', to: '1007', }, { @@ -1533,7 +1533,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14794', + _id: '14794', to: '995', }, { @@ -1541,7 +1541,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14830', + _id: '14830', to: '1013', }, { @@ -1549,7 +1549,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14902', + _id: '14902', to: '1049', }, { @@ -1557,7 +1557,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14908', + _id: '14908', to: '1052', }, { @@ -1565,7 +1565,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14792', + _id: '14792', to: '994', }, { @@ -1573,7 +1573,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14834', + _id: '14834', to: '1015', }, { @@ -1581,7 +1581,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14898', + _id: '14898', to: '1047', }, { @@ -1589,7 +1589,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14924', + _id: '14924', to: '1060', }, { @@ -1597,7 +1597,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14864', + _id: '14864', to: '1030', }, { @@ -1605,7 +1605,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14892', + _id: '14892', to: '1044', }, { @@ -1613,7 +1613,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14850', + _id: '14850', to: '1023', }, { @@ -1621,7 +1621,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14852', + _id: '14852', to: '1024', }, { @@ -1629,7 +1629,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14848', + _id: '14848', to: '1022', }, { @@ -1637,7 +1637,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14844', + _id: '14844', to: '1020', }, { @@ -1645,7 +1645,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14842', + _id: '14842', to: '1019', }, { @@ -1653,7 +1653,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14862', + _id: '14862', to: '1029', }, { @@ -1661,7 +1661,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14894', + _id: '14894', to: '1045', }, { @@ -1669,7 +1669,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14906', + _id: '14906', to: '1051', }, { @@ -1677,7 +1677,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14936', + _id: '14936', to: '1066', }, { @@ -1685,7 +1685,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14868', + _id: '14868', to: '1032', }, { @@ -1693,7 +1693,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14822', + _id: '14822', to: '1009', }, { @@ -1701,7 +1701,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14932', + _id: '14932', to: '1064', }, { @@ -1709,7 +1709,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14824', + _id: '14824', to: '1010', }, { @@ -1717,7 +1717,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14912', + _id: '14912', to: '1054', }, { @@ -1725,7 +1725,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14930', + _id: '14930', to: '1063', }, { @@ -1733,7 +1733,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14802', + _id: '14802', to: '999', }, { @@ -1741,7 +1741,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14886', + _id: '14886', to: '1041', }, { @@ -1749,7 +1749,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14814', + _id: '14814', to: '1005', }, { @@ -1757,7 +1757,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14934', + _id: '14934', to: '1065', }, { @@ -1765,7 +1765,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14806', + _id: '14806', to: '1001', }, { @@ -1773,7 +1773,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14800', + _id: '14800', to: '998', }, { @@ -1781,7 +1781,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14838', + _id: '14838', to: '1017', }, { @@ -1789,7 +1789,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14878', + _id: '14878', to: '1037', }, { @@ -1797,7 +1797,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14914', + _id: '14914', to: '1055', }, { @@ -1805,7 +1805,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14928', + _id: '14928', to: '1062', }, { @@ -1813,7 +1813,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14938', + _id: '14938', to: '1067', }, { @@ -1821,7 +1821,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14854', + _id: '14854', to: '1025', }, { @@ -1829,7 +1829,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14944', + _id: '14944', to: '1070', }, { @@ -1837,7 +1837,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14918', + _id: '14918', to: '1057', }, { @@ -1845,7 +1845,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14796', + _id: '14796', to: '996', }, { @@ -1853,7 +1853,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14812', + _id: '14812', to: '1004', }, { @@ -1861,7 +1861,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14876', + _id: '14876', to: '1036', }, { @@ -1869,7 +1869,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14910', + _id: '14910', to: '1053', }, { @@ -1877,7 +1877,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14888', + _id: '14888', to: '1042', }, { @@ -1885,7 +1885,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14926', + _id: '14926', to: '1061', }, { @@ -1893,7 +1893,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14828', + _id: '14828', to: '1012', }, { @@ -1901,7 +1901,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14832', + _id: '14832', to: '1014', }, { @@ -1909,7 +1909,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14870', + _id: '14870', to: '1033', }, { @@ -1917,7 +1917,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14798', + _id: '14798', to: '997', }, { @@ -1925,7 +1925,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14922', + _id: '14922', to: '1059', }, { @@ -1933,7 +1933,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14940', + _id: '14940', to: '1068', }, { @@ -1941,7 +1941,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14880', + _id: '14880', to: '1038', }, { @@ -1949,7 +1949,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14890', + _id: '14890', to: '1043', }, { @@ -1957,7 +1957,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14826', + _id: '14826', to: '1011', }, { @@ -1965,7 +1965,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14920', + _id: '14920', to: '1058', }, { @@ -1973,7 +1973,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14916', + _id: '14916', to: '1056', }, { @@ -1981,7 +1981,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '223', - id: '14816', + _id: '14816', to: '1006', }, { @@ -1989,7 +1989,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { Type: 'IS_COUNTRY', }, from: '224', - id: '15028', + _id: '15028', to: '1112', }, ], @@ -1999,7 +1999,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { labels: ['COUNTRY'], name: 'Afghanistan', }, - id: '219', + _id: '219', }, { attributes: { @@ -2008,7 +2008,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '855', + _id: '855', }, { attributes: { @@ -2017,7 +2017,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '883', + _id: '883', }, { attributes: { @@ -2026,7 +2026,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '877', + _id: '877', }, { attributes: { @@ -2035,7 +2035,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '824', + _id: '824', }, { attributes: { @@ -2044,7 +2044,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '889', + _id: '889', }, { attributes: { @@ -2053,7 +2053,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '847', + _id: '847', }, { attributes: { @@ -2062,7 +2062,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '861', + _id: '861', }, { attributes: { @@ -2071,7 +2071,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '898', + _id: '898', }, { attributes: { @@ -2080,7 +2080,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '834', + _id: '834', }, { attributes: { @@ -2089,7 +2089,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '858', + _id: '858', }, { attributes: { @@ -2098,7 +2098,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '888', + _id: '888', }, { attributes: { @@ -2107,7 +2107,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '900', + _id: '900', }, { attributes: { @@ -2116,7 +2116,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '860', + _id: '860', }, { attributes: { @@ -2125,7 +2125,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '862', + _id: '862', }, { attributes: { @@ -2134,7 +2134,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '891', + _id: '891', }, { attributes: { @@ -2143,7 +2143,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '828', + _id: '828', }, { attributes: { @@ -2152,7 +2152,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '851', + _id: '851', }, { attributes: { @@ -2161,7 +2161,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '882', + _id: '882', }, { attributes: { @@ -2170,7 +2170,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '897', + _id: '897', }, { attributes: { @@ -2179,7 +2179,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nThe life expectancy in Afghanistan was impacted by various factors during the period of 1980 to 1989. Here are some of the factors that played a significant role:\n\n1. Soviet-Afghan War: The Soviet-Afghan War lasted from 1979 to 1989 and resulted in significant casualties and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Refugee crisis: The conflict in Afghanistan caused a massive refugee crisis, with millions of Afghans fleeing to neighboring countries such as Pakistan and Iran. The conditions in refugee camps were often poor, with limited access to basic necessities such as food, water, and medical care.\n\n3. Economic instability: Afghanistan's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Political instability: Afghanistan was also facing political instability during this time, with various factions competing for power. The resulting violence and instability had a severe impact on public health and safety.\n\n5. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were widespread in Afghanistan during this period, partly due to the breakdown of health services and poor living conditions.\n\nOverall, the combination of war, refugee crisis, economic instability, political instability, and infectious diseases had a significant impact on life expectancy in Afghanistan during the period from 1980 to 1989. The situation was further exacerbated by limited access to healthcare and other basic services, as well as the disruption of infrastructure and social systems.", type: 'valley', }, - id: '901', + _id: '901', }, { attributes: { @@ -2188,7 +2188,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '867', + _id: '867', }, { attributes: { @@ -2197,7 +2197,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '854', + _id: '854', }, { attributes: { @@ -2206,7 +2206,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '878', + _id: '878', }, { attributes: { @@ -2215,7 +2215,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '839', + _id: '839', }, { attributes: { @@ -2224,7 +2224,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '859', + _id: '859', }, { attributes: { @@ -2233,7 +2233,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '871', + _id: '871', }, { attributes: { @@ -2242,7 +2242,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '837', + _id: '837', }, { attributes: { @@ -2251,7 +2251,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '884', + _id: '884', }, { attributes: { @@ -2260,7 +2260,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '850', + _id: '850', }, { attributes: { @@ -2269,7 +2269,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '830', + _id: '830', }, { attributes: { @@ -2278,7 +2278,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '853', + _id: '853', }, { attributes: { @@ -2287,7 +2287,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '879', + _id: '879', }, { attributes: { @@ -2296,7 +2296,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '874', + _id: '874', }, { attributes: { @@ -2305,7 +2305,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '894', + _id: '894', }, { attributes: { @@ -2314,7 +2314,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '846', + _id: '846', }, { attributes: { @@ -2323,7 +2323,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '876', + _id: '876', }, { attributes: { @@ -2332,7 +2332,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '881', + _id: '881', }, { attributes: { @@ -2341,7 +2341,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '895', + _id: '895', }, { attributes: { @@ -2350,7 +2350,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '856', + _id: '856', }, { attributes: { @@ -2359,7 +2359,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '886', + _id: '886', }, { attributes: { @@ -2368,7 +2368,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '880', + _id: '880', }, { attributes: { @@ -2377,7 +2377,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '848', + _id: '848', }, { attributes: { @@ -2386,7 +2386,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '868', + _id: '868', }, { attributes: { @@ -2395,7 +2395,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '844', + _id: '844', }, { attributes: { @@ -2404,7 +2404,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '833', + _id: '833', }, { attributes: { @@ -2413,7 +2413,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nThe life expectancy in Afghanistan was impacted by various factors during the period of 1980 to 1989. Here are some of the factors that played a significant role:\n\n1. Soviet-Afghan War: The Soviet-Afghan War lasted from 1979 to 1989 and resulted in significant casualties and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Refugee crisis: The conflict in Afghanistan caused a massive refugee crisis, with millions of Afghans fleeing to neighboring countries such as Pakistan and Iran. The conditions in refugee camps were often poor, with limited access to basic necessities such as food, water, and medical care.\n\n3. Economic instability: Afghanistan's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Political instability: Afghanistan was also facing political instability during this time, with various factions competing for power. The resulting violence and instability had a severe impact on public health and safety.\n\n5. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were widespread in Afghanistan during this period, partly due to the breakdown of health services and poor living conditions.\n\nOverall, the combination of war, refugee crisis, economic instability, political instability, and infectious diseases had a significant impact on life expectancy in Afghanistan during the period from 1980 to 1989. The situation was further exacerbated by limited access to healthcare and other basic services, as well as the disruption of infrastructure and social systems.", type: 'valley', }, - id: '902', + _id: '902', }, { attributes: { @@ -2422,7 +2422,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '827', + _id: '827', }, { attributes: { @@ -2431,7 +2431,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '857', + _id: '857', }, { attributes: { @@ -2440,7 +2440,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '890', + _id: '890', }, { attributes: { @@ -2449,7 +2449,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '835', + _id: '835', }, { attributes: { @@ -2458,7 +2458,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '873', + _id: '873', }, { attributes: { @@ -2467,7 +2467,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '829', + _id: '829', }, { attributes: { @@ -2476,7 +2476,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '866', + _id: '866', }, { attributes: { @@ -2485,7 +2485,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '865', + _id: '865', }, { attributes: { @@ -2494,7 +2494,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '872', + _id: '872', }, { attributes: { @@ -2503,7 +2503,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '869', + _id: '869', }, { attributes: { @@ -2512,7 +2512,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '863', + _id: '863', }, { attributes: { @@ -2521,7 +2521,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '841', + _id: '841', }, { attributes: { @@ -2530,7 +2530,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '875', + _id: '875', }, { attributes: { @@ -2539,7 +2539,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '899', + _id: '899', }, { attributes: { @@ -2548,7 +2548,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '892', + _id: '892', }, { attributes: { @@ -2557,7 +2557,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '840', + _id: '840', }, { attributes: { @@ -2566,7 +2566,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '849', + _id: '849', }, { attributes: { @@ -2575,7 +2575,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '825', + _id: '825', }, { attributes: { @@ -2584,7 +2584,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '836', + _id: '836', }, { attributes: { @@ -2593,7 +2593,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '842', + _id: '842', }, { attributes: { @@ -2602,7 +2602,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '843', + _id: '843', }, { attributes: { @@ -2611,7 +2611,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '831', + _id: '831', }, { attributes: { @@ -2620,7 +2620,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '852', + _id: '852', }, { attributes: { @@ -2629,7 +2629,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '885', + _id: '885', }, { attributes: { @@ -2638,7 +2638,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '838', + _id: '838', }, { attributes: { @@ -2647,7 +2647,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '870', + _id: '870', }, { attributes: { @@ -2656,7 +2656,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '832', + _id: '832', }, { attributes: { @@ -2665,7 +2665,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '887', + _id: '887', }, { attributes: { @@ -2674,7 +2674,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '864', + _id: '864', }, { attributes: { @@ -2683,7 +2683,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '826', + _id: '826', }, { attributes: { @@ -2692,7 +2692,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '893', + _id: '893', }, { attributes: { @@ -2701,7 +2701,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '896', + _id: '896', }, { attributes: { @@ -2710,14 +2710,14 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nUnfortunately, there is not much reliable data available on life expectancy in Afghanistan during the period from 1912 to 1924. However, it is known that Afghanistan was a relatively isolated country during this time, with a largely agrarian economy and limited access to modern medical technology.\n\nVarious factors likely influenced life expectancy in Afghanistan during this period, including:\n\n1. Health care: Access to modern medical care was limited, and traditional healing methods were often used instead. The country's infrastructure was also underdeveloped, with few hospitals or clinics outside of major urban centers.\n\n2. Nutrition: Malnutrition was common, particularly in rural areas where food shortages were common.\n\n3. Disease: Infectious diseases such as cholera, tuberculosis, and smallpox were widespread and often deadly.\n\n4. War and conflict: Afghanistan was frequently beset by internal conflicts and invasions by foreign powers during this period, which likely took a toll on public health and safety.\n\n5. Poverty: Afghanistan was one of the poorest countries in the world during this time, with a large portion of the population living in extreme poverty.\n\nOverall, it is likely that a combination of these factors contributed to the relatively low life expectancy in Afghanistan during the early 20th century. However, without more detailed data it is difficult to determine the specific impacts of each factor.", type: 'valley', }, - id: '845', + _id: '845', }, { attributes: { labels: ['COUNTRY'], name: 'Albania', }, - id: '220', + _id: '220', }, { attributes: { @@ -2726,7 +2726,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '923', + _id: '923', }, { attributes: { @@ -2735,7 +2735,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '925', + _id: '925', }, { attributes: { @@ -2744,7 +2744,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '976', + _id: '976', }, { attributes: { @@ -2753,7 +2753,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '947', + _id: '947', }, { attributes: { @@ -2762,7 +2762,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '950', + _id: '950', }, { attributes: { @@ -2771,7 +2771,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '971', + _id: '971', }, { attributes: { @@ -2780,7 +2780,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '918', + _id: '918', }, { attributes: { @@ -2789,7 +2789,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '964', + _id: '964', }, { attributes: { @@ -2798,7 +2798,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '911', + _id: '911', }, { attributes: { @@ -2807,7 +2807,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '963', + _id: '963', }, { attributes: { @@ -2816,7 +2816,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '940', + _id: '940', }, { attributes: { @@ -2825,7 +2825,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '931', + _id: '931', }, { attributes: { @@ -2834,7 +2834,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes during the period from 1935 to 1949, which likely had an impact on life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. World War II: Albania was occupied by Italy and later Germany during World War II, which led to significant destruction of infrastructure and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Communist regime: After World War II, Albania came under communist rule, which led to significant changes in the country's social and economic systems. While the communist government invested in healthcare and education, the country also experienced political repression and economic isolation, which could have affected life expectancy.\n\n3. Economic instability: Albania's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were still widespread in Albania during this period, partly due to the breakdown of health services and poor living conditions.\n\n5. Health care: Albania's healthcare system improved during this period, with the communist government investing in healthcare infrastructure and training more healthcare professionals. However, access to healthcare was still limited in many rural areas, and healthcare quality varied widely.\n\nOverall, the combination of war, communist rule, economic instability, infectious diseases, and healthcare challenges likely had an impact on life expectancy in Albania during the period from 1935 to 1949. The specific impacts of each factor are difficult to determine without more detailed data.", type: 'peak', }, - id: '981', + _id: '981', }, { attributes: { @@ -2843,7 +2843,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '903', + _id: '903', }, { attributes: { @@ -2852,7 +2852,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '936', + _id: '936', }, { attributes: { @@ -2861,7 +2861,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '914', + _id: '914', }, { attributes: { @@ -2870,7 +2870,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '952', + _id: '952', }, { attributes: { @@ -2879,7 +2879,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '906', + _id: '906', }, { attributes: { @@ -2888,7 +2888,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '909', + _id: '909', }, { attributes: { @@ -2897,7 +2897,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '954', + _id: '954', }, { attributes: { @@ -2906,7 +2906,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '967', + _id: '967', }, { attributes: { @@ -2915,7 +2915,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '907', + _id: '907', }, { attributes: { @@ -2924,7 +2924,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '968', + _id: '968', }, { attributes: { @@ -2933,7 +2933,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '974', + _id: '974', }, { attributes: { @@ -2942,7 +2942,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '949', + _id: '949', }, { attributes: { @@ -2951,7 +2951,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '920', + _id: '920', }, { attributes: { @@ -2960,7 +2960,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '979', + _id: '979', }, { attributes: { @@ -2969,7 +2969,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '912', + _id: '912', }, { attributes: { @@ -2978,7 +2978,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '970', + _id: '970', }, { attributes: { @@ -2987,7 +2987,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes during the period from 1935 to 1949, which likely had an impact on life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. World War II: Albania was occupied by Italy and later Germany during World War II, which led to significant destruction of infrastructure and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Communist regime: After World War II, Albania came under communist rule, which led to significant changes in the country's social and economic systems. While the communist government invested in healthcare and education, the country also experienced political repression and economic isolation, which could have affected life expectancy.\n\n3. Economic instability: Albania's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were still widespread in Albania during this period, partly due to the breakdown of health services and poor living conditions.\n\n5. Health care: Albania's healthcare system improved during this period, with the communist government investing in healthcare infrastructure and training more healthcare professionals. However, access to healthcare was still limited in many rural areas, and healthcare quality varied widely.\n\nOverall, the combination of war, communist rule, economic instability, infectious diseases, and healthcare challenges likely had an impact on life expectancy in Albania during the period from 1935 to 1949. The specific impacts of each factor are difficult to determine without more detailed data.", type: 'peak', }, - id: '980', + _id: '980', }, { attributes: { @@ -2996,7 +2996,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '972', + _id: '972', }, { attributes: { @@ -3005,7 +3005,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '921', + _id: '921', }, { attributes: { @@ -3014,7 +3014,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '945', + _id: '945', }, { attributes: { @@ -3023,7 +3023,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '930', + _id: '930', }, { attributes: { @@ -3032,7 +3032,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '961', + _id: '961', }, { attributes: { @@ -3041,7 +3041,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '929', + _id: '929', }, { attributes: { @@ -3050,7 +3050,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '919', + _id: '919', }, { attributes: { @@ -3059,7 +3059,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '938', + _id: '938', }, { attributes: { @@ -3068,7 +3068,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '959', + _id: '959', }, { attributes: { @@ -3077,7 +3077,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '973', + _id: '973', }, { attributes: { @@ -3086,7 +3086,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '904', + _id: '904', }, { attributes: { @@ -3095,7 +3095,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '916', + _id: '916', }, { attributes: { @@ -3104,7 +3104,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '915', + _id: '915', }, { attributes: { @@ -3113,7 +3113,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '953', + _id: '953', }, { attributes: { @@ -3122,7 +3122,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '908', + _id: '908', }, { attributes: { @@ -3131,7 +3131,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '933', + _id: '933', }, { attributes: { @@ -3140,7 +3140,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '924', + _id: '924', }, { attributes: { @@ -3149,7 +3149,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '926', + _id: '926', }, { attributes: { @@ -3158,7 +3158,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '910', + _id: '910', }, { attributes: { @@ -3167,7 +3167,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '935', + _id: '935', }, { attributes: { @@ -3176,7 +3176,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '951', + _id: '951', }, { attributes: { @@ -3185,7 +3185,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '937', + _id: '937', }, { attributes: { @@ -3194,7 +3194,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '962', + _id: '962', }, { attributes: { @@ -3203,7 +3203,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '932', + _id: '932', }, { attributes: { @@ -3212,7 +3212,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '969', + _id: '969', }, { attributes: { @@ -3221,7 +3221,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '955', + _id: '955', }, { attributes: { @@ -3230,7 +3230,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '942', + _id: '942', }, { attributes: { @@ -3239,7 +3239,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '956', + _id: '956', }, { attributes: { @@ -3248,7 +3248,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '943', + _id: '943', }, { attributes: { @@ -3257,7 +3257,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '934', + _id: '934', }, { attributes: { @@ -3266,7 +3266,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '965', + _id: '965', }, { attributes: { @@ -3275,7 +3275,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '960', + _id: '960', }, { attributes: { @@ -3284,7 +3284,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '978', + _id: '978', }, { attributes: { @@ -3293,7 +3293,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '913', + _id: '913', }, { attributes: { @@ -3302,7 +3302,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '966', + _id: '966', }, { attributes: { @@ -3311,7 +3311,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '941', + _id: '941', }, { attributes: { @@ -3320,7 +3320,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '939', + _id: '939', }, { attributes: { @@ -3329,7 +3329,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes during the period from 1942 to 1949, which likely had an impact on life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. World War II: Albania was occupied by Italy and later Germany during World War II, which led to significant destruction of infrastructure and displacement of civilians. The war had a severe impact on public health, with widespread disruption of health services, lack of access to clean water and sanitation facilities, and increased exposure to infectious diseases.\n\n2. Communist regime: After World War II, Albania came under communist rule, which led to significant changes in the country's social and economic systems. While the communist government invested in healthcare and education, the country also experienced political repression and economic isolation, which could have affected life expectancy.\n\n3. Economic instability: Albania's economy was unstable during this period, with frequent droughts, low agricultural yields, and limited access to trade and investment. Poverty was widespread, and many people lacked access to basic necessities such as food, shelter, and healthcare.\n\n4. Infectious diseases: Infectious diseases such as tuberculosis, cholera, and malaria were still widespread in Albania during this period, partly due to the breakdown of health services and poor living conditions.\n\n5. Health care: Albania's healthcare system improved during this period, with the communist government investing in healthcare infrastructure and training more healthcare professionals. However, access to healthcare was still limited in many rural areas, and healthcare quality varied widely.\n\n6. Repression and political violence: The communist government of Albania engaged in political repression, including the execution of political opponents and imprisonment of those deemed to be dissidents. This repression could have led to increased mortality and reduced life expectancy.\n\nOverall, the combination of war, communist rule, economic instability, infectious diseases, healthcare challenges, and political repression likely had an impact on life expectancy in Albania during the period from 1942 to 1949. The specific impacts of each factor are difficult to determine without more detailed data.", type: 'valley', }, - id: '982', + _id: '982', }, { attributes: { @@ -3338,7 +3338,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '977', + _id: '977', }, { attributes: { @@ -3347,7 +3347,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '948', + _id: '948', }, { attributes: { @@ -3356,7 +3356,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '958', + _id: '958', }, { attributes: { @@ -3365,7 +3365,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '957', + _id: '957', }, { attributes: { @@ -3374,7 +3374,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '944', + _id: '944', }, { attributes: { @@ -3383,7 +3383,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '905', + _id: '905', }, { attributes: { @@ -3392,7 +3392,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '927', + _id: '927', }, { attributes: { @@ -3401,7 +3401,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '928', + _id: '928', }, { attributes: { @@ -3410,7 +3410,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '946', + _id: '946', }, { attributes: { @@ -3419,7 +3419,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '917', + _id: '917', }, { attributes: { @@ -3428,7 +3428,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '975', + _id: '975', }, { attributes: { @@ -3437,14 +3437,14 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nAlbania underwent significant changes and faced several challenges during the period from 1912 to 1924, which likely impacted life expectancy in the country. Here are some of the factors that could have affected life expectancy in Albania during this period:\n\n1. War and conflict: Albania was embroiled in a series of conflicts during this period, including the Balkan Wars, World War I, and internal political struggles. These conflicts led to displacement, disruption of infrastructure, and increased mortality due to injuries and illnesses.\n\n2. Disease and epidemics: Albania experienced several epidemics during this period, including outbreaks of cholera and typhus. These diseases were difficult to control, as public health measures were underdeveloped and the country lacked access to modern medical technology.\n\n3. Poverty and malnutrition: Albania was one of the poorest countries in Europe during this period, with widespread poverty and malnutrition. These factors contributed to poor health outcomes and increased mortality, particularly among vulnerable populations such as children and the elderly.\n\n4. Access to healthcare: Albania's healthcare system was underdeveloped during this period, with limited access to medical facilities and trained healthcare professionals. This lack of access to healthcare likely contributed to increased morbidity and mortality from preventable illnesses and injuries.\n\n5. Environmental factors: Albania's mountainous terrain and rural areas presented challenges for infrastructure development and access to basic necessities such as clean water and sanitation facilities. These environmental factors may have contributed to the spread of disease and increased mortality rates.\n\nOverall, the combination of war, disease, poverty, limited access to healthcare, and environmental factors likely had a significant impact on life expectancy in Albania during the period from 1912 to 1924. However, due to the lack of reliable data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '922', + _id: '922', }, { attributes: { labels: ['COUNTRY'], name: 'Algeria', }, - id: '221', + _id: '221', }, { attributes: { @@ -3453,7 +3453,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1912 to 1927 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1912 to 1927. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '990', + _id: '990', }, { attributes: { @@ -3462,7 +3462,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "\n\nData on life expectancy in Algeria during the period from 1844 to 1855 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: In 1830, France invaded and occupied Algeria, which led to significant changes in the country's social and economic systems. The French colonization led to large-scale displacement of the local population, and many Algerians were forced to work in difficult and dangerous conditions. This could have had an impact on life expectancy.\n\n2. War and conflict: Algeria experienced several periods of conflict during this period, including the French conquest of Algeria, which lasted until 1847. These conflicts led to significant loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, plague, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\nOverall, the combination of French colonization, war and conflict, infectious diseases, limited access to healthcare, and poor nutrition could have impacted life expectancy in Algeria during the period from 1844 to 1855. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '983', + _id: '983', }, { attributes: { @@ -3471,7 +3471,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1920 to 1933 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I aftermath: The aftermath of World War I, including the Treaty of Versailles, led to significant changes in the political and economic systems of Europe, which could have impacted Algeria and its population.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I aftermath, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1920 to 1933. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'peak', }, - id: '991', + _id: '991', }, { attributes: { @@ -3480,7 +3480,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1907 to 1919 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1907 to 1919. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'peak', }, - id: '988', + _id: '988', }, { attributes: { @@ -3489,7 +3489,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1907 to 1919 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1907 to 1919. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'peak', }, - id: '986', + _id: '986', }, { attributes: { @@ -3498,7 +3498,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1902 to 1910 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. War and conflict: Algeria experienced several periods of conflict during this period, including the Second Moroccan Crisis in 1905, which led to significant loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Urbanization and industrialization: Algeria underwent significant urbanization and industrialization during this period, which could have both positive and negative impacts on life expectancy. While the growth of urban areas could have led to improvements in healthcare and access to resources, it could also have increased exposure to environmental hazards and contributed to poor living conditions.\n\nOverall, the combination of French colonization, war and conflict, infectious diseases, limited access to healthcare, poor nutrition, and urbanization and industrialization could have impacted life expectancy in Algeria during the period from 1902 to 1910. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '985', + _id: '985', }, { attributes: { @@ -3507,7 +3507,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1912 to 1927 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1912 to 1927. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '989', + _id: '989', }, { attributes: { @@ -3516,7 +3516,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1937 to 1948 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. World War II: Algeria, as a French colony, was involved in World War II, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n2. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of World War II, French colonization, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1937 to 1948. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'peak', }, - id: '993', + _id: '993', }, { attributes: { @@ -3525,7 +3525,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1863 to 1874 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was under French colonial rule during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. War and conflict: Algeria experienced several periods of conflict during this period, including the Mokrani Revolt in 1871, which led to significant loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, war and conflict, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1863 to 1874. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '984', + _id: '984', }, { attributes: { @@ -3534,7 +3534,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1907 to 1919 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. World War I: Algeria, as a French colony, was involved in World War I, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of French colonization, World War I, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1907 to 1919. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'peak', }, - id: '987', + _id: '987', }, { attributes: { @@ -3543,14 +3543,14 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Algeria during the period from 1937 to 1948 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. World War II: Algeria, as a French colony, was involved in World War II, and the conflict likely led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\n2. French colonization: Algeria was still under French colonial rule during this period, and the colonial authorities continued to implement significant changes to the country's social and economic systems. This included the introduction of new infrastructure and economic development projects, but also included forced labor, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n3. Infectious diseases: Algeria was still affected by a range of infectious diseases during this period, including cholera, typhoid fever, and tuberculosis, which could have impacted life expectancy.\n\n4. Limited access to healthcare: Healthcare services were limited in Algeria during this period, and many people lacked access to basic healthcare services.\n\n5. Nutrition: Poor nutrition and food insecurity were also common in Algeria during this period, which could have contributed to lower life expectancy.\n\n6. Economic changes: The introduction of new economic policies and infrastructure projects under French colonial rule could have had both positive and negative impacts on life expectancy, depending on the specific context and implementation of these changes.\n\nOverall, the combination of World War II, French colonization, infectious diseases, limited access to healthcare, poor nutrition, and economic changes could have impacted life expectancy in Algeria during the period from 1937 to 1948. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'peak', }, - id: '992', + _id: '992', }, { attributes: { labels: ['COUNTRY'], name: 'Angola', }, - id: '223', + _id: '223', }, { attributes: { @@ -3559,7 +3559,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1031', + _id: '1031', }, { attributes: { @@ -3568,7 +3568,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1048', + _id: '1048', }, { attributes: { @@ -3577,7 +3577,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1026', + _id: '1026', }, { attributes: { @@ -3586,7 +3586,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1018', + _id: '1018', }, { attributes: { @@ -3595,7 +3595,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1069', + _id: '1069', }, { attributes: { @@ -3604,7 +3604,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1050', + _id: '1050', }, { attributes: { @@ -3613,7 +3613,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1016', + _id: '1016', }, { attributes: { @@ -3622,7 +3622,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1035', + _id: '1035', }, { attributes: { @@ -3631,7 +3631,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1003', + _id: '1003', }, { attributes: { @@ -3640,7 +3640,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1027', + _id: '1027', }, { attributes: { @@ -3649,7 +3649,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1034', + _id: '1034', }, { attributes: { @@ -3658,7 +3658,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1021', + _id: '1021', }, { attributes: { @@ -3667,7 +3667,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1002', + _id: '1002', }, { attributes: { @@ -3676,7 +3676,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1028', + _id: '1028', }, { attributes: { @@ -3685,7 +3685,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1000', + _id: '1000', }, { attributes: { @@ -3694,7 +3694,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1008', + _id: '1008', }, { attributes: { @@ -3703,7 +3703,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1040', + _id: '1040', }, { attributes: { @@ -3712,7 +3712,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1046', + _id: '1046', }, { attributes: { @@ -3721,7 +3721,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1039', + _id: '1039', }, { attributes: { @@ -3730,7 +3730,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1007', + _id: '1007', }, { attributes: { @@ -3739,7 +3739,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '995', + _id: '995', }, { attributes: { @@ -3748,7 +3748,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1013', + _id: '1013', }, { attributes: { @@ -3757,7 +3757,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1049', + _id: '1049', }, { attributes: { @@ -3766,7 +3766,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1052', + _id: '1052', }, { attributes: { @@ -3775,7 +3775,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '994', + _id: '994', }, { attributes: { @@ -3784,7 +3784,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1015', + _id: '1015', }, { attributes: { @@ -3793,7 +3793,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1047', + _id: '1047', }, { attributes: { @@ -3802,7 +3802,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1060', + _id: '1060', }, { attributes: { @@ -3811,7 +3811,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1030', + _id: '1030', }, { attributes: { @@ -3820,7 +3820,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1044', + _id: '1044', }, { attributes: { @@ -3829,7 +3829,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1023', + _id: '1023', }, { attributes: { @@ -3838,7 +3838,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1024', + _id: '1024', }, { attributes: { @@ -3847,7 +3847,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1022', + _id: '1022', }, { attributes: { @@ -3856,7 +3856,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1020', + _id: '1020', }, { attributes: { @@ -3865,7 +3865,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1019', + _id: '1019', }, { attributes: { @@ -3874,7 +3874,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1029', + _id: '1029', }, { attributes: { @@ -3883,7 +3883,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1045', + _id: '1045', }, { attributes: { @@ -3892,7 +3892,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1051', + _id: '1051', }, { attributes: { @@ -3901,7 +3901,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1066', + _id: '1066', }, { attributes: { @@ -3910,7 +3910,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1032', + _id: '1032', }, { attributes: { @@ -3919,7 +3919,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1009', + _id: '1009', }, { attributes: { @@ -3928,7 +3928,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1064', + _id: '1064', }, { attributes: { @@ -3937,7 +3937,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1010', + _id: '1010', }, { attributes: { @@ -3946,7 +3946,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1054', + _id: '1054', }, { attributes: { @@ -3955,7 +3955,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1063', + _id: '1063', }, { attributes: { @@ -3964,7 +3964,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '999', + _id: '999', }, { attributes: { @@ -3973,7 +3973,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1041', + _id: '1041', }, { attributes: { @@ -3982,7 +3982,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1005', + _id: '1005', }, { attributes: { @@ -3991,7 +3991,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1065', + _id: '1065', }, { attributes: { @@ -4000,7 +4000,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1001', + _id: '1001', }, { attributes: { @@ -4009,7 +4009,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '998', + _id: '998', }, { attributes: { @@ -4018,7 +4018,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1017', + _id: '1017', }, { attributes: { @@ -4027,7 +4027,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1037', + _id: '1037', }, { attributes: { @@ -4036,7 +4036,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1055', + _id: '1055', }, { attributes: { @@ -4045,7 +4045,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1062', + _id: '1062', }, { attributes: { @@ -4054,7 +4054,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1067', + _id: '1067', }, { attributes: { @@ -4063,7 +4063,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1025', + _id: '1025', }, { attributes: { @@ -4072,7 +4072,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1070', + _id: '1070', }, { attributes: { @@ -4081,7 +4081,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1057', + _id: '1057', }, { attributes: { @@ -4090,7 +4090,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '996', + _id: '996', }, { attributes: { @@ -4099,7 +4099,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1004', + _id: '1004', }, { attributes: { @@ -4108,7 +4108,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1036', + _id: '1036', }, { attributes: { @@ -4117,7 +4117,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1053', + _id: '1053', }, { attributes: { @@ -4126,7 +4126,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1042', + _id: '1042', }, { attributes: { @@ -4135,7 +4135,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1061', + _id: '1061', }, { attributes: { @@ -4144,7 +4144,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1012', + _id: '1012', }, { attributes: { @@ -4153,7 +4153,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1014', + _id: '1014', }, { attributes: { @@ -4162,7 +4162,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1033', + _id: '1033', }, { attributes: { @@ -4171,7 +4171,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '997', + _id: '997', }, { attributes: { @@ -4180,7 +4180,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1059', + _id: '1059', }, { attributes: { @@ -4189,7 +4189,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1068', + _id: '1068', }, { attributes: { @@ -4198,7 +4198,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1038', + _id: '1038', }, { attributes: { @@ -4207,7 +4207,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1043', + _id: '1043', }, { attributes: { @@ -4216,7 +4216,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1011', + _id: '1011', }, { attributes: { @@ -4225,7 +4225,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1058', + _id: '1058', }, { attributes: { @@ -4234,7 +4234,7 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1056', + _id: '1056', }, { attributes: { @@ -4243,14 +4243,14 @@ export const mockLargeQueryResults: GraphQueryResultFromBackend = { text: "Data on life expectancy in Angola during the period from 1912 to 1924 is limited, but there were several factors that could have impacted life expectancy during this time:\n\n1. Portuguese colonization: Angola was a colony of Portugal during this period, and the colonial authorities implemented significant changes to the country's social and economic systems. This included the forced labor of Angolan people, displacement of local populations, and political repression, which could have impacted life expectancy.\n\n2. Infectious diseases: Angola was affected by a range of infectious diseases during this period, including malaria, yellow fever, and smallpox, which could have impacted life expectancy.\n\n3. Limited access to healthcare: Healthcare services were limited in Angola during this period, and many people lacked access to basic healthcare services.\n\n4. Nutrition: Poor nutrition and food insecurity were also common in Angola during this period, which could have contributed to lower life expectancy.\n\n5. Violence and conflicts: Angola experienced several conflicts and wars during this period, including the first and second Chimurenga, which could have led to loss of life and displacement of civilians, which could have impacted life expectancy.\n\nOverall, the combination of Portuguese colonization, infectious diseases, limited access to healthcare, poor nutrition, and conflicts and wars could have impacted life expectancy in Angola during the period from 1912 to 1924. However, due to limited data, it is difficult to determine the specific impacts of each factor on life expectancy.", type: 'valley', }, - id: '1006', + _id: '1006', }, { attributes: { labels: ['COUNTRY'], name: 'Antigua and Barbuda', }, - id: '224', + _id: '224', }, ], }; diff --git a/libs/shared/lib/mock-data/query-result/recommendationQueryResult.ts b/libs/shared/lib/mock-data/query-result/recommendationQueryResult.ts index 5cb36d507..75c21d669 100644 --- a/libs/shared/lib/mock-data/query-result/recommendationQueryResult.ts +++ b/libs/shared/lib/mock-data/query-result/recommendationQueryResult.ts @@ -15,7 +15,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '28', - id: '39', + _id: '39', to: '15', }, { @@ -23,7 +23,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '36', - id: '47', + _id: '47', to: '29', }, { @@ -31,7 +31,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '45', - id: '59', + _id: '59', to: '37', }, { @@ -39,7 +39,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '72', - id: '109', + _id: '109', to: '81', }, { @@ -47,7 +47,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '109', - id: '144', + _id: '144', to: '105', }, { @@ -55,7 +55,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '6', - id: '161', + _id: '161', to: '116', }, { @@ -63,7 +63,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '5', - id: '160', + _id: '160', to: '116', }, { @@ -71,7 +71,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '6', - id: '172', + _id: '172', to: '121', }, { @@ -79,7 +79,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '5', - id: '171', + _id: '171', to: '121', }, { @@ -87,7 +87,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF Type: 'WROTE', }, from: '156', - id: '224', + _id: '224', to: '154', }, ], @@ -101,7 +101,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF title: 'A Few Good Men', votes: 352, }, - id: '15', + _id: '15', }, { attributes: { @@ -109,7 +109,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF labels: ['Person'], name: 'Aaron Sorkin', }, - id: '28', + _id: '28', }, { attributes: { @@ -119,7 +119,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF title: 'Top Gun', votes: 419, }, - id: '29', + _id: '29', }, { attributes: { @@ -127,7 +127,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF labels: ['Person'], name: 'Jim Cash', }, - id: '36', + _id: '36', }, { attributes: { @@ -137,7 +137,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF title: 'Jerry Maguire', votes: 105, }, - id: '37', + _id: '37', }, { attributes: { @@ -145,7 +145,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF labels: ['Person'], name: 'Cameron Crowe', }, - id: '45', + _id: '45', }, { attributes: { @@ -155,7 +155,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF title: 'When Harry Met Sally', votes: 29, }, - id: '81', + _id: '81', }, { attributes: { @@ -163,7 +163,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF labels: ['Person'], name: 'Nora Ephron', }, - id: '72', + _id: '72', }, { attributes: { @@ -173,7 +173,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF title: 'Cloud Atlas', votes: 108, }, - id: '105', + _id: '105', }, { attributes: { @@ -181,7 +181,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF labels: ['Person'], name: 'David Mitchell', }, - id: '109', + _id: '109', }, { attributes: { @@ -191,7 +191,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF title: 'V for Vendetta', votes: 26, }, - id: '116', + _id: '116', }, { attributes: { @@ -199,7 +199,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF labels: ['Person'], name: 'Lana Wachowski', }, - id: '6', + _id: '6', }, { attributes: { @@ -207,7 +207,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF labels: ['Person'], name: 'Lilly Wachowski', }, - id: '5', + _id: '5', }, { attributes: { @@ -217,7 +217,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF title: 'Speed Racer', votes: 29, }, - id: '121', + _id: '121', }, { attributes: { @@ -226,7 +226,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF title: "Something's Gotta Give", votes: 54, }, - id: '154', + _id: '154', }, { attributes: { @@ -234,7 +234,7 @@ export const recommendationPersonWroteMovieQueryResultPayload: GraphQueryResultF labels: ['Person'], name: 'Nancy Meyers', }, - id: '156', + _id: '156', }, ], }, @@ -252,7 +252,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '7', - id: '6', + _id: '6', to: '0', }, { @@ -260,7 +260,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '7', - id: '14', + _id: '14', to: '9', }, { @@ -268,7 +268,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '7', - id: '21', + _id: '21', to: '10', }, { @@ -276,7 +276,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '45', - id: '58', + _id: '58', to: '37', }, { @@ -284,7 +284,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '72', - id: '108', + _id: '108', to: '81', }, { @@ -292,7 +292,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '27', - id: '107', + _id: '107', to: '81', }, { @@ -300,7 +300,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '110', - id: '145', + _id: '145', to: '105', }, { @@ -308,7 +308,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '6', - id: '158', + _id: '158', to: '116', }, { @@ -316,7 +316,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '5', - id: '157', + _id: '157', to: '116', }, { @@ -324,7 +324,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '7', - id: '159', + _id: '159', to: '116', }, { @@ -332,7 +332,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '7', - id: '173', + _id: '173', to: '121', }, { @@ -340,7 +340,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '6', - id: '180', + _id: '180', to: '128', }, { @@ -348,7 +348,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '7', - id: '181', + _id: '181', to: '128', }, { @@ -356,7 +356,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '5', - id: '179', + _id: '179', to: '128', }, { @@ -364,7 +364,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu Type: 'PRODUCED', }, from: '156', - id: '223', + _id: '223', to: '154', }, ], @@ -375,7 +375,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu labels: ['Person'], name: 'Joel Silver', }, - id: '7', + _id: '7', }, { attributes: { @@ -385,7 +385,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: 'The Matrix', votes: 4928, }, - id: '0', + _id: '0', }, { attributes: { @@ -395,7 +395,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: 'The Matrix Reloaded', votes: 1457, }, - id: '9', + _id: '9', }, { attributes: { @@ -405,7 +405,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: 'The Matrix Revolutions', votes: 1168, }, - id: '10', + _id: '10', }, { attributes: { @@ -413,7 +413,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu labels: ['Person'], name: 'Cameron Crowe', }, - id: '45', + _id: '45', }, { attributes: { @@ -423,7 +423,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: 'Jerry Maguire', votes: 105, }, - id: '37', + _id: '37', }, { attributes: { @@ -431,7 +431,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu labels: ['Person'], name: 'Nora Ephron', }, - id: '72', + _id: '72', }, { attributes: { @@ -441,7 +441,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: 'When Harry Met Sally', votes: 29, }, - id: '81', + _id: '81', }, { attributes: { @@ -449,7 +449,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu labels: ['Person'], name: 'Rob Reiner', }, - id: '27', + _id: '27', }, { attributes: { @@ -457,7 +457,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu labels: ['Person'], name: 'Stefan Arndt', }, - id: '110', + _id: '110', }, { attributes: { @@ -467,7 +467,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: 'Cloud Atlas', votes: 108, }, - id: '105', + _id: '105', }, { attributes: { @@ -475,7 +475,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu labels: ['Person'], name: 'Lana Wachowski', }, - id: '6', + _id: '6', }, { attributes: { @@ -485,7 +485,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: 'V for Vendetta', votes: 26, }, - id: '116', + _id: '116', }, { attributes: { @@ -493,7 +493,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu labels: ['Person'], name: 'Lilly Wachowski', }, - id: '5', + _id: '5', }, { attributes: { @@ -503,7 +503,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: 'Speed Racer', votes: 29, }, - id: '121', + _id: '121', }, { attributes: { @@ -513,7 +513,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: 'Ninja Assassin', votes: 14, }, - id: '128', + _id: '128', }, { attributes: { @@ -521,7 +521,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu labels: ['Person'], name: 'Nancy Meyers', }, - id: '156', + _id: '156', }, { attributes: { @@ -530,7 +530,7 @@ export const recommendationPersonProducedMovieQueryResultPayload: GraphQueryResu title: "Something's Gotta Give", votes: 54, }, - id: '154', + _id: '154', }, ], }, @@ -549,7 +549,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Emil'], }, from: '8', - id: '7', + _id: '7', to: '0', }, { @@ -558,7 +558,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Agent Smith'], }, from: '4', - id: '3', + _id: '3', to: '0', }, { @@ -567,7 +567,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Morpheus'], }, from: '3', - id: '2', + _id: '2', to: '0', }, { @@ -576,7 +576,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Trinity'], }, from: '2', - id: '1', + _id: '1', to: '0', }, { @@ -585,7 +585,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Neo'], }, from: '1', - id: '0', + _id: '0', to: '0', }, { @@ -594,7 +594,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Agent Smith'], }, from: '4', - id: '11', + _id: '11', to: '9', }, { @@ -603,7 +603,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Morpheus'], }, from: '3', - id: '10', + _id: '10', to: '9', }, { @@ -612,7 +612,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Trinity'], }, from: '2', - id: '9', + _id: '9', to: '9', }, { @@ -621,7 +621,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Neo'], }, from: '1', - id: '8', + _id: '8', to: '9', }, { @@ -630,7 +630,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Agent Smith'], }, from: '4', - id: '18', + _id: '18', to: '10', }, { @@ -639,7 +639,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Morpheus'], }, from: '3', - id: '17', + _id: '17', to: '10', }, { @@ -648,7 +648,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Trinity'], }, from: '2', - id: '16', + _id: '16', to: '10', }, { @@ -657,7 +657,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Neo'], }, from: '1', - id: '15', + _id: '15', to: '10', }, { @@ -666,7 +666,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['John Milton'], }, from: '13', - id: '24', + _id: '24', to: '11', }, { @@ -675,7 +675,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Mary Ann Lomax'], }, from: '12', - id: '23', + _id: '23', to: '11', }, { @@ -684,7 +684,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Kevin Lomax'], }, from: '1', - id: '22', + _id: '22', to: '11', }, { @@ -693,7 +693,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Pfc. Louden Downey'], }, from: '25', - id: '35', + _id: '35', to: '15', }, { @@ -702,7 +702,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Lt. Sam Weinberg'], }, from: '23', - id: '33', + _id: '33', to: '15', }, { @@ -711,7 +711,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Lt. Col. Matthew Andrew Markinson'], }, from: '24', - id: '34', + _id: '34', to: '15', }, { @@ -720,7 +720,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Man in Bar'], }, from: '28', - id: '37', + _id: '37', to: '15', }, { @@ -729,7 +729,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Cpl. Carl Hammaker'], }, from: '22', - id: '32', + _id: '32', to: '15', }, { @@ -738,7 +738,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Dr. Stone'], }, from: '26', - id: '36', + _id: '36', to: '15', }, { @@ -747,7 +747,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Cpl. Jeffrey Barnes'], }, from: '21', - id: '31', + _id: '31', to: '15', }, { @@ -756,7 +756,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Lt. Jonathan Kendrick'], }, from: '20', - id: '30', + _id: '30', to: '15', }, { @@ -765,7 +765,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Capt. Jack Ross'], }, from: '19', - id: '29', + _id: '29', to: '15', }, { @@ -774,7 +774,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Lt. Cdr. JoAnne Galloway'], }, from: '18', - id: '28', + _id: '28', to: '15', }, { @@ -783,7 +783,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Col. Nathan R. Jessup'], }, from: '17', - id: '27', + _id: '27', to: '15', }, { @@ -792,7 +792,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Lt. Daniel Kaffee'], }, from: '16', - id: '26', + _id: '26', to: '15', }, { @@ -801,7 +801,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Iceman'], }, from: '31', - id: '42', + _id: '42', to: '29', }, { @@ -810,7 +810,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Carole'], }, from: '34', - id: '45', + _id: '45', to: '29', }, { @@ -819,7 +819,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Viper'], }, from: '33', - id: '44', + _id: '44', to: '29', }, { @@ -828,7 +828,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Charlie'], }, from: '30', - id: '41', + _id: '41', to: '29', }, { @@ -837,7 +837,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Maverick'], }, from: '16', - id: '40', + _id: '40', to: '29', }, { @@ -846,7 +846,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Goose'], }, from: '32', - id: '43', + _id: '43', to: '29', }, { @@ -855,7 +855,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Frank Cushman'], }, from: '40', - id: '52', + _id: '52', to: '37', }, { @@ -864,7 +864,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Laurel Boyd'], }, from: '42', - id: '54', + _id: '54', to: '37', }, { @@ -873,7 +873,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Bob Sugar'], }, from: '41', - id: '53', + _id: '53', to: '37', }, { @@ -882,7 +882,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Rod Tidwell'], }, from: '22', - id: '49', + _id: '49', to: '37', }, { @@ -891,7 +891,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Ray Boyd'], }, from: '44', - id: '56', + _id: '56', to: '37', }, { @@ -900,7 +900,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Dorothy Boyd'], }, from: '38', - id: '50', + _id: '50', to: '37', }, { @@ -909,7 +909,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Avery Bishop'], }, from: '39', - id: '51', + _id: '51', to: '37', }, { @@ -918,7 +918,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Marcee Tidwell'], }, from: '43', - id: '55', + _id: '55', to: '37', }, { @@ -927,7 +927,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Jerry Maguire'], }, from: '16', - id: '48', + _id: '48', to: '37', }, { @@ -936,7 +936,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Vern Tessio'], }, from: '40', - id: '62', + _id: '62', to: '46', }, { @@ -945,7 +945,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Chris Chambers'], }, from: '47', - id: '61', + _id: '61', to: '46', }, { @@ -954,7 +954,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Mr. Lachance'], }, from: '51', - id: '66', + _id: '66', to: '46', }, { @@ -963,7 +963,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Gordie Lachance'], }, from: '49', - id: '60', + _id: '60', to: '46', }, { @@ -972,7 +972,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Ace Merrill'], }, from: '20', - id: '65', + _id: '65', to: '46', }, { @@ -981,7 +981,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Denny Lachance'], }, from: '50', - id: '64', + _id: '64', to: '46', }, { @@ -990,7 +990,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Teddy Duchamp'], }, from: '48', - id: '63', + _id: '63', to: '46', }, { @@ -999,7 +999,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Carol Connelly'], }, from: '53', - id: '69', + _id: '69', to: '52', }, { @@ -1008,7 +1008,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Melvin Udall'], }, from: '17', - id: '68', + _id: '68', to: '52', }, { @@ -1017,7 +1017,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Frank Sachs'], }, from: '22', - id: '71', + _id: '71', to: '52', }, { @@ -1026,7 +1026,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Simon Bishop'], }, from: '54', - id: '70', + _id: '70', to: '52', }, { @@ -1035,7 +1035,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Chris Nielsen'], }, from: '60', - id: '73', + _id: '73', to: '56', }, { @@ -1044,7 +1044,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Albert Lewis'], }, from: '22', - id: '74', + _id: '74', to: '56', }, { @@ -1053,7 +1053,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['The Tracker'], }, from: '58', - id: '76', + _id: '76', to: '56', }, { @@ -1062,7 +1062,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['The Face'], }, from: '59', - id: '77', + _id: '77', to: '56', }, { @@ -1071,7 +1071,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Annie Collins-Nielsen'], }, from: '57', - id: '75', + _id: '75', to: '56', }, { @@ -1080,7 +1080,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Ishmael Chambers'], }, from: '63', - id: '79', + _id: '79', to: '62', }, { @@ -1089,7 +1089,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Kazuo Miyamoto'], }, from: '64', - id: '80', + _id: '80', to: '62', }, { @@ -1098,7 +1098,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Nels Gudmundsson'], }, from: '58', - id: '81', + _id: '81', to: '62', }, { @@ -1107,7 +1107,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Judge Fielding'], }, from: '65', - id: '82', + _id: '82', to: '62', }, { @@ -1116,7 +1116,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Joe Fox'], }, from: '71', - id: '84', + _id: '84', to: '67', }, { @@ -1125,7 +1125,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Patricia Eden'], }, from: '68', - id: '87', + _id: '87', to: '67', }, { @@ -1134,7 +1134,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Frank Navasky'], }, from: '54', - id: '86', + _id: '86', to: '67', }, { @@ -1143,7 +1143,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Kathleen Kelly'], }, from: '34', - id: '85', + _id: '85', to: '67', }, { @@ -1152,7 +1152,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['George Pappas'], }, from: '70', - id: '89', + _id: '89', to: '67', }, { @@ -1161,7 +1161,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Kevin Jackson'], }, from: '69', - id: '88', + _id: '88', to: '67', }, { @@ -1170,7 +1170,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Annie Reed'], }, from: '34', - id: '92', + _id: '92', to: '73', }, { @@ -1179,7 +1179,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Greg'], }, from: '76', - id: '95', + _id: '95', to: '73', }, { @@ -1188,7 +1188,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Sam Baldwin'], }, from: '71', - id: '91', + _id: '91', to: '73', }, { @@ -1197,7 +1197,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Walter'], }, from: '75', - id: '94', + _id: '94', to: '73', }, { @@ -1206,7 +1206,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Suzy'], }, from: '74', - id: '93', + _id: '93', to: '73', }, { @@ -1215,7 +1215,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Becky'], }, from: '77', - id: '96', + _id: '96', to: '73', }, { @@ -1224,7 +1224,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Joe Banks'], }, from: '71', - id: '98', + _id: '98', to: '78', }, { @@ -1233,7 +1233,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Baw'], }, from: '80', - id: '100', + _id: '100', to: '78', }, { @@ -1242,7 +1242,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['DeDe', 'Angelica Graynamore', 'Patricia Graynamore'], }, from: '34', - id: '99', + _id: '99', to: '78', }, { @@ -1251,7 +1251,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Marie'], }, from: '83', - id: '104', + _id: '104', to: '81', }, { @@ -1260,7 +1260,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Harry Burns'], }, from: '82', - id: '102', + _id: '102', to: '81', }, { @@ -1269,7 +1269,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Jess'], }, from: '84', - id: '105', + _id: '105', to: '81', }, { @@ -1278,7 +1278,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Sally Albright'], }, from: '34', - id: '103', + _id: '103', to: '81', }, { @@ -1287,7 +1287,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Mr. White'], }, from: '71', - id: '110', + _id: '110', to: '85', }, { @@ -1296,7 +1296,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Faye Dolan'], }, from: '86', - id: '111', + _id: '111', to: '85', }, { @@ -1305,7 +1305,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Tina'], }, from: '12', - id: '112', + _id: '112', to: '85', }, { @@ -1314,7 +1314,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Annabelle Farrell'], }, from: '88', - id: '115', + _id: '115', to: '87', }, { @@ -1323,7 +1323,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Shane Falco'], }, from: '1', - id: '114', + _id: '114', to: '87', }, { @@ -1332,7 +1332,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Clifford Franklin'], }, from: '90', - id: '117', + _id: '117', to: '87', }, { @@ -1341,7 +1341,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Jimmy McGinty'], }, from: '89', - id: '116', + _id: '116', to: '87', }, { @@ -1350,7 +1350,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Squad Leader'], }, from: '94', - id: '121', + _id: '121', to: '92', }, { @@ -1359,7 +1359,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Duane'], }, from: '70', - id: '122', + _id: '122', to: '92', }, { @@ -1368,7 +1368,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Dieter Dengler'], }, from: '93', - id: '120', + _id: '120', to: '92', }, { @@ -1377,7 +1377,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Admiral'], }, from: '51', - id: '119', + _id: '119', to: '92', }, { @@ -1386,7 +1386,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Armand Goldman'], }, from: '60', - id: '124', + _id: '124', to: '95', }, { @@ -1395,7 +1395,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Albert Goldman'], }, from: '80', - id: '125', + _id: '125', to: '95', }, { @@ -1404,7 +1404,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Sen. Kevin Keeley'], }, from: '89', - id: '126', + _id: '126', to: '95', }, { @@ -1413,7 +1413,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Bill Munny'], }, from: '99', - id: '129', + _id: '129', to: '97', }, { @@ -1422,7 +1422,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Little Bill Daggett'], }, from: '89', - id: '130', + _id: '130', to: '97', }, { @@ -1431,7 +1431,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['English Bob'], }, from: '98', - id: '128', + _id: '128', to: '97', }, { @@ -1440,7 +1440,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['J-Bone'], }, from: '103', - id: '135', + _id: '135', to: '100', }, { @@ -1449,7 +1449,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Jane'], }, from: '102', - id: '134', + _id: '134', to: '100', }, { @@ -1458,7 +1458,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Johnny Mnemonic'], }, from: '1', - id: '132', + _id: '132', to: '100', }, { @@ -1467,7 +1467,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Takahashi'], }, from: '101', - id: '133', + _id: '133', to: '100', }, { @@ -1476,7 +1476,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Zachry', 'Dr. Henry Goose', 'Isaac Sachs', 'Dermot Hoggins'], }, from: '71', - id: '137', + _id: '137', to: '105', }, { @@ -1485,7 +1485,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Vyvyan Ayrs', 'Captain Molyneux', 'Timothy Cavendish'], }, from: '107', - id: '140', + _id: '140', to: '105', }, { @@ -1494,7 +1494,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Luisa Rey', 'Jocasta Ayrs', 'Ovid', 'Meronym'], }, from: '106', - id: '139', + _id: '139', to: '105', }, { @@ -1503,7 +1503,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Bill Smoke', 'Haskell Moore', 'Tadeusz Kesselring', 'Nurse Noakes', 'Boardman Mephi', 'Old Georgie'], }, from: '4', - id: '138', + _id: '138', to: '105', }, { @@ -1512,7 +1512,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Dr. Robert Langdon'], }, from: '71', - id: '146', + _id: '146', to: '111', }, { @@ -1521,7 +1521,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Sir Leight Teabing'], }, from: '112', - id: '147', + _id: '147', to: '111', }, { @@ -1530,7 +1530,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Sophie Neveu'], }, from: '113', - id: '148', + _id: '148', to: '111', }, { @@ -1539,7 +1539,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Silas'], }, from: '114', - id: '149', + _id: '149', to: '111', }, { @@ -1548,7 +1548,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['High Chancellor Adam Sutler'], }, from: '119', - id: '154', + _id: '154', to: '116', }, { @@ -1557,7 +1557,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Eric Finch'], }, from: '118', - id: '153', + _id: '153', to: '116', }, { @@ -1566,7 +1566,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Evey Hammond'], }, from: '117', - id: '152', + _id: '152', to: '116', }, { @@ -1575,7 +1575,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['V'], }, from: '4', - id: '151', + _id: '151', to: '116', }, { @@ -1584,7 +1584,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Dascomb'], }, from: '120', - id: '155', + _id: '155', to: '116', }, { @@ -1593,7 +1593,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Speed Racer'], }, from: '122', - id: '162', + _id: '162', to: '121', }, { @@ -1602,7 +1602,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Taejo Togokahn'], }, from: '127', - id: '167', + _id: '167', to: '121', }, { @@ -1611,7 +1611,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Trixie'], }, from: '126', - id: '166', + _id: '166', to: '121', }, { @@ -1620,7 +1620,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Cass Jones'], }, from: '120', - id: '168', + _id: '168', to: '121', }, { @@ -1629,7 +1629,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Mom'], }, from: '124', - id: '164', + _id: '164', to: '121', }, { @@ -1638,7 +1638,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Pops'], }, from: '123', - id: '163', + _id: '163', to: '121', }, { @@ -1647,7 +1647,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Racer X'], }, from: '125', - id: '165', + _id: '165', to: '121', }, { @@ -1656,7 +1656,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Raizo'], }, from: '127', - id: '174', + _id: '174', to: '128', }, { @@ -1665,7 +1665,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Ryan Maslow'], }, from: '120', - id: '177', + _id: '177', to: '128', }, { @@ -1674,7 +1674,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Takeshi'], }, from: '64', - id: '176', + _id: '176', to: '128', }, { @@ -1683,7 +1683,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Mika Coretti'], }, from: '129', - id: '175', + _id: '175', to: '128', }, { @@ -1692,7 +1692,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['"Wild Bill" Wharton'], }, from: '133', - id: '187', + _id: '187', to: '130', }, { @@ -1701,7 +1701,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Jan Edgecomb'], }, from: '42', - id: '185', + _id: '185', to: '130', }, { @@ -1710,7 +1710,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Melinda Moores'], }, from: '135', - id: '189', + _id: '189', to: '130', }, { @@ -1719,7 +1719,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Warden Hal Moores'], }, from: '65', - id: '186', + _id: '186', to: '130', }, { @@ -1728,7 +1728,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Paul Edgecomb'], }, from: '71', - id: '182', + _id: '182', to: '130', }, { @@ -1737,7 +1737,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['John Coffey'], }, from: '131', - id: '183', + _id: '183', to: '130', }, { @@ -1746,7 +1746,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Brutus "Brutal" Howell'], }, from: '132', - id: '184', + _id: '184', to: '130', }, { @@ -1755,7 +1755,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Burt Hammersmith'], }, from: '134', - id: '188', + _id: '188', to: '130', }, { @@ -1764,7 +1764,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['James Reston, Jr.'], }, from: '133', - id: '195', + _id: '195', to: '137', }, { @@ -1773,7 +1773,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['David Frost'], }, from: '139', - id: '192', + _id: '192', to: '137', }, { @@ -1782,7 +1782,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Richard Nixon'], }, from: '138', - id: '191', + _id: '191', to: '137', }, { @@ -1791,7 +1791,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Bob Zelnick'], }, from: '140', - id: '194', + _id: '194', to: '137', }, { @@ -1800,7 +1800,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Jack Brennan'], }, from: '19', - id: '193', + _id: '193', to: '137', }, { @@ -1809,7 +1809,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Peter "Pete" Connelly'], }, from: '143', - id: '200', + _id: '200', to: '141', }, { @@ -1818,7 +1818,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Robert "Bobby" Ciaro'], }, from: '142', - id: '198', + _id: '198', to: '141', }, { @@ -1827,7 +1827,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Frank Fitzsimmons'], }, from: '24', - id: '199', + _id: '199', to: '141', }, { @@ -1836,7 +1836,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Hoffa'], }, from: '17', - id: '197', + _id: '197', to: '141', }, { @@ -1845,7 +1845,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Jim Lovell'], }, from: '71', - id: '202', + _id: '202', to: '144', }, { @@ -1854,7 +1854,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Gene Kranz'], }, from: '145', - id: '204', + _id: '204', to: '144', }, { @@ -1863,7 +1863,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Ken Mattingly'], }, from: '134', - id: '206', + _id: '206', to: '144', }, { @@ -1872,7 +1872,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Jack Swigert'], }, from: '19', - id: '203', + _id: '203', to: '144', }, { @@ -1881,7 +1881,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Fred Haise'], }, from: '146', - id: '205', + _id: '205', to: '144', }, { @@ -1890,7 +1890,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Dr. Jo Harding'], }, from: '53', - id: '209', + _id: '209', to: '147', }, { @@ -1899,7 +1899,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Bill Harding'], }, from: '146', - id: '208', + _id: '208', to: '147', }, { @@ -1908,7 +1908,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Dustin "Dusty" Davis'], }, from: '148', - id: '211', + _id: '211', to: '147', }, { @@ -1917,7 +1917,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Eddie'], }, from: '94', - id: '210', + _id: '210', to: '147', }, { @@ -1926,7 +1926,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Kelly Frears'], }, from: '53', - id: '214', + _id: '214', to: '150', }, { @@ -1935,7 +1935,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Chuck Noland'], }, from: '71', - id: '213', + _id: '213', to: '150', }, { @@ -1944,7 +1944,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Martini'], }, from: '142', - id: '217', + _id: '217', to: '152', }, { @@ -1953,7 +1953,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Randle McMurphy'], }, from: '17', - id: '216', + _id: '216', to: '152', }, { @@ -1962,7 +1962,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Julian Mercer'], }, from: '1', - id: '221', + _id: '221', to: '154', }, { @@ -1971,7 +1971,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Erica Barry'], }, from: '155', - id: '220', + _id: '220', to: '154', }, { @@ -1980,7 +1980,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Harry Sanborn'], }, from: '17', - id: '219', + _id: '219', to: '154', }, { @@ -1989,7 +1989,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Andrew Marin'], }, from: '60', - id: '225', + _id: '225', to: '157', }, { @@ -1998,7 +1998,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Rupert Burns'], }, from: '140', - id: '226', + _id: '226', to: '157', }, { @@ -2007,7 +2007,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Joanne Herring'], }, from: '160', - id: '229', + _id: '229', to: '159', }, { @@ -2016,7 +2016,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Rep. Charlie Wilson'], }, from: '71', - id: '228', + _id: '228', to: '159', }, { @@ -2025,7 +2025,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Gust Avrakotos'], }, from: '148', - id: '230', + _id: '230', to: '159', }, { @@ -2034,7 +2034,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Hero Boy', 'Father', 'Conductor', 'Hobo', 'Scrooge', 'Santa Claus'], }, from: '71', - id: '232', + _id: '232', to: '161', }, { @@ -2043,7 +2043,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Jimmy Dugan'], }, from: '71', - id: '234', + _id: '234', to: '162', }, { @@ -2052,7 +2052,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['"All the Way" Mae Mordabito'], }, from: '163', - id: '238', + _id: '238', to: '162', }, { @@ -2061,7 +2061,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Doris Murphy'], }, from: '77', - id: '237', + _id: '237', to: '162', }, { @@ -2070,7 +2070,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Dottie Hinson'], }, from: '164', - id: '235', + _id: '235', to: '162', }, { @@ -2079,7 +2079,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Bob Hinson'], }, from: '146', - id: '239', + _id: '239', to: '162', }, { @@ -2088,7 +2088,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul roles: ['Kit Keller'], }, from: '165', - id: '236', + _id: '236', to: '162', }, ], @@ -2101,7 +2101,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'The Matrix', votes: 4928, }, - id: '0', + _id: '0', }, { attributes: { @@ -2109,7 +2109,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Emil Eifrem', }, - id: '8', + _id: '8', }, { attributes: { @@ -2117,7 +2117,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Hugo Weaving', }, - id: '4', + _id: '4', }, { attributes: { @@ -2125,7 +2125,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Laurence Fishburne', }, - id: '3', + _id: '3', }, { attributes: { @@ -2133,7 +2133,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Carrie-Anne Moss', }, - id: '2', + _id: '2', }, { attributes: { @@ -2141,7 +2141,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Keanu Reeves', }, - id: '1', + _id: '1', }, { attributes: { @@ -2151,7 +2151,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'The Matrix Reloaded', votes: 1457, }, - id: '9', + _id: '9', }, { attributes: { @@ -2161,7 +2161,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'The Matrix Revolutions', votes: 1168, }, - id: '10', + _id: '10', }, { attributes: { @@ -2171,7 +2171,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: "The Devil's Advocate", votes: 184, }, - id: '11', + _id: '11', }, { attributes: { @@ -2179,7 +2179,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Al Pacino', }, - id: '13', + _id: '13', }, { attributes: { @@ -2187,7 +2187,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Charlize Theron', }, - id: '12', + _id: '12', }, { attributes: { @@ -2198,7 +2198,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'A Few Good Men', votes: 352, }, - id: '15', + _id: '15', }, { attributes: { @@ -2206,7 +2206,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'James Marshall', }, - id: '25', + _id: '25', }, { attributes: { @@ -2214,7 +2214,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Kevin Pollak', }, - id: '23', + _id: '23', }, { attributes: { @@ -2222,7 +2222,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'J.T. Walsh', }, - id: '24', + _id: '24', }, { attributes: { @@ -2230,7 +2230,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Aaron Sorkin', }, - id: '28', + _id: '28', }, { attributes: { @@ -2238,7 +2238,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Cuba Gooding Jr.', }, - id: '22', + _id: '22', }, { attributes: { @@ -2246,7 +2246,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Christopher Guest', }, - id: '26', + _id: '26', }, { attributes: { @@ -2254,7 +2254,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Noah Wyle', }, - id: '21', + _id: '21', }, { attributes: { @@ -2262,7 +2262,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Kiefer Sutherland', }, - id: '20', + _id: '20', }, { attributes: { @@ -2270,7 +2270,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Kevin Bacon', }, - id: '19', + _id: '19', }, { attributes: { @@ -2278,7 +2278,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Demi Moore', }, - id: '18', + _id: '18', }, { attributes: { @@ -2286,7 +2286,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Jack Nicholson', }, - id: '17', + _id: '17', }, { attributes: { @@ -2294,7 +2294,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Tom Cruise', }, - id: '16', + _id: '16', }, { attributes: { @@ -2304,7 +2304,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Top Gun', votes: 419, }, - id: '29', + _id: '29', }, { attributes: { @@ -2312,7 +2312,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Val Kilmer', }, - id: '31', + _id: '31', }, { attributes: { @@ -2320,7 +2320,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Meg Ryan', }, - id: '34', + _id: '34', }, { attributes: { @@ -2328,7 +2328,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Tom Skerritt', }, - id: '33', + _id: '33', }, { attributes: { @@ -2336,7 +2336,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Kelly McGillis', }, - id: '30', + _id: '30', }, { attributes: { @@ -2344,7 +2344,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Anthony Edwards', }, - id: '32', + _id: '32', }, { attributes: { @@ -2354,7 +2354,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Jerry Maguire', votes: 105, }, - id: '37', + _id: '37', }, { attributes: { @@ -2362,7 +2362,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: "Jerry O'Connell", }, - id: '40', + _id: '40', }, { attributes: { @@ -2370,7 +2370,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Bonnie Hunt', }, - id: '42', + _id: '42', }, { attributes: { @@ -2378,7 +2378,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Jay Mohr', }, - id: '41', + _id: '41', }, { attributes: { @@ -2386,7 +2386,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Jonathan Lipnicki', }, - id: '44', + _id: '44', }, { attributes: { @@ -2394,7 +2394,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Renee Zellweger', }, - id: '38', + _id: '38', }, { attributes: { @@ -2402,7 +2402,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Kelly Preston', }, - id: '39', + _id: '39', }, { attributes: { @@ -2410,7 +2410,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Regina King', }, - id: '43', + _id: '43', }, { attributes: { @@ -2421,7 +2421,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Stand By Me', votes: 51, }, - id: '46', + _id: '46', }, { attributes: { @@ -2429,7 +2429,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'River Phoenix', }, - id: '47', + _id: '47', }, { attributes: { @@ -2437,7 +2437,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Marshall Bell', }, - id: '51', + _id: '51', }, { attributes: { @@ -2445,7 +2445,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Wil Wheaton', }, - id: '49', + _id: '49', }, { attributes: { @@ -2453,7 +2453,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'John Cusack', }, - id: '50', + _id: '50', }, { attributes: { @@ -2461,7 +2461,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Corey Feldman', }, - id: '48', + _id: '48', }, { attributes: { @@ -2471,7 +2471,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'As Good as It Gets', votes: 85, }, - id: '52', + _id: '52', }, { attributes: { @@ -2479,7 +2479,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Helen Hunt', }, - id: '53', + _id: '53', }, { attributes: { @@ -2487,7 +2487,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Greg Kinnear', }, - id: '54', + _id: '54', }, { attributes: { @@ -2497,7 +2497,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'What Dreams May Come', votes: 32, }, - id: '56', + _id: '56', }, { attributes: { @@ -2505,7 +2505,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Robin Williams', }, - id: '60', + _id: '60', }, { attributes: { @@ -2513,7 +2513,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Max von Sydow', }, - id: '58', + _id: '58', }, { attributes: { @@ -2521,7 +2521,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Werner Herzog', }, - id: '59', + _id: '59', }, { attributes: { @@ -2529,7 +2529,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Annabella Sciorra', }, - id: '57', + _id: '57', }, { attributes: { @@ -2539,7 +2539,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Snow Falling on Cedars', votes: 51, }, - id: '62', + _id: '62', }, { attributes: { @@ -2547,7 +2547,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Ethan Hawke', }, - id: '63', + _id: '63', }, { attributes: { @@ -2555,7 +2555,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Rick Yune', }, - id: '64', + _id: '64', }, { attributes: { @@ -2563,7 +2563,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'James Cromwell', }, - id: '65', + _id: '65', }, { attributes: { @@ -2573,7 +2573,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: "You've Got Mail", votes: 41, }, - id: '67', + _id: '67', }, { attributes: { @@ -2581,7 +2581,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Tom Hanks', }, - id: '71', + _id: '71', }, { attributes: { @@ -2589,7 +2589,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Parker Posey', }, - id: '68', + _id: '68', }, { attributes: { @@ -2597,7 +2597,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Steve Zahn', }, - id: '70', + _id: '70', }, { attributes: { @@ -2605,7 +2605,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Dave Chappelle', }, - id: '69', + _id: '69', }, { attributes: { @@ -2615,7 +2615,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Sleepless in Seattle', votes: 37, }, - id: '73', + _id: '73', }, { attributes: { @@ -2623,7 +2623,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Victor Garber', }, - id: '76', + _id: '76', }, { attributes: { @@ -2631,7 +2631,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Bill Pullman', }, - id: '75', + _id: '75', }, { attributes: { @@ -2639,7 +2639,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Rita Wilson', }, - id: '74', + _id: '74', }, { attributes: { @@ -2647,7 +2647,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: "Rosie O'Donnell", }, - id: '77', + _id: '77', }, { attributes: { @@ -2657,7 +2657,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Joe Versus the Volcano', votes: 100, }, - id: '78', + _id: '78', }, { attributes: { @@ -2665,7 +2665,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Nathan Lane', }, - id: '80', + _id: '80', }, { attributes: { @@ -2675,7 +2675,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'When Harry Met Sally', votes: 29, }, - id: '81', + _id: '81', }, { attributes: { @@ -2683,7 +2683,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Carrie Fisher', }, - id: '83', + _id: '83', }, { attributes: { @@ -2691,7 +2691,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Billy Crystal', }, - id: '82', + _id: '82', }, { attributes: { @@ -2699,7 +2699,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Bruno Kirby', }, - id: '84', + _id: '84', }, { attributes: { @@ -2709,7 +2709,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'That Thing You Do', votes: 18, }, - id: '85', + _id: '85', }, { attributes: { @@ -2717,7 +2717,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Liv Tyler', }, - id: '86', + _id: '86', }, { attributes: { @@ -2727,7 +2727,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'The Replacements', votes: 21, }, - id: '87', + _id: '87', }, { attributes: { @@ -2735,7 +2735,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Brooke Langton', }, - id: '88', + _id: '88', }, { attributes: { @@ -2743,7 +2743,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Orlando Jones', }, - id: '90', + _id: '90', }, { attributes: { @@ -2751,7 +2751,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Gene Hackman', }, - id: '89', + _id: '89', }, { attributes: { @@ -2761,7 +2761,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'RescueDawn', votes: 12, }, - id: '92', + _id: '92', }, { attributes: { @@ -2769,7 +2769,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Zach Grenier', }, - id: '94', + _id: '94', }, { attributes: { @@ -2777,7 +2777,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Christian Bale', }, - id: '93', + _id: '93', }, { attributes: { @@ -2787,7 +2787,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'The Birdcage', votes: 53, }, - id: '95', + _id: '95', }, { attributes: { @@ -2797,7 +2797,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Unforgiven', votes: 49, }, - id: '97', + _id: '97', }, { attributes: { @@ -2805,7 +2805,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Clint Eastwood', }, - id: '99', + _id: '99', }, { attributes: { @@ -2813,7 +2813,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Richard Harris', }, - id: '98', + _id: '98', }, { attributes: { @@ -2823,7 +2823,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Johnny Mnemonic', votes: 28, }, - id: '100', + _id: '100', }, { attributes: { @@ -2831,7 +2831,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Ice-T', }, - id: '103', + _id: '103', }, { attributes: { @@ -2839,7 +2839,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Dina Meyer', }, - id: '102', + _id: '102', }, { attributes: { @@ -2847,7 +2847,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Takeshi Kitano', }, - id: '101', + _id: '101', }, { attributes: { @@ -2857,7 +2857,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Cloud Atlas', votes: 108, }, - id: '105', + _id: '105', }, { attributes: { @@ -2865,7 +2865,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Jim Broadbent', }, - id: '107', + _id: '107', }, { attributes: { @@ -2873,7 +2873,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Halle Berry', }, - id: '106', + _id: '106', }, { attributes: { @@ -2883,7 +2883,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'The Da Vinci Code', votes: 143, }, - id: '111', + _id: '111', }, { attributes: { @@ -2891,7 +2891,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Ian McKellen', }, - id: '112', + _id: '112', }, { attributes: { @@ -2899,7 +2899,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Audrey Tautou', }, - id: '113', + _id: '113', }, { attributes: { @@ -2907,7 +2907,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Paul Bettany', }, - id: '114', + _id: '114', }, { attributes: { @@ -2917,7 +2917,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'V for Vendetta', votes: 26, }, - id: '116', + _id: '116', }, { attributes: { @@ -2925,7 +2925,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'John Hurt', }, - id: '119', + _id: '119', }, { attributes: { @@ -2933,7 +2933,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Stephen Rea', }, - id: '118', + _id: '118', }, { attributes: { @@ -2941,7 +2941,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Natalie Portman', }, - id: '117', + _id: '117', }, { attributes: { @@ -2949,7 +2949,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Ben Miles', }, - id: '120', + _id: '120', }, { attributes: { @@ -2959,7 +2959,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Speed Racer', votes: 29, }, - id: '121', + _id: '121', }, { attributes: { @@ -2967,7 +2967,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Emile Hirsch', }, - id: '122', + _id: '122', }, { attributes: { @@ -2975,7 +2975,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Rain', }, - id: '127', + _id: '127', }, { attributes: { @@ -2983,7 +2983,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Christina Ricci', }, - id: '126', + _id: '126', }, { attributes: { @@ -2991,7 +2991,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Susan Sarandon', }, - id: '124', + _id: '124', }, { attributes: { @@ -2999,7 +2999,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'John Goodman', }, - id: '123', + _id: '123', }, { attributes: { @@ -3007,7 +3007,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Matthew Fox', }, - id: '125', + _id: '125', }, { attributes: { @@ -3017,14 +3017,14 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Ninja Assassin', votes: 14, }, - id: '128', + _id: '128', }, { attributes: { labels: ['Person'], name: 'Naomie Harris', }, - id: '129', + _id: '129', }, { attributes: { @@ -3034,7 +3034,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'The Green Mile', votes: 31, }, - id: '130', + _id: '130', }, { attributes: { @@ -3042,7 +3042,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Sam Rockwell', }, - id: '133', + _id: '133', }, { attributes: { @@ -3050,7 +3050,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Patricia Clarkson', }, - id: '135', + _id: '135', }, { attributes: { @@ -3058,7 +3058,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Michael Clarke Duncan', }, - id: '131', + _id: '131', }, { attributes: { @@ -3066,7 +3066,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'David Morse', }, - id: '132', + _id: '132', }, { attributes: { @@ -3074,7 +3074,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Gary Sinise', }, - id: '134', + _id: '134', }, { attributes: { @@ -3084,7 +3084,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Frost/Nixon', votes: 1, }, - id: '137', + _id: '137', }, { attributes: { @@ -3092,7 +3092,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Michael Sheen', }, - id: '139', + _id: '139', }, { attributes: { @@ -3100,7 +3100,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Frank Langella', }, - id: '138', + _id: '138', }, { attributes: { @@ -3108,7 +3108,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Oliver Platt', }, - id: '140', + _id: '140', }, { attributes: { @@ -3118,7 +3118,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Hoffa', votes: 40, }, - id: '141', + _id: '141', }, { attributes: { @@ -3126,7 +3126,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'John C. Reilly', }, - id: '143', + _id: '143', }, { attributes: { @@ -3134,7 +3134,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Danny DeVito', }, - id: '142', + _id: '142', }, { attributes: { @@ -3144,7 +3144,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Apollo 13', votes: 96, }, - id: '144', + _id: '144', }, { attributes: { @@ -3152,7 +3152,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Ed Harris', }, - id: '145', + _id: '145', }, { attributes: { @@ -3160,7 +3160,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Bill Paxton', }, - id: '146', + _id: '146', }, { attributes: { @@ -3170,7 +3170,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Twister', votes: 22, }, - id: '147', + _id: '147', }, { attributes: { @@ -3178,7 +3178,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Philip Seymour Hoffman', }, - id: '148', + _id: '148', }, { attributes: { @@ -3188,7 +3188,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Cast Away', votes: 84, }, - id: '150', + _id: '150', }, { attributes: { @@ -3198,7 +3198,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: "One Flew Over the Cuckoo's Nest", votes: 16, }, - id: '152', + _id: '152', }, { attributes: { @@ -3207,7 +3207,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: "Something's Gotta Give", votes: 54, }, - id: '154', + _id: '154', }, { attributes: { @@ -3215,7 +3215,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Diane Keaton', }, - id: '155', + _id: '155', }, { attributes: { @@ -3225,7 +3225,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'Bicentennial Man', votes: 68, }, - id: '157', + _id: '157', }, { attributes: { @@ -3235,7 +3235,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: "Charlie Wilson's War", votes: 18, }, - id: '159', + _id: '159', }, { attributes: { @@ -3243,7 +3243,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Julia Roberts', }, - id: '160', + _id: '160', }, { attributes: { @@ -3253,7 +3253,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'The Polar Express', votes: 179, }, - id: '161', + _id: '161', }, { attributes: { @@ -3263,7 +3263,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul title: 'A League of Their Own', votes: 62, }, - id: '162', + _id: '162', }, { attributes: { @@ -3271,7 +3271,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Madonna', }, - id: '163', + _id: '163', }, { attributes: { @@ -3279,7 +3279,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Geena Davis', }, - id: '164', + _id: '164', }, { attributes: { @@ -3287,7 +3287,7 @@ export const recommendationPersonActedInMovieQueryResultPayload: GraphQueryResul labels: ['Person'], name: 'Lori Petty', }, - id: '165', + _id: '165', }, ], }, diff --git a/libs/shared/lib/mock-data/query-result/slackQueryResults.ts b/libs/shared/lib/mock-data/query-result/slackQueryResults.ts index 9d8964cb6..a84ec59e2 100644 --- a/libs/shared/lib/mock-data/query-result/slackQueryResults.ts +++ b/libs/shared/lib/mock-data/query-result/slackQueryResults.ts @@ -15,7 +15,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18037', - id: '87658', + _id: '87658', to: '15964', }, { @@ -23,7 +23,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18038', - id: '87661', + _id: '87661', to: '15964', }, { @@ -31,7 +31,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18039', - id: '87664', + _id: '87664', to: '15964', }, { @@ -39,7 +39,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18040', - id: '87667', + _id: '87667', to: '15964', }, { @@ -47,7 +47,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18041', - id: '87670', + _id: '87670', to: '15964', }, { @@ -55,7 +55,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18042', - id: '87673', + _id: '87673', to: '15964', }, { @@ -63,7 +63,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18043', - id: '87676', + _id: '87676', to: '15964', }, { @@ -71,7 +71,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18044', - id: '87679', + _id: '87679', to: '15964', }, { @@ -79,7 +79,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18045', - id: '87705', + _id: '87705', to: '15964', }, { @@ -87,7 +87,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18046', - id: '87708', + _id: '87708', to: '15964', }, { @@ -95,7 +95,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18047', - id: '87819', + _id: '87819', to: '15964', }, { @@ -103,7 +103,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18048', - id: '87822', + _id: '87822', to: '15964', }, { @@ -111,7 +111,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18112', - id: '87825', + _id: '87825', to: '15964', }, { @@ -119,7 +119,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18113', - id: '87828', + _id: '87828', to: '15964', }, { @@ -127,7 +127,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18114', - id: '87831', + _id: '87831', to: '15964', }, { @@ -135,7 +135,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18115', - id: '87834', + _id: '87834', to: '15964', }, { @@ -143,7 +143,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '18116', - id: '87837', + _id: '87837', to: '15964', }, { @@ -151,7 +151,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26680', - id: '99907', + _id: '99907', to: '13608', }, { @@ -159,7 +159,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26703', - id: '99910', + _id: '99910', to: '13608', }, { @@ -167,7 +167,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26824', - id: '99913', + _id: '99913', to: '13608', }, { @@ -175,7 +175,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26904', - id: '99916', + _id: '99916', to: '13608', }, { @@ -183,7 +183,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26905', - id: '99977', + _id: '99977', to: '13608', }, { @@ -191,7 +191,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26906', - id: '99980', + _id: '99980', to: '13608', }, { @@ -199,7 +199,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26916', - id: '99983', + _id: '99983', to: '13608', }, { @@ -207,7 +207,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26946', - id: '99994', + _id: '99994', to: '13608', }, { @@ -215,7 +215,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26971', - id: '100019', + _id: '100019', to: '13608', }, { @@ -223,7 +223,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26972', - id: '100068', + _id: '100068', to: '13608', }, { @@ -231,7 +231,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '26999', - id: '100071', + _id: '100071', to: '13608', }, { @@ -239,7 +239,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27035', - id: '100074', + _id: '100074', to: '13608', }, { @@ -247,7 +247,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27084', - id: '100077', + _id: '100077', to: '13608', }, { @@ -255,7 +255,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27115', - id: '100080', + _id: '100080', to: '13608', }, { @@ -263,7 +263,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27122', - id: '100355', + _id: '100355', to: '13608', }, { @@ -271,7 +271,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27123', - id: '100358', + _id: '100358', to: '13608', }, { @@ -279,7 +279,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27196', - id: '100361', + _id: '100361', to: '13608', }, { @@ -287,7 +287,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27242', - id: '100414', + _id: '100414', to: '13608', }, { @@ -295,7 +295,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27259', - id: '100417', + _id: '100417', to: '13608', }, { @@ -303,7 +303,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27374', - id: '100420', + _id: '100420', to: '13608', }, { @@ -311,7 +311,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '27375', - id: '100423', + _id: '100423', to: '13608', }, { @@ -319,7 +319,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28957', - id: '111418', + _id: '111418', to: '13395', }, { @@ -327,7 +327,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28958', - id: '111421', + _id: '111421', to: '13395', }, { @@ -335,7 +335,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28967', - id: '111461', + _id: '111461', to: '13395', }, { @@ -343,7 +343,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28974', - id: '111464', + _id: '111464', to: '13395', }, { @@ -351,7 +351,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28981', - id: '111467', + _id: '111467', to: '13395', }, { @@ -359,7 +359,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28983', - id: '111475', + _id: '111475', to: '13395', }, { @@ -367,7 +367,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28990', - id: '111478', + _id: '111478', to: '13395', }, { @@ -375,7 +375,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28996', - id: '111481', + _id: '111481', to: '13395', }, { @@ -383,7 +383,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28997', - id: '111487', + _id: '111487', to: '13395', }, { @@ -391,7 +391,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28998', - id: '111490', + _id: '111490', to: '13395', }, { @@ -399,7 +399,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '28999', - id: '111493', + _id: '111493', to: '13395', }, { @@ -407,7 +407,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29000', - id: '111496', + _id: '111496', to: '13395', }, { @@ -415,7 +415,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29001', - id: '111499', + _id: '111499', to: '13395', }, { @@ -423,7 +423,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29009', - id: '111516', + _id: '111516', to: '13395', }, { @@ -431,7 +431,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29010', - id: '111519', + _id: '111519', to: '13395', }, { @@ -439,7 +439,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29011', - id: '111522', + _id: '111522', to: '13395', }, { @@ -447,7 +447,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29015', - id: '111538', + _id: '111538', to: '13395', }, { @@ -455,7 +455,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29031', - id: '111541', + _id: '111541', to: '13395', }, { @@ -463,7 +463,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29032', - id: '111544', + _id: '111544', to: '13395', }, { @@ -471,7 +471,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29033', - id: '111547', + _id: '111547', to: '13395', }, { @@ -479,7 +479,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29035', - id: '111585', + _id: '111585', to: '13395', }, { @@ -487,7 +487,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29062', - id: '111588', + _id: '111588', to: '13395', }, { @@ -495,7 +495,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29063', - id: '111603', + _id: '111603', to: '13395', }, { @@ -503,7 +503,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29064', - id: '111606', + _id: '111606', to: '13395', }, { @@ -511,7 +511,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29065', - id: '111614', + _id: '111614', to: '13395', }, { @@ -519,7 +519,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29066', - id: '111617', + _id: '111617', to: '13395', }, { @@ -527,7 +527,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29075', - id: '111629', + _id: '111629', to: '13395', }, { @@ -535,7 +535,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29076', - id: '111632', + _id: '111632', to: '13395', }, { @@ -543,7 +543,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29077', - id: '111635', + _id: '111635', to: '13395', }, { @@ -551,7 +551,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29090', - id: '111638', + _id: '111638', to: '13395', }, { @@ -559,7 +559,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29091', - id: '111657', + _id: '111657', to: '13395', }, { @@ -567,7 +567,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29148', - id: '111754', + _id: '111754', to: '146421', }, { @@ -575,7 +575,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29205', - id: '111798', + _id: '111798', to: '147405', }, { @@ -583,7 +583,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '29862', - id: '112754', + _id: '112754', to: '150033', }, { @@ -591,7 +591,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32273', - id: '114299', + _id: '114299', to: '160180', }, { @@ -599,7 +599,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32880', - id: '114767', + _id: '114767', to: '161393', }, { @@ -607,7 +607,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32885', - id: '114960', + _id: '114960', to: '162017', }, { @@ -615,7 +615,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32887', - id: '115080', + _id: '115080', to: '162130', }, { @@ -623,7 +623,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32888', - id: '115133', + _id: '115133', to: '162130', }, { @@ -631,7 +631,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32891', - id: '115190', + _id: '115190', to: '162155', }, { @@ -639,7 +639,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32892', - id: '115220', + _id: '115220', to: '162155', }, { @@ -647,7 +647,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32898', - id: '115253', + _id: '115253', to: '162657', }, { @@ -655,7 +655,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32899', - id: '115256', + _id: '115256', to: '162678', }, { @@ -663,7 +663,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32931', - id: '115295', + _id: '115295', to: '163028', }, { @@ -671,7 +671,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32932', - id: '115371', + _id: '115371', to: '163125', }, { @@ -679,7 +679,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32936', - id: '115440', + _id: '115440', to: '163643', }, { @@ -687,7 +687,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32937', - id: '115738', + _id: '115738', to: '163643', }, { @@ -695,7 +695,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32955', - id: '115843', + _id: '115843', to: '163645', }, { @@ -703,7 +703,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '32962', - id: '115889', + _id: '115889', to: '163645', }, { @@ -711,7 +711,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '33008', - id: '115921', + _id: '115921', to: '163645', }, { @@ -719,7 +719,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '33612', - id: '116314', + _id: '116314', to: '163980', }, { @@ -727,7 +727,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '34027', - id: '116927', + _id: '116927', to: '164186', }, { @@ -735,7 +735,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '34456', - id: '117995', + _id: '117995', to: '164535', }, { @@ -743,7 +743,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '34697', - id: '118354', + _id: '118354', to: '164614', }, { @@ -751,7 +751,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '34750', - id: '118394', + _id: '118394', to: '164619', }, { @@ -759,7 +759,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '34852', - id: '118623', + _id: '118623', to: '164714', }, { @@ -767,7 +767,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '35044', - id: '118626', + _id: '118626', to: '164732', }, { @@ -775,7 +775,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '35219', - id: '118928', + _id: '118928', to: '164869', }, { @@ -783,7 +783,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '35326', - id: '118978', + _id: '118978', to: '164871', }, { @@ -791,7 +791,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '37870', - id: '120463', + _id: '120463', to: '165546', }, { @@ -799,7 +799,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '51593', - id: '148355', + _id: '148355', to: '186092', }, { @@ -807,7 +807,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '54421', - id: '153115', + _id: '153115', to: '187925', }, { @@ -815,7 +815,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '55288', - id: '157253', + _id: '157253', to: '188984', }, { @@ -823,7 +823,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '56962', - id: '161101', + _id: '161101', to: '190440', }, { @@ -831,7 +831,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '57852', - id: '163363', + _id: '163363', to: '193413', }, { @@ -839,7 +839,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '58061', - id: '163976', + _id: '163976', to: '193855', }, { @@ -847,7 +847,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '58370', - id: '163979', + _id: '163979', to: '193883', }, { @@ -855,7 +855,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '58651', - id: '164855', + _id: '164855', to: '194043', }, { @@ -863,7 +863,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '58685', - id: '165806', + _id: '165806', to: '194552', }, { @@ -871,7 +871,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '58921', - id: '165845', + _id: '165845', to: '194553', }, { @@ -879,7 +879,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '60684', - id: '167433', + _id: '167433', to: '195533', }, { @@ -887,7 +887,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '61369', - id: '167976', + _id: '167976', to: '195829', }, { @@ -895,7 +895,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '62522', - id: '169108', + _id: '169108', to: '196129', }, { @@ -903,7 +903,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '63210', - id: '170053', + _id: '170053', to: '196641', }, { @@ -911,7 +911,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '64193', - id: '171502', + _id: '171502', to: '199221', }, { @@ -919,7 +919,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '64987', - id: '173117', + _id: '173117', to: '201140', }, { @@ -927,7 +927,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '65435', - id: '173138', + _id: '173138', to: '201561', }, { @@ -935,7 +935,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '65977', - id: '174087', + _id: '174087', to: '202415', }, { @@ -943,7 +943,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '66589', - id: '176221', + _id: '176221', to: '203204', }, { @@ -951,7 +951,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '69624', - id: '183934', + _id: '183934', to: '207220', }, { @@ -959,7 +959,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '69625', - id: '184099', + _id: '184099', to: '207256', }, { @@ -967,7 +967,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '70010', - id: '184219', + _id: '184219', to: '207862', }, { @@ -975,7 +975,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '70304', - id: '185083', + _id: '185083', to: '208411', }, { @@ -983,7 +983,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71041', - id: '186135', + _id: '186135', to: '209169', }, { @@ -991,7 +991,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71132', - id: '187489', + _id: '187489', to: '209668', }, { @@ -999,7 +999,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71141', - id: '187886', + _id: '187886', to: '209668', }, { @@ -1007,7 +1007,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71156', - id: '187896', + _id: '187896', to: '209671', }, { @@ -1015,7 +1015,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71187', - id: '188014', + _id: '188014', to: '209946', }, { @@ -1023,7 +1023,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71271', - id: '188246', + _id: '188246', to: '210535', }, { @@ -1031,7 +1031,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71355', - id: '189263', + _id: '189263', to: '211055', }, { @@ -1039,7 +1039,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71441', - id: '189545', + _id: '189545', to: '211239', }, { @@ -1047,7 +1047,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71477', - id: '189551', + _id: '189551', to: '211260', }, { @@ -1055,7 +1055,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71533', - id: '190061', + _id: '190061', to: '211437', }, { @@ -1063,7 +1063,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71535', - id: '190249', + _id: '190249', to: '211442', }, { @@ -1071,7 +1071,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71536', - id: '190252', + _id: '190252', to: '211455', }, { @@ -1079,7 +1079,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71539', - id: '190261', + _id: '190261', to: '211510', }, { @@ -1087,7 +1087,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71548', - id: '190659', + _id: '190659', to: '211841', }, { @@ -1095,7 +1095,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71820', - id: '193351', + _id: '193351', to: '212907', }, { @@ -1103,7 +1103,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71821', - id: '193410', + _id: '193410', to: '212924', }, { @@ -1111,7 +1111,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '71967', - id: '194229', + _id: '194229', to: '213575', }, { @@ -1119,7 +1119,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '72031', - id: '194440', + _id: '194440', to: '213954', }, { @@ -1127,7 +1127,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '72350', - id: '195482', + _id: '195482', to: '214820', }, { @@ -1135,7 +1135,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '72365', - id: '195485', + _id: '195485', to: '214832', }, { @@ -1143,7 +1143,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '72459', - id: '196097', + _id: '196097', to: '215309', }, { @@ -1151,7 +1151,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '72466', - id: '196478', + _id: '196478', to: '215428', }, { @@ -1159,7 +1159,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '72535', - id: '197426', + _id: '197426', to: '216129', }, { @@ -1167,7 +1167,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '72640', - id: '198338', + _id: '198338', to: '216288', }, { @@ -1175,7 +1175,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '72727', - id: '198352', + _id: '198352', to: '216344', }, { @@ -1183,7 +1183,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '72763', - id: '198409', + _id: '198409', to: '216363', }, { @@ -1191,7 +1191,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '73225', - id: '198554', + _id: '198554', to: '216987', }, { @@ -1199,7 +1199,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '73255', - id: '198611', + _id: '198611', to: '217020', }, { @@ -1207,7 +1207,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '73372', - id: '198667', + _id: '198667', to: '217176', }, { @@ -1215,7 +1215,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '73561', - id: '198696', + _id: '198696', to: '217440', }, { @@ -1223,7 +1223,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '73562', - id: '198795', + _id: '198795', to: '217606', }, { @@ -1231,7 +1231,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '74394', - id: '199308', + _id: '199308', to: '218182', }, { @@ -1239,7 +1239,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '74395', - id: '199311', + _id: '199311', to: '218192', }, { @@ -1247,7 +1247,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '75853', - id: '200036', + _id: '200036', to: '219892', }, { @@ -1255,7 +1255,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76176', - id: '200045', + _id: '200045', to: '220092', }, { @@ -1263,7 +1263,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76584', - id: '200362', + _id: '200362', to: '220436', }, { @@ -1271,7 +1271,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76592', - id: '200483', + _id: '200483', to: '220644', }, { @@ -1279,7 +1279,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76606', - id: '200602', + _id: '200602', to: '220700', }, { @@ -1287,7 +1287,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76626', - id: '201184', + _id: '201184', to: '221235', }, { @@ -1295,7 +1295,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76627', - id: '201285', + _id: '201285', to: '221235', }, { @@ -1303,7 +1303,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76643', - id: '201288', + _id: '201288', to: '221251', }, { @@ -1311,7 +1311,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76644', - id: '201296', + _id: '201296', to: '221251', }, { @@ -1319,7 +1319,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76645', - id: '201366', + _id: '201366', to: '221407', }, { @@ -1327,7 +1327,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76646', - id: '201369', + _id: '201369', to: '221435', }, { @@ -1335,7 +1335,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76648', - id: '201372', + _id: '201372', to: '221450', }, { @@ -1343,7 +1343,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76649', - id: '201375', + _id: '201375', to: '221479', }, { @@ -1351,7 +1351,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76849', - id: '201406', + _id: '201406', to: '222034', }, { @@ -1359,7 +1359,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76851', - id: '201431', + _id: '201431', to: '222242', }, { @@ -1367,7 +1367,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '76853', - id: '201527', + _id: '201527', to: '222251', }, { @@ -1375,7 +1375,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '77494', - id: '202015', + _id: '202015', to: '222695', }, { @@ -1383,7 +1383,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '77519', - id: '202042', + _id: '202042', to: '222779', }, { @@ -1391,7 +1391,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '78049', - id: '202898', + _id: '202898', to: '223101', }, { @@ -1399,7 +1399,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '78770', - id: '203011', + _id: '203011', to: '223621', }, { @@ -1407,7 +1407,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '78789', - id: '203063', + _id: '203063', to: '223656', }, { @@ -1415,7 +1415,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '78796', - id: '203253', + _id: '203253', to: '223832', }, { @@ -1423,7 +1423,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '78835', - id: '203626', + _id: '203626', to: '224052', }, { @@ -1431,7 +1431,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '78937', - id: '203638', + _id: '203638', to: '224145', }, { @@ -1439,7 +1439,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '78938', - id: '203641', + _id: '203641', to: '224186', }, { @@ -1447,7 +1447,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '79008', - id: '203644', + _id: '203644', to: '224187', }, { @@ -1455,7 +1455,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '79038', - id: '203918', + _id: '203918', to: '224289', }, { @@ -1463,7 +1463,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '79044', - id: '204050', + _id: '204050', to: '224294', }, { @@ -1471,7 +1471,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '79149', - id: '204476', + _id: '204476', to: '224625', }, { @@ -1479,7 +1479,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '79276', - id: '204528', + _id: '204528', to: '224625', }, { @@ -1487,7 +1487,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '79756', - id: '205491', + _id: '205491', to: '225292', }, { @@ -1495,7 +1495,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '79951', - id: '205518', + _id: '205518', to: '225292', }, { @@ -1503,7 +1503,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '79952', - id: '206040', + _id: '206040', to: '225312', }, { @@ -1511,7 +1511,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '80315', - id: '206123', + _id: '206123', to: '225544', }, { @@ -1519,7 +1519,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '80383', - id: '206277', + _id: '206277', to: '225654', }, { @@ -1527,7 +1527,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '80384', - id: '206324', + _id: '206324', to: '225654', }, { @@ -1535,7 +1535,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '80457', - id: '206586', + _id: '206586', to: '225723', }, { @@ -1543,7 +1543,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '80477', - id: '206652', + _id: '206652', to: '225764', }, { @@ -1551,7 +1551,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '80486', - id: '207017', + _id: '207017', to: '225765', }, { @@ -1559,7 +1559,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '80914', - id: '207657', + _id: '207657', to: '225913', }, { @@ -1567,7 +1567,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '80915', - id: '207672', + _id: '207672', to: '225953', }, { @@ -1575,7 +1575,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '80978', - id: '207926', + _id: '207926', to: '226144', }, { @@ -1583,7 +1583,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81436', - id: '207995', + _id: '207995', to: '226159', }, { @@ -1591,7 +1591,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81469', - id: '208312', + _id: '208312', to: '226216', }, { @@ -1599,7 +1599,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81484', - id: '208315', + _id: '208315', to: '226218', }, { @@ -1607,7 +1607,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81485', - id: '208330', + _id: '208330', to: '226221', }, { @@ -1615,7 +1615,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81494', - id: '208813', + _id: '208813', to: '226223', }, { @@ -1623,7 +1623,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81495', - id: '208965', + _id: '208965', to: '226224', }, { @@ -1631,7 +1631,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81507', - id: '209066', + _id: '209066', to: '226225', }, { @@ -1639,7 +1639,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81845', - id: '209861', + _id: '209861', to: '227002', }, { @@ -1647,7 +1647,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81927', - id: '209955', + _id: '209955', to: '227437', }, { @@ -1655,7 +1655,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81928', - id: '210027', + _id: '210027', to: '227466', }, { @@ -1663,7 +1663,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81929', - id: '210032', + _id: '210032', to: '227466', }, { @@ -1671,7 +1671,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81930', - id: '210255', + _id: '210255', to: '227480', }, { @@ -1679,7 +1679,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '81982', - id: '210352', + _id: '210352', to: '227501', }, { @@ -1687,7 +1687,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '82446', - id: '211157', + _id: '211157', to: '227930', }, { @@ -1695,7 +1695,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '82704', - id: '212797', + _id: '212797', to: '228142', }, { @@ -1703,7 +1703,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '83510', - id: '214603', + _id: '214603', to: '228472', }, { @@ -1711,7 +1711,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '83685', - id: '215294', + _id: '215294', to: '228821', }, { @@ -1719,7 +1719,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '83716', - id: '215669', + _id: '215669', to: '228964', }, { @@ -1727,7 +1727,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '84502', - id: '216269', + _id: '216269', to: '229419', }, { @@ -1735,7 +1735,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '84640', - id: '216657', + _id: '216657', to: '229509', }, { @@ -1743,7 +1743,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '84641', - id: '216799', + _id: '216799', to: '229515', }, { @@ -1751,7 +1751,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '84671', - id: '216966', + _id: '216966', to: '229559', }, { @@ -1759,7 +1759,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '84672', - id: '217386', + _id: '217386', to: '229575', }, { @@ -1767,7 +1767,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '84912', - id: '217486', + _id: '217486', to: '229606', }, { @@ -1775,7 +1775,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '85067', - id: '217667', + _id: '217667', to: '229710', }, { @@ -1783,7 +1783,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '85439', - id: '218604', + _id: '218604', to: '229814', }, { @@ -1791,7 +1791,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '85525', - id: '218613', + _id: '218613', to: '229868', }, { @@ -1799,7 +1799,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '86013', - id: '219040', + _id: '219040', to: '230097', }, { @@ -1807,7 +1807,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '86186', - id: '219732', + _id: '219732', to: '230430', }, { @@ -1815,7 +1815,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '86680', - id: '219819', + _id: '219819', to: '230790', }, { @@ -1823,7 +1823,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '86769', - id: '220142', + _id: '220142', to: '230946', }, { @@ -1831,7 +1831,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '86770', - id: '220145', + _id: '220145', to: '230963', }, { @@ -1839,7 +1839,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '86803', - id: '220168', + _id: '220168', to: '231099', }, { @@ -1847,7 +1847,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '86804', - id: '220365', + _id: '220365', to: '231099', }, { @@ -1855,7 +1855,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '87071', - id: '220392', + _id: '220392', to: '231279', }, { @@ -1863,7 +1863,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '87210', - id: '220520', + _id: '220520', to: '231477', }, { @@ -1871,7 +1871,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '87330', - id: '220557', + _id: '220557', to: '231894', }, { @@ -1879,7 +1879,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '87331', - id: '220560', + _id: '220560', to: '231894', }, { @@ -1887,7 +1887,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '87946', - id: '220682', + _id: '220682', to: '232149', }, { @@ -1895,7 +1895,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '88004', - id: '220685', + _id: '220685', to: '232173', }, { @@ -1903,7 +1903,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '88062', - id: '220688', + _id: '220688', to: '232173', }, { @@ -1911,7 +1911,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '88137', - id: '220691', + _id: '220691', to: '232224', }, { @@ -1919,7 +1919,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '88729', - id: '220818', + _id: '220818', to: '233247', }, { @@ -1927,7 +1927,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '88767', - id: '220824', + _id: '220824', to: '233303', }, { @@ -1935,7 +1935,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '88776', - id: '220952', + _id: '220952', to: '233318', }, { @@ -1943,7 +1943,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '88910', - id: '221230', + _id: '221230', to: '233319', }, { @@ -1951,7 +1951,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89028', - id: '221899', + _id: '221899', to: '233481', }, { @@ -1959,7 +1959,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89029', - id: '221902', + _id: '221902', to: '233493', }, { @@ -1967,7 +1967,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89052', - id: '221928', + _id: '221928', to: '233500', }, { @@ -1975,7 +1975,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89591', - id: '223547', + _id: '223547', to: '233568', }, { @@ -1983,7 +1983,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89651', - id: '223589', + _id: '223589', to: '233568', }, { @@ -1991,7 +1991,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89652', - id: '223919', + _id: '223919', to: '233568', }, { @@ -1999,7 +1999,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89653', - id: '223945', + _id: '223945', to: '233573', }, { @@ -2007,7 +2007,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89654', - id: '223948', + _id: '223948', to: '233573', }, { @@ -2015,7 +2015,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89683', - id: '223997', + _id: '223997', to: '233597', }, { @@ -2023,7 +2023,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89684', - id: '224000', + _id: '224000', to: '233601', }, { @@ -2031,7 +2031,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89685', - id: '224079', + _id: '224079', to: '233601', }, { @@ -2039,7 +2039,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89686', - id: '224082', + _id: '224082', to: '233618', }, { @@ -2047,7 +2047,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89799', - id: '224214', + _id: '224214', to: '233640', }, { @@ -2055,7 +2055,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89813', - id: '224217', + _id: '224217', to: '233640', }, { @@ -2063,7 +2063,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89900', - id: '224282', + _id: '224282', to: '233640', }, { @@ -2071,7 +2071,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '89945', - id: '225516', + _id: '225516', to: '233658', }, { @@ -2079,7 +2079,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '90011', - id: '225562', + _id: '225562', to: '233658', }, { @@ -2087,7 +2087,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91370', - id: '228039', + _id: '228039', to: '233778', }, { @@ -2095,7 +2095,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91400', - id: '228787', + _id: '228787', to: '233780', }, { @@ -2103,7 +2103,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91443', - id: '228790', + _id: '228790', to: '233782', }, { @@ -2111,7 +2111,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91530', - id: '228793', + _id: '228793', to: '233785', }, { @@ -2119,7 +2119,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91531', - id: '229037', + _id: '229037', to: '233789', }, { @@ -2127,7 +2127,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91532', - id: '229040', + _id: '229040', to: '233790', }, { @@ -2135,7 +2135,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91533', - id: '229048', + _id: '229048', to: '233792', }, { @@ -2143,7 +2143,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91534', - id: '229085', + _id: '229085', to: '233793', }, { @@ -2151,7 +2151,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91576', - id: '229088', + _id: '229088', to: '233794', }, { @@ -2159,7 +2159,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '91674', - id: '229223', + _id: '229223', to: '233795', }, { @@ -2167,7 +2167,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '92248', - id: '230577', + _id: '230577', to: '233823', }, { @@ -2175,7 +2175,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '92874', - id: '231515', + _id: '231515', to: '233974', }, { @@ -2183,7 +2183,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '94079', - id: '233577', + _id: '233577', to: '235051', }, { @@ -2191,7 +2191,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '94128', - id: '233705', + _id: '233705', to: '235135', }, { @@ -2199,7 +2199,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '95698', - id: '235367', + _id: '235367', to: '235475', }, { @@ -2207,7 +2207,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '96641', - id: '235766', + _id: '235766', to: '235713', }, { @@ -2215,7 +2215,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '96652', - id: '236073', + _id: '236073', to: '235769', }, { @@ -2223,7 +2223,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '96681', - id: '236076', + _id: '236076', to: '235769', }, { @@ -2231,7 +2231,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '96747', - id: '236525', + _id: '236525', to: '236056', }, { @@ -2239,7 +2239,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '96780', - id: '236969', + _id: '236969', to: '236112', }, { @@ -2247,7 +2247,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '96871', - id: '237004', + _id: '237004', to: '236221', }, { @@ -2255,7 +2255,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '97695', - id: '238404', + _id: '238404', to: '236457', }, { @@ -2263,7 +2263,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '97730', - id: '239533', + _id: '239533', to: '236496', }, { @@ -2271,7 +2271,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '97794', - id: '240341', + _id: '240341', to: '236523', }, { @@ -2279,7 +2279,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '97934', - id: '240646', + _id: '240646', to: '236679', }, { @@ -2287,7 +2287,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98075', - id: '240649', + _id: '240649', to: '236719', }, { @@ -2295,7 +2295,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98195', - id: '241172', + _id: '241172', to: '236929', }, { @@ -2303,7 +2303,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98214', - id: '241601', + _id: '241601', to: '237006', }, { @@ -2311,7 +2311,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98264', - id: '242004', + _id: '242004', to: '237119', }, { @@ -2319,7 +2319,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98396', - id: '242678', + _id: '242678', to: '237169', }, { @@ -2327,7 +2327,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98397', - id: '242734', + _id: '242734', to: '237199', }, { @@ -2335,7 +2335,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98433', - id: '242779', + _id: '242779', to: '237272', }, { @@ -2343,7 +2343,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98480', - id: '242782', + _id: '242782', to: '237272', }, { @@ -2351,7 +2351,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98481', - id: '242933', + _id: '242933', to: '237288', }, { @@ -2359,7 +2359,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98533', - id: '244322', + _id: '244322', to: '237476', }, { @@ -2367,7 +2367,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98642', - id: '245553', + _id: '245553', to: '237622', }, { @@ -2375,7 +2375,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98645', - id: '245562', + _id: '245562', to: '237715', }, { @@ -2383,7 +2383,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98725', - id: '247113', + _id: '247113', to: '238088', }, { @@ -2391,7 +2391,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98994', - id: '248473', + _id: '248473', to: '238443', }, { @@ -2399,7 +2399,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '98996', - id: '248694', + _id: '248694', to: '238537', }, { @@ -2407,7 +2407,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99012', - id: '250454', + _id: '250454', to: '238782', }, { @@ -2415,7 +2415,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99017', - id: '250764', + _id: '250764', to: '238993', }, { @@ -2423,7 +2423,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99019', - id: '250845', + _id: '250845', to: '239021', }, { @@ -2431,7 +2431,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99025', - id: '250951', + _id: '250951', to: '239195', }, { @@ -2439,7 +2439,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99029', - id: '250960', + _id: '250960', to: '239274', }, { @@ -2447,7 +2447,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99030', - id: '250963', + _id: '250963', to: '239274', }, { @@ -2455,7 +2455,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99031', - id: '250982', + _id: '250982', to: '239285', }, { @@ -2463,7 +2463,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99049', - id: '250988', + _id: '250988', to: '239286', }, { @@ -2471,7 +2471,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99050', - id: '250991', + _id: '250991', to: '239287', }, { @@ -2479,7 +2479,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99051', - id: '250994', + _id: '250994', to: '239291', }, { @@ -2487,7 +2487,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99067', - id: '251066', + _id: '251066', to: '239407', }, { @@ -2495,7 +2495,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99072', - id: '251408', + _id: '251408', to: '239434', }, { @@ -2503,7 +2503,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99099', - id: '252167', + _id: '252167', to: '239535', }, { @@ -2511,7 +2511,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99134', - id: '252282', + _id: '252282', to: '239602', }, { @@ -2519,7 +2519,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99169', - id: '253014', + _id: '253014', to: '239863', }, { @@ -2527,7 +2527,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99172', - id: '253053', + _id: '253053', to: '239904', }, { @@ -2535,7 +2535,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99174', - id: '253119', + _id: '253119', to: '239957', }, { @@ -2543,7 +2543,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99175', - id: '253122', + _id: '253122', to: '239968', }, { @@ -2551,7 +2551,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99176', - id: '253125', + _id: '253125', to: '239968', }, { @@ -2559,7 +2559,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99177', - id: '253128', + _id: '253128', to: '239991', }, { @@ -2567,7 +2567,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99178', - id: '253131', + _id: '253131', to: '239995', }, { @@ -2575,7 +2575,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99220', - id: '253680', + _id: '253680', to: '240028', }, { @@ -2583,7 +2583,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99223', - id: '253757', + _id: '253757', to: '240080', }, { @@ -2591,7 +2591,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99224', - id: '253919', + _id: '253919', to: '240090', }, { @@ -2599,7 +2599,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99240', - id: '253958', + _id: '253958', to: '240257', }, { @@ -2607,7 +2607,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99242', - id: '253964', + _id: '253964', to: '240293', }, { @@ -2615,7 +2615,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99245', - id: '254060', + _id: '254060', to: '240423', }, { @@ -2623,7 +2623,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99246', - id: '254065', + _id: '254065', to: '240535', }, { @@ -2631,7 +2631,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99247', - id: '254071', + _id: '254071', to: '240537', }, { @@ -2639,7 +2639,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99248', - id: '254213', + _id: '254213', to: '240537', }, { @@ -2647,7 +2647,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99249', - id: '254294', + _id: '254294', to: '240541', }, { @@ -2655,7 +2655,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99250', - id: '254317', + _id: '254317', to: '240546', }, { @@ -2663,7 +2663,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99251', - id: '254320', + _id: '254320', to: '240549', }, { @@ -2671,7 +2671,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99252', - id: '254388', + _id: '254388', to: '240554', }, { @@ -2679,7 +2679,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '99253', - id: '254391', + _id: '254391', to: '240572', }, { @@ -2687,7 +2687,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '102254', - id: '258536', + _id: '258536', to: '253832', }, { @@ -2695,7 +2695,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '102465', - id: '258783', + _id: '258783', to: '254631', }, { @@ -2703,7 +2703,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '102583', - id: '258873', + _id: '258873', to: '254948', }, { @@ -2711,7 +2711,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '102584', - id: '258910', + _id: '258910', to: '254984', }, { @@ -2719,7 +2719,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '102585', - id: '258913', + _id: '258913', to: '254996', }, { @@ -2727,7 +2727,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '102587', - id: '258961', + _id: '258961', to: '255038', }, { @@ -2735,7 +2735,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '103862', - id: '260048', + _id: '260048', to: '145158', }, { @@ -2743,7 +2743,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '103863', - id: '260190', + _id: '260190', to: '145160', }, { @@ -2751,7 +2751,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '104203', - id: '260234', + _id: '260234', to: '145160', }, { @@ -2759,7 +2759,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '105132', - id: '260521', + _id: '260521', to: '144622', }, { @@ -2767,7 +2767,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '105518', - id: '260639', + _id: '260639', to: '143936', }, { @@ -2775,7 +2775,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '105812', - id: '260970', + _id: '260970', to: '143628', }, { @@ -2783,7 +2783,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '106897', - id: '261229', + _id: '261229', to: '142926', }, { @@ -2791,7 +2791,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '107709', - id: '261247', + _id: '261247', to: '142673', }, { @@ -2799,7 +2799,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '107712', - id: '261286', + _id: '261286', to: '142336', }, { @@ -2807,7 +2807,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '107922', - id: '261320', + _id: '261320', to: '142219', }, { @@ -2815,7 +2815,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '108041', - id: '261425', + _id: '261425', to: '142013', }, { @@ -2823,7 +2823,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '110144', - id: '262469', + _id: '262469', to: '141122', }, { @@ -2831,7 +2831,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '110394', - id: '262683', + _id: '262683', to: '140956', }, { @@ -2839,7 +2839,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '111130', - id: '262896', + _id: '262896', to: '140626', }, { @@ -2847,7 +2847,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '111621', - id: '263076', + _id: '263076', to: '140505', }, { @@ -2855,7 +2855,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '111697', - id: '263079', + _id: '263079', to: '140505', }, { @@ -2863,7 +2863,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '111728', - id: '263082', + _id: '263082', to: '140517', }, { @@ -2871,7 +2871,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '113038', - id: '263622', + _id: '263622', to: '139941', }, { @@ -2879,7 +2879,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '113047', - id: '263681', + _id: '263681', to: '139941', }, { @@ -2887,7 +2887,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '113363', - id: '265718', + _id: '265718', to: '139479', }, { @@ -2895,7 +2895,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '113892', - id: '265733', + _id: '265733', to: '139331', }, { @@ -2903,7 +2903,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '114070', - id: '266422', + _id: '266422', to: '139246', }, { @@ -2911,7 +2911,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '114158', - id: '266425', + _id: '266425', to: '139259', }, { @@ -2919,7 +2919,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '115821', - id: '269676', + _id: '269676', to: '138562', }, { @@ -2927,7 +2927,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '115823', - id: '270019', + _id: '270019', to: '138547', }, { @@ -2935,7 +2935,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '115824', - id: '270267', + _id: '270267', to: '138548', }, { @@ -2943,7 +2943,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '115865', - id: '270712', + _id: '270712', to: '138496', }, { @@ -2951,7 +2951,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '115866', - id: '271154', + _id: '271154', to: '138497', }, { @@ -2959,7 +2959,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '115876', - id: '271157', + _id: '271157', to: '138498', }, { @@ -2967,7 +2967,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '115910', - id: '271160', + _id: '271160', to: '138499', }, { @@ -2975,7 +2975,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '115911', - id: '271257', + _id: '271257', to: '138505', }, { @@ -2983,7 +2983,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '115974', - id: '271416', + _id: '271416', to: '138487', }, { @@ -2991,7 +2991,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '116090', - id: '271523', + _id: '271523', to: '138442', }, { @@ -2999,7 +2999,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '116241', - id: '271672', + _id: '271672', to: '138446', }, { @@ -3007,7 +3007,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '116242', - id: '271861', + _id: '271861', to: '138451', }, { @@ -3015,7 +3015,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '116303', - id: '271864', + _id: '271864', to: '138453', }, { @@ -3023,7 +3023,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '116478', - id: '272653', + _id: '272653', to: '138453', }, { @@ -3031,7 +3031,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '116487', - id: '273310', + _id: '273310', to: '138456', }, { @@ -3039,7 +3039,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '116663', - id: '273490', + _id: '273490', to: '138458', }, { @@ -3047,7 +3047,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '116684', - id: '273493', + _id: '273493', to: '138458', }, { @@ -3055,7 +3055,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '116685', - id: '273496', + _id: '273496', to: '138459', }, { @@ -3063,7 +3063,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '117625', - id: '275135', + _id: '275135', to: '138217', }, { @@ -3071,7 +3071,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '117774', - id: '275825', + _id: '275825', to: '138179', }, { @@ -3079,7 +3079,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '117778', - id: '275897', + _id: '275897', to: '138179', }, { @@ -3087,7 +3087,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118021', - id: '276860', + _id: '276860', to: '137976', }, { @@ -3095,7 +3095,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118022', - id: '277375', + _id: '277375', to: '137916', }, { @@ -3103,7 +3103,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118024', - id: '277687', + _id: '277687', to: '137806', }, { @@ -3111,7 +3111,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118592', - id: '280046', + _id: '280046', to: '137567', }, { @@ -3119,7 +3119,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118593', - id: '280276', + _id: '280276', to: '137479', }, { @@ -3127,7 +3127,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118841', - id: '280337', + _id: '280337', to: '137479', }, { @@ -3135,7 +3135,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118844', - id: '280760', + _id: '280760', to: '137347', }, { @@ -3143,7 +3143,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118845', - id: '280763', + _id: '280763', to: '137347', }, { @@ -3151,7 +3151,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118846', - id: '281201', + _id: '281201', to: '137353', }, { @@ -3159,7 +3159,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '118847', - id: '281204', + _id: '281204', to: '137325', }, { @@ -3167,7 +3167,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '120022', - id: '284350', + _id: '284350', to: '136711', }, { @@ -3175,7 +3175,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '122158', - id: '287439', + _id: '287439', to: '134303', }, { @@ -3183,7 +3183,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '122159', - id: '287442', + _id: '287442', to: '134303', }, { @@ -3191,7 +3191,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '123178', - id: '289951', + _id: '289951', to: '133239', }, { @@ -3199,7 +3199,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '123200', - id: '289957', + _id: '289957', to: '133106', }, { @@ -3207,7 +3207,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '123202', - id: '290044', + _id: '290044', to: '132900', }, { @@ -3215,7 +3215,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '123204', - id: '290174', + _id: '290174', to: '132751', }, { @@ -3223,7 +3223,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '123213', - id: '291188', + _id: '291188', to: '132644', }, { @@ -3231,7 +3231,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '123215', - id: '291207', + _id: '291207', to: '132505', }, { @@ -3239,7 +3239,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '123807', - id: '293676', + _id: '293676', to: '129658', }, { @@ -3247,7 +3247,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '123828', - id: '293808', + _id: '293808', to: '129639', }, { @@ -3255,7 +3255,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '124511', - id: '295379', + _id: '295379', to: '128644', }, { @@ -3263,7 +3263,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '127935', - id: '303518', + _id: '303518', to: '125049', }, { @@ -3271,7 +3271,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '129578', - id: '304979', + _id: '304979', to: '124029', }, { @@ -3279,7 +3279,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '136499', - id: '311009', + _id: '311009', to: '120636', }, { @@ -3287,7 +3287,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '136716', - id: '311705', + _id: '311705', to: '120225', }, { @@ -3295,7 +3295,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '136840', - id: '312189', + _id: '312189', to: '120097', }, { @@ -3303,7 +3303,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '137074', - id: '313272', + _id: '313272', to: '119381', }, { @@ -3311,7 +3311,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '137075', - id: '313275', + _id: '313275', to: '119381', }, { @@ -3319,7 +3319,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '140750', - id: '334130', + _id: '334130', to: '111478', }, { @@ -3327,7 +3327,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '142116', - id: '336036', + _id: '336036', to: '108491', }, { @@ -3335,7 +3335,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '142618', - id: '336096', + _id: '336096', to: '108298', }, { @@ -3343,7 +3343,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '145162', - id: '337772', + _id: '337772', to: '105111', }, { @@ -3351,7 +3351,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '145422', - id: '338383', + _id: '338383', to: '103850', }, { @@ -3359,7 +3359,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '147401', - id: '339613', + _id: '339613', to: '102796', }, { @@ -3367,7 +3367,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '147561', - id: '340105', + _id: '340105', to: '102748', }, { @@ -3375,7 +3375,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '148019', - id: '340780', + _id: '340780', to: '102540', }, { @@ -3383,7 +3383,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '148020', - id: '340783', + _id: '340783', to: '102544', }, { @@ -3391,7 +3391,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '148048', - id: '340859', + _id: '340859', to: '102544', }, { @@ -3399,7 +3399,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '148049', - id: '340915', + _id: '340915', to: '102546', }, { @@ -3407,7 +3407,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '148050', - id: '340918', + _id: '340918', to: '102546', }, { @@ -3415,7 +3415,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '148149', - id: '340921', + _id: '340921', to: '102514', }, { @@ -3423,7 +3423,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '148150', - id: '340924', + _id: '340924', to: '102472', }, { @@ -3431,7 +3431,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '148200', - id: '342062', + _id: '342062', to: '102435', }, { @@ -3439,7 +3439,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '148214', - id: '342243', + _id: '342243', to: '102355', }, { @@ -3447,7 +3447,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '149201', - id: '346058', + _id: '346058', to: '101679', }, { @@ -3455,7 +3455,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '149202', - id: '346098', + _id: '346098', to: '101679', }, { @@ -3463,7 +3463,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '149221', - id: '346504', + _id: '346504', to: '101671', }, { @@ -3471,7 +3471,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '149262', - id: '346507', + _id: '346507', to: '101663', }, { @@ -3479,7 +3479,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '153428', - id: '350959', + _id: '350959', to: '101153', }, { @@ -3487,7 +3487,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '154409', - id: '396695', + _id: '396695', to: '100585', }, { @@ -3495,7 +3495,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '154576', - id: '396698', + _id: '396698', to: '100585', }, { @@ -3503,7 +3503,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '154594', - id: '396836', + _id: '396836', to: '100570', }, { @@ -3511,7 +3511,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '158950', - id: '398006', + _id: '398006', to: '100419', }, { @@ -3519,7 +3519,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '158952', - id: '398012', + _id: '398012', to: '100411', }, { @@ -3527,7 +3527,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '160652', - id: '399130', + _id: '399130', to: '100258', }, { @@ -3535,7 +3535,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '161397', - id: '400008', + _id: '400008', to: '100157', }, { @@ -3543,7 +3543,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '162368', - id: '401287', + _id: '401287', to: '100092', }, { @@ -3551,7 +3551,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '162369', - id: '401290', + _id: '401290', to: '100074', }, { @@ -3559,7 +3559,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '162370', - id: '401415', + _id: '401415', to: '100046', }, { @@ -3567,7 +3567,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '162564', - id: '401499', + _id: '401499', to: '100039', }, { @@ -3575,7 +3575,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '163651', - id: '403050', + _id: '403050', to: '99830', }, { @@ -3583,7 +3583,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '163652', - id: '403865', + _id: '403865', to: '99826', }, { @@ -3591,7 +3591,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '163981', - id: '405923', + _id: '405923', to: '99711', }, { @@ -3599,7 +3599,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '163982', - id: '405926', + _id: '405926', to: '99711', }, { @@ -3607,7 +3607,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '164259', - id: '408611', + _id: '408611', to: '99668', }, { @@ -3615,7 +3615,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '164407', - id: '409102', + _id: '409102', to: '99628', }, { @@ -3623,7 +3623,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '164588', - id: '409132', + _id: '409132', to: '99530', }, { @@ -3631,7 +3631,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '164618', - id: '409928', + _id: '409928', to: '99457', }, { @@ -3639,7 +3639,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '165002', - id: '411435', + _id: '411435', to: '99411', }, { @@ -3647,7 +3647,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '171855', - id: '429271', + _id: '429271', to: '99154', }, { @@ -3655,7 +3655,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '173891', - id: '431273', + _id: '431273', to: '99005', }, { @@ -3663,7 +3663,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '174102', - id: '431286', + _id: '431286', to: '99005', }, { @@ -3671,7 +3671,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '174193', - id: '431496', + _id: '431496', to: '99007', }, { @@ -3679,7 +3679,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '174194', - id: '431530', + _id: '431530', to: '99007', }, { @@ -3687,7 +3687,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '178770', - id: '436711', + _id: '436711', to: '98429', }, { @@ -3695,7 +3695,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '180920', - id: '442285', + _id: '442285', to: '97759', }, { @@ -3703,7 +3703,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '184781', - id: '450673', + _id: '450673', to: '95610', }, { @@ -3711,7 +3711,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '186905', - id: '458451', + _id: '458451', to: '92594', }, { @@ -3719,7 +3719,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '186906', - id: '458774', + _id: '458774', to: '92599', }, { @@ -3727,7 +3727,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '187754', - id: '460053', + _id: '460053', to: '91573', }, { @@ -3735,7 +3735,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '187758', - id: '460495', + _id: '460495', to: '91495', }, { @@ -3743,7 +3743,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '187760', - id: '460554', + _id: '460554', to: '91432', }, { @@ -3751,7 +3751,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '188038', - id: '463689', + _id: '463689', to: '90506', }, { @@ -3759,7 +3759,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '188249', - id: '464287', + _id: '464287', to: '90127', }, { @@ -3767,7 +3767,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '189218', - id: '468886', + _id: '468886', to: '89545', }, { @@ -3775,7 +3775,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '189251', - id: '468895', + _id: '468895', to: '89352', }, { @@ -3783,7 +3783,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '189252', - id: '469003', + _id: '469003', to: '89328', }, { @@ -3791,7 +3791,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '189740', - id: '470176', + _id: '470176', to: '89036', }, { @@ -3799,7 +3799,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '190348', - id: '471932', + _id: '471932', to: '88956', }, { @@ -3807,7 +3807,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '190426', - id: '472099', + _id: '472099', to: '88907', }, { @@ -3815,7 +3815,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '191741', - id: '476196', + _id: '476196', to: '86929', }, { @@ -3823,7 +3823,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '194094', - id: '477471', + _id: '477471', to: '85438', }, { @@ -3831,7 +3831,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '195639', - id: '479334', + _id: '479334', to: '83349', }, { @@ -3839,7 +3839,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '202035', - id: '487688', + _id: '487688', to: '80825', }, { @@ -3847,7 +3847,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '206563', - id: '494436', + _id: '494436', to: '77493', }, { @@ -3855,7 +3855,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '208306', - id: '497847', + _id: '497847', to: '76619', }, { @@ -3863,7 +3863,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '211279', - id: '506565', + _id: '506565', to: '74771', }, { @@ -3871,7 +3871,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '212876', - id: '510726', + _id: '510726', to: '73237', }, { @@ -3879,7 +3879,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '214266', - id: '513789', + _id: '513789', to: '72622', }, { @@ -3887,7 +3887,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '214267', - id: '513792', + _id: '513792', to: '72597', }, { @@ -3895,7 +3895,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '214505', - id: '514357', + _id: '514357', to: '72597', }, { @@ -3903,7 +3903,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '214922', - id: '514815', + _id: '514815', to: '72510', }, { @@ -3911,7 +3911,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '214923', - id: '514818', + _id: '514818', to: '72514', }, { @@ -3919,7 +3919,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '215060', - id: '514910', + _id: '514910', to: '72528', }, { @@ -3927,7 +3927,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '215061', - id: '515278', + _id: '515278', to: '72528', }, { @@ -3935,7 +3935,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '215180', - id: '515580', + _id: '515580', to: '72528', }, { @@ -3943,7 +3943,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '215458', - id: '516700', + _id: '516700', to: '72463', }, { @@ -3951,7 +3951,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '215459', - id: '516703', + _id: '516703', to: '72463', }, { @@ -3959,7 +3959,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '215546', - id: '516706', + _id: '516706', to: '72463', }, { @@ -3967,7 +3967,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '215547', - id: '516709', + _id: '516709', to: '72463', }, { @@ -3975,7 +3975,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '215768', - id: '517232', + _id: '517232', to: '72419', }, { @@ -3983,7 +3983,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '215924', - id: '517235', + _id: '517235', to: '72407', }, { @@ -3991,7 +3991,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '216033', - id: '517238', + _id: '517238', to: '72413', }, { @@ -3999,7 +3999,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '216724', - id: '518890', + _id: '518890', to: '71962', }, { @@ -4007,7 +4007,7 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF Type: 'TO_MESSAGE', }, from: '216955', - id: '519521', + _id: '519521', to: '71835', }, ], @@ -4020,126 +4020,126 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "<!here> If you haven't seen it yet, there is a root password bug on high-sierra OSX, \n*enable root user and set a password*.", type: 'message', }, - id: '15964', + _id: '15964', }, { attributes: { id: '1511911967.000039--scream--U08J5DPMG', labels: ['Reaction'], }, - id: '18037', + _id: '18037', }, { attributes: { id: '1511911967.000039--scream--U1QM2S99U', labels: ['Reaction'], }, - id: '18038', + _id: '18038', }, { attributes: { id: '1511911967.000039--scream--U7VPM4P7A', labels: ['Reaction'], }, - id: '18039', + _id: '18039', }, { attributes: { id: '1511911967.000039--scream--U3RJEUY2Z', labels: ['Reaction'], }, - id: '18040', + _id: '18040', }, { attributes: { id: '1511911967.000039--scream--U7X490V7X', labels: ['Reaction'], }, - id: '18041', + _id: '18041', }, { attributes: { id: '1511911967.000039--scream--U601XEV42', labels: ['Reaction'], }, - id: '18042', + _id: '18042', }, { attributes: { id: '1511911967.000039--scream--U88CM5GRM', labels: ['Reaction'], }, - id: '18043', + _id: '18043', }, { attributes: { id: '1511911967.000039--scream--U7CKD4D5J', labels: ['Reaction'], }, - id: '18044', + _id: '18044', }, { attributes: { id: '1511911967.000039--bug--U7VPM4P7A', labels: ['Reaction'], }, - id: '18045', + _id: '18045', }, { attributes: { id: '1511911967.000039--bug--U7X490V7X', labels: ['Reaction'], }, - id: '18046', + _id: '18046', }, { attributes: { id: '1511911967.000039--grimacing--U59RA26CS', labels: ['Reaction'], }, - id: '18047', + _id: '18047', }, { attributes: { id: '1511911967.000039--andnowthis--U1QM2S99U', labels: ['Reaction'], }, - id: '18048', + _id: '18048', }, { attributes: { id: '1511911967.000039--andnowthis--U08JGGUBT', labels: ['Reaction'], }, - id: '18112', + _id: '18112', }, { attributes: { id: '1511911967.000039--andnowthis--U0A9PFKJ6', labels: ['Reaction'], }, - id: '18113', + _id: '18113', }, { attributes: { id: '1511911967.000039--boom--U7X490V7X', labels: ['Reaction'], }, - id: '18114', + _id: '18114', }, { attributes: { id: '1511911967.000039--wfh--U08J8R69J', labels: ['Reaction'], }, - id: '18115', + _id: '18115', }, { attributes: { id: '1511911967.000039--cackling-monster--U2R5Q5W9Z', labels: ['Reaction'], }, - id: '18116', + _id: '18116', }, { attributes: { @@ -4149,154 +4149,154 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Early release of a new book published by Manning “Fullstack GraphQL†is now available!\n\nThe book shows how the GraphQL integration for Neo4j can make it easier to build fullstack data intensive applications with GRANDstack!\n\nThe early release includes roughly the first third of the book, and includes new chapters as they are released. If you get it by October 26th it’s only $20. If not, use the code `friendofwill40` for a 40% discount\n\n<https://www.manning.com/books/fullstack-graphql-applications-with-grandstack>', type: 'message', }, - id: '13608', + _id: '13608', }, { attributes: { id: '1572006768.027100--clap--UG5KSKXQF', labels: ['Reaction'], }, - id: '26680', + _id: '26680', }, { attributes: { id: '1572006768.027100--clap--UPL8KN2MN', labels: ['Reaction'], }, - id: '26703', + _id: '26703', }, { attributes: { id: '1572006768.027100--clap--ULAHVNXC6', labels: ['Reaction'], }, - id: '26824', + _id: '26824', }, { attributes: { id: '1572006768.027100--clap--U08J3F3L3', labels: ['Reaction'], }, - id: '26904', + _id: '26904', }, { attributes: { id: '1572006768.027100--clap--U08J6L06Q', labels: ['Reaction'], }, - id: '26905', + _id: '26905', }, { attributes: { id: '1572006768.027100--clap--U3QL2C41E', labels: ['Reaction'], }, - id: '26906', + _id: '26906', }, { attributes: { id: '1572006768.027100--clap--UP101S0JE', labels: ['Reaction'], }, - id: '26916', + _id: '26916', }, { attributes: { id: '1572006768.027100--clap--U2QFWRD51', labels: ['Reaction'], }, - id: '26946', + _id: '26946', }, { attributes: { id: '1572006768.027100--clap--UAT7EM78R', labels: ['Reaction'], }, - id: '26971', + _id: '26971', }, { attributes: { id: '1572006768.027100--graphql--U0975P59N', labels: ['Reaction'], }, - id: '26972', + _id: '26972', }, { attributes: { id: '1572006768.027100--graphql--UPL8KN2MN', labels: ['Reaction'], }, - id: '26999', + _id: '26999', }, { attributes: { id: '1572006768.027100--graphql--ULAHVNXC6', labels: ['Reaction'], }, - id: '27035', + _id: '27035', }, { attributes: { id: '1572006768.027100--graphql--U08J6L06Q', labels: ['Reaction'], }, - id: '27084', + _id: '27084', }, { attributes: { id: '1572006768.027100--graphql--U08J18KHB', labels: ['Reaction'], }, - id: '27115', + _id: '27115', }, { attributes: { id: '1572006768.027100--graphql--UP101S0JE', labels: ['Reaction'], }, - id: '27122', + _id: '27122', }, { attributes: { id: '1572006768.027100--graphql--UPREE4BQR', labels: ['Reaction'], }, - id: '27123', + _id: '27123', }, { attributes: { id: '1572006768.027100--graphql--UAT7EM78R', labels: ['Reaction'], }, - id: '27196', + _id: '27196', }, { attributes: { id: '1572006768.027100--graphql--U93L3LWE8', labels: ['Reaction'], }, - id: '27242', + _id: '27242', }, { attributes: { id: '1572006768.027100--grandstack--U08J18KHB', labels: ['Reaction'], }, - id: '27259', + _id: '27259', }, { attributes: { id: '1572006768.027100--grandstack--UP101S0JE', labels: ['Reaction'], }, - id: '27374', + _id: '27374', }, { attributes: { id: '1572006768.027100--grandstack--U93L3LWE8', labels: ['Reaction'], }, - id: '27375', + _id: '27375', }, { attributes: { @@ -4306,224 +4306,224 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'We’re super excited to share the *preview* release of the graph data science (GDS) library! It’s currently available on the Neo4j download center: <https://neo4j.com/download-center/>. The docs are currently up at <https://neo4j.com/docs/graph-data-science/1.0-preview/>, and the code has been open sourced on our github repo: <https://github.com/neo4j/graph-data-science>\n\nThe GDS includes all your favorite graph algorithms from the graph algorithms library(and some new ones!), but with a standardized surface, better error handling, improved graph loader functionality and expressiveness to support large scale production workloads, and much more.\n\nIf you’re interested in a quick start guide to the new library, we’ve created a browser guide to walk you through the basics -- just enter `:play graph-data-science` in neo4j browser.\n\nIf you have any feedback, please open an issue on github: <https://github.com/neo4j/graph-data-science/issues>', type: 'message', }, - id: '13395', + _id: '13395', }, { attributes: { id: '1581274875.020900--tada--USCTTNARM', labels: ['Reaction'], }, - id: '28957', + _id: '28957', }, { attributes: { id: '1581274875.020900--tada--UF057V96X', labels: ['Reaction'], }, - id: '28958', + _id: '28958', }, { attributes: { id: '1581274875.020900--tada--UQE2F37PS', labels: ['Reaction'], }, - id: '28967', + _id: '28967', }, { attributes: { id: '1581274875.020900--tada--US53722H1', labels: ['Reaction'], }, - id: '28974', + _id: '28974', }, { attributes: { id: '1581274875.020900--tada--U0PKJ7X7C', labels: ['Reaction'], }, - id: '28981', + _id: '28981', }, { attributes: { id: '1581274875.020900--tada--UG5KSKXQF', labels: ['Reaction'], }, - id: '28983', + _id: '28983', }, { attributes: { id: '1581274875.020900--tada--U092PQPML', labels: ['Reaction'], }, - id: '28990', + _id: '28990', }, { attributes: { id: '1581274875.020900--tada--UHA4BS9SR', labels: ['Reaction'], }, - id: '28996', + _id: '28996', }, { attributes: { id: '1581274875.020900--tada--US35T8ML2', labels: ['Reaction'], }, - id: '28997', + _id: '28997', }, { attributes: { id: '1581274875.020900--tada--UTUJ2KMJ4', labels: ['Reaction'], }, - id: '28998', + _id: '28998', }, { attributes: { id: '1581274875.020900--tada--USTA1JG81', labels: ['Reaction'], }, - id: '28999', + _id: '28999', }, { attributes: { id: '1581274875.020900--tada--UQZR2LP28', labels: ['Reaction'], }, - id: '29000', + _id: '29000', }, { attributes: { id: '1581274875.020900--tada--UTKNXRHA7', labels: ['Reaction'], }, - id: '29001', + _id: '29001', }, { attributes: { id: '1581274875.020900--tada--U08J18KHB', labels: ['Reaction'], }, - id: '29009', + _id: '29009', }, { attributes: { id: '1581274875.020900--tada--UF92GJ5L2', labels: ['Reaction'], }, - id: '29010', + _id: '29010', }, { attributes: { id: '1581274875.020900--tada--U5QEK6Z5G', labels: ['Reaction'], }, - id: '29011', + _id: '29011', }, { attributes: { id: '1581274875.020900--tada--U0DDNCDR7', labels: ['Reaction'], }, - id: '29015', + _id: '29015', }, { attributes: { id: '1581274875.020900--tada--UU4BPMDUH', labels: ['Reaction'], }, - id: '29031', + _id: '29031', }, { attributes: { id: '1581274875.020900--tada--USUEG92R0', labels: ['Reaction'], }, - id: '29032', + _id: '29032', }, { attributes: { id: '1581274875.020900--clap--US53722H1', labels: ['Reaction'], }, - id: '29033', + _id: '29033', }, { attributes: { id: '1581274875.020900--clap--U092PQPML', labels: ['Reaction'], }, - id: '29035', + _id: '29035', }, { attributes: { id: '1581274875.020900--clap--UTUJ2KMJ4', labels: ['Reaction'], }, - id: '29062', + _id: '29062', }, { attributes: { id: '1581274875.020900--clap--U5TUQJJBB', labels: ['Reaction'], }, - id: '29063', + _id: '29063', }, { attributes: { id: '1581274875.020900--clap--ULU4HSAKV', labels: ['Reaction'], }, - id: '29064', + _id: '29064', }, { attributes: { id: '1581274875.020900--clap--UF92GJ5L2', labels: ['Reaction'], }, - id: '29065', + _id: '29065', }, { attributes: { id: '1581274875.020900--+1--UTUJ2KMJ4', labels: ['Reaction'], }, - id: '29066', + _id: '29066', }, { attributes: { id: '1581274875.020900--+1--UF92GJ5L2', labels: ['Reaction'], }, - id: '29075', + _id: '29075', }, { attributes: { id: '1581274875.020900--+1--UU288LV4Z', labels: ['Reaction'], }, - id: '29076', + _id: '29076', }, { attributes: { id: '1581274875.020900--star-struck--UTUJ2KMJ4', labels: ['Reaction'], }, - id: '29077', + _id: '29077', }, { attributes: { id: '1581274875.020900--star-struck--UKEQY3MBL', labels: ['Reaction'], }, - id: '29090', + _id: '29090', }, { attributes: { id: '1581274875.020900--star-struck--UF92GJ5L2', labels: ['Reaction'], }, - id: '29091', + _id: '29091', }, { attributes: { @@ -4533,14 +4533,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I knew about the two hard problems (cache invalidation, naming things, and off-by-one errors) but I didn’t know about the three great virtues. Thanks for making me do my homework! :slightly_smiling_face:', type: 'message', }, - id: '146421', + _id: '146421', }, { attributes: { id: '1499895077.196822--grinning--U5WKGNSDN', labels: ['Reaction'], }, - id: '29148', + _id: '29148', }, { attributes: { @@ -4551,14 +4551,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<https://twitter.com/mesirii/status/1050161136585322496>', type: 'message', }, - id: '147405', + _id: '147405', }, { attributes: { id: '1539217992.000100--heart--UBSQXPGS3', labels: ['Reaction'], }, - id: '29205', + _id: '29205', }, { attributes: { @@ -4568,14 +4568,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '(On a side note, it might be real nice if the team at Neo4j helped improve the C driver that’s already published and working, rather than trying to duplicate it all in seabolt.)', type: 'message', }, - id: '150033', + _id: '150033', }, { attributes: { id: '1531333073.000101--+1--U08JCGMQC', labels: ['Reaction'], }, - id: '29862', + _id: '29862', }, { attributes: { @@ -4585,14 +4585,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'thanks for helping!', type: 'message', }, - id: '160180', + _id: '160180', }, { attributes: { id: '1510056353.000253--heart--U7CJ3DLP7', labels: ['Reaction'], }, - id: '32273', + _id: '32273', }, { attributes: { @@ -4602,14 +4602,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'you can export it to csv', type: 'message', }, - id: '161393', + _id: '161393', }, { attributes: { id: '1517960836.000181--+1--U93N1V5ND', labels: ['Reaction'], }, - id: '32880', + _id: '32880', }, { attributes: { @@ -4619,14 +4619,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'do the nodes each have a timestamp?', type: 'message', }, - id: '162017', + _id: '162017', }, { attributes: { id: '1520872041.000611--aquarius--U9ND393E0', labels: ['Reaction'], }, - id: '32885', + _id: '32885', }, { attributes: { @@ -4636,21 +4636,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'finally issue sorted out.. \n\nI have accidentally clicked on logout button from my account and it open popup of ETL App.. I restarted Neo4j desktop and then ETL App got added there..\n\nbtw: Thanks for your time <@U92PVKTEW>', type: 'message', }, - id: '162130', + _id: '162130', }, { attributes: { id: '1521202688.000014--+1--U92PVKTEW', labels: ['Reaction'], }, - id: '32887', + _id: '32887', }, { attributes: { id: '1521202688.000014--+1--U9NR6A0UC', labels: ['Reaction'], }, - id: '32888', + _id: '32888', }, { attributes: { @@ -4660,21 +4660,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@U9NR6A0UC> and <@U92PVKTEW> exact same thing happened to me. When you first install the ETL package and click “Add Application†on the desktop, a quick flash happens and that button never works again until you go to your account and sign out. That kicks that window back to the front. I closed and opened the app a bunch of times before I went into Slack and looked around for answer and found this thread. So, thanks. :slightly_smiling_face:', type: 'message', }, - id: '162155', + _id: '162155', }, { attributes: { id: '1521314863.000007--+1--U92PVKTEW', labels: ['Reaction'], }, - id: '32891', + _id: '32891', }, { attributes: { id: '1521314863.000007--+1--U9NR6A0UC', labels: ['Reaction'], }, - id: '32892', + _id: '32892', }, { attributes: { @@ -4684,14 +4684,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I'll definitely have a look at that", type: 'message', }, - id: '162657', + _id: '162657', }, { attributes: { id: '1524208493.000166--+1--UA93U05PD', labels: ['Reaction'], }, - id: '32898', + _id: '32898', }, { attributes: { @@ -4701,14 +4701,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@UA5M3DDV1> You can use batching and unwind, and concurrent access: <https://medium.com/@mesirii/5-tips-tricks-for-fast-batched-updates-of-graph-structures-with-neo4j-and-cypher-73c7f693c8cc>', type: 'message', }, - id: '162678', + _id: '162678', }, { attributes: { id: '1524329156.000035--+1--UA5M3DDV1', labels: ['Reaction'], }, - id: '32899', + _id: '32899', }, { attributes: { @@ -4718,14 +4718,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'all in a single tx. and you should use a parameter for that list', type: 'message', }, - id: '163028', + _id: '163028', }, { attributes: { id: '1526398245.000875--+1--U79NQ8BCZ', labels: ['Reaction'], }, - id: '32931', + _id: '32931', }, { attributes: { @@ -4735,14 +4735,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'you can write your own procedures in Java -> <https://neo4j.com/docs/developer-manual/current/extending-neo4j/procedures/>', type: 'message', }, - id: '163125', + _id: '163125', }, { attributes: { id: '1526993191.000264--heart--U9Y5GAHUY', labels: ['Reaction'], }, - id: '32932', + _id: '32932', }, { attributes: { @@ -4752,21 +4752,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "This is a two year old article. What the author was getting at is that graphs are not always the optimal choice. It depends on the data model and queries used. I think the author used a bad example. That's an easy query and faster now that time is a native data type with cypher functions to assist working with them.", type: 'message', }, - id: '163643', + _id: '163643', }, { attributes: { id: '1530133960.000306--+1--U08J18KHB', labels: ['Reaction'], }, - id: '32936', + _id: '32936', }, { attributes: { id: '1530133960.000306--+1--UBEEWMMUL', labels: ['Reaction'], }, - id: '32937', + _id: '32937', }, { attributes: { @@ -4776,28 +4776,28 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I think the implication was if your query is all filtering on properties and no graph traversal then it's not the perfect fit.", type: 'message', }, - id: '163645', + _id: '163645', }, { attributes: { id: '1530136853.000200--+1--UBEEWMMUL', labels: ['Reaction'], }, - id: '32955', + _id: '32955', }, { attributes: { id: '1530136853.000200--+1--UBAL24C01', labels: ['Reaction'], }, - id: '32962', + _id: '32962', }, { attributes: { id: '1530136853.000200--+1--U9373KH61', labels: ['Reaction'], }, - id: '33008', + _id: '33008', }, { attributes: { @@ -4807,14 +4807,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Working on it with DevPost! Thank you!', type: 'message', }, - id: '163980', + _id: '163980', }, { attributes: { id: '1569339399.001800--+1--UMYAJAFMK', labels: ['Reaction'], }, - id: '33612', + _id: '33612', }, { attributes: { @@ -4824,14 +4824,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<https://github.com/grand-stack/grand-stack-starter/blob/master/api/package.json#L20-L28>', type: 'message', }, - id: '164186', + _id: '164186', }, { attributes: { id: '1529874718.000080--tada--UAW8MEQJC', labels: ['Reaction'], }, - id: '34027', + _id: '34027', }, { attributes: { @@ -4841,14 +4841,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'In terms of generating a GraphQL API from an existing neo4j database, see this example: <https://blog.grandstack.io/inferring-graphql-type-definitions-from-an-existing-neo4j-database-dadca2138b25>', type: 'message', }, - id: '164535', + _id: '164535', }, { attributes: { id: '1573234226.027800--+1--UL65F4NTB', labels: ['Reaction'], }, - id: '34456', + _id: '34456', }, { attributes: { @@ -4858,14 +4858,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'For anyone else reading, this is the issue we’re referring to: <https://github.com/neo4j-graphql/neo4j-graphql-js/issues/347>', type: 'message', }, - id: '164614', + _id: '164614', }, { attributes: { id: '1574288092.058300--heavy_check_mark--UKEQY3MBL', labels: ['Reaction'], }, - id: '34697', + _id: '34697', }, { attributes: { @@ -4875,14 +4875,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: ':thumbsup: sorry, we should make the `@neo4j_ignore` directive more visible in the docs', type: 'message', }, - id: '164619', + _id: '164619', }, { attributes: { id: '1574719865.062000--+1--UMYAJAFMK', labels: ['Reaction'], }, - id: '34750', + _id: '34750', }, { attributes: { @@ -4892,14 +4892,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Cool - glad you figured it out. Note that in neo4j 4.0 the behavior here is different as all users and roles are managed in a “system†database', type: 'message', }, - id: '164714', + _id: '164714', }, { attributes: { id: '1582044174.048200--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '34852', + _id: '34852', }, { attributes: { @@ -4909,14 +4909,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Excellent, news though I have to agree that the plugin really sped up prototyping. cheers.', type: 'message', }, - id: '164732', + _id: '164732', }, { attributes: { id: '1582221297.058100--+1--U0975P59N', labels: ['Reaction'], }, - id: '35044', + _id: '35044', }, { attributes: { @@ -4927,14 +4927,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Hi, sorry for the lack of response here. I can't keep up with this channel for support at the moment. I'll do the best I can from now :slightly_smiling_face:\n\nAnyway, the API is not removed and won't be for some time.\nWe still haven't ported everything to the GraphQL API yet. We deprecated it early so you developers could prepare for the coming change.\n\nFYI, neo4j-browser will switch to using the GraphQL API in the next or second next release.\nThere's a PR for it: <https://github.com/neo4j/neo4j-browser/pull/969>", type: 'message', }, - id: '164869', + _id: '164869', }, { attributes: { id: '1571387321.006500--handshake--U44ETTDLP', labels: ['Reaction'], }, - id: '35219', + _id: '35219', }, { attributes: { @@ -4944,14 +4944,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "And you're right, 5 months ago there was a breaking change there.\nThe scheme was added and the docs wasn't updated.", type: 'message', }, - id: '164871', + _id: '164871', }, { attributes: { id: '1571387793.007000--+1--U44ETTDLP', labels: ['Reaction'], }, - id: '35326', + _id: '35326', }, { attributes: { @@ -4961,14 +4961,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Just in case you're still looking for this -- <https://www.youtube.com/watch?v=dW6JsFccdkM> :slightly_smiling_face:", type: 'message', }, - id: '165546', + _id: '165546', }, { attributes: { id: '1537449479.000100--+1--U09QAFDD3', labels: ['Reaction'], }, - id: '37870', + _id: '37870', }, { attributes: { @@ -4978,14 +4978,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'May be like this? \n\n`match (n) unwind(keys(n))as items return collect(distinct(items))`', type: 'message', }, - id: '186092', + _id: '186092', }, { attributes: { id: '1486385435.004898--+1--U2PBPERKK', labels: ['Reaction'], }, - id: '51593', + _id: '51593', }, { attributes: { @@ -4995,14 +4995,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Sure thing, good luck!', type: 'message', }, - id: '187925', + _id: '187925', }, { attributes: { id: '1488793191.007231--+1--U3B4WRWJZ', labels: ['Reaction'], }, - id: '54421', + _id: '54421', }, { attributes: { @@ -5012,14 +5012,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: ":slightly_smiling_face: It is gaining traction. There's more players in the graph db market than ever, and Neo is still leading", type: 'message', }, - id: '188984', + _id: '188984', }, { attributes: { id: '1489654969.051861--+1--U0MTRQNPP', labels: ['Reaction'], }, - id: '55288', + _id: '55288', }, { attributes: { @@ -5029,14 +5029,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '`(m:Migration {file:’001-create-person-index.cypher’})`', type: 'message', }, - id: '190440', + _id: '190440', }, { attributes: { id: '1491215752.605098--+1--U3B4WRWJZ', labels: ['Reaction'], }, - id: '56962', + _id: '56962', }, { attributes: { @@ -5046,14 +5046,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<http://neo4j.com/docs/developer-manual/current/cypher/clauses/merge/#query-merge-on-create-on-match>', type: 'message', }, - id: '193413', + _id: '193413', }, { attributes: { id: '1494209640.800668--+1--U3B4WRWJZ', labels: ['Reaction'], }, - id: '57852', + _id: '57852', }, { attributes: { @@ -5064,14 +5064,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "<@U0E7MMYAW> Thanks for getting back. Didn't know <#C192NVBNE|neo4j-browser> exists :thinking_face: Should have checked that first. The issue we have is a confirmed bug: <https://github.com/neo4j/neo4j-browser/issues/511> - and that's taken care of. Thanks for your help!", type: 'message', }, - id: '193855', + _id: '193855', }, { attributes: { id: '1494608416.929656--+1--U0E7MMYAW', labels: ['Reaction'], }, - id: '58061', + _id: '58061', }, { attributes: { @@ -5081,14 +5081,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'true. I was against making the change originally because it’s one more thing for a user to learn. but I’m slowly coming around to it.', type: 'message', }, - id: '193883', + _id: '193883', }, { attributes: { id: '1494616252.566021--+1--U5A60979Q', labels: ['Reaction'], }, - id: '58370', + _id: '58370', }, { attributes: { @@ -5098,14 +5098,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I work now. It's fail because I only pass folder in --from. It's need path to dump file.", type: 'message', }, - id: '194043', + _id: '194043', }, { attributes: { id: '1494840003.243012--+1--U3LFDC78W', labels: ['Reaction'], }, - id: '58651', + _id: '58651', }, { attributes: { @@ -5115,14 +5115,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Execute the query, then select the rows, text or code tab.', type: 'message', }, - id: '194552', + _id: '194552', }, { attributes: { id: '1495532953.610235--+1--U59PZLVKL', labels: ['Reaction'], }, - id: '58685', + _id: '58685', }, { attributes: { @@ -5132,14 +5132,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I see it. Thank you', type: 'message', }, - id: '194553', + _id: '194553', }, { attributes: { id: '1495533007.623909--+1--U58A5L1AR', labels: ['Reaction'], }, - id: '58921', + _id: '58921', }, { attributes: { @@ -5149,14 +5149,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'It sounds like you already have a model satisfying one or more initial use cases and now you’re adding one, so that sounds like evolving the model. Embrace the agility of the graph :slightly_smiling_face: For performance, similar: evolve and benchmark with real or realistic load. Don’t optimize for performance too early unless performance is your use case (i.e. better performance is the reason you went graph). Write out the new queries you want to be able to run, evolve the model to satisfy those queries, see if performance is acceptable. If it isn’t, start looking at optimizations. If you go for speed first it will be much more difficult to create an expressive model that answers to your queries.', type: 'message', }, - id: '195533', + _id: '195533', }, { attributes: { id: '1496690917.274412--+1--U5N4SCYQH', labels: ['Reaction'], }, - id: '60684', + _id: '60684', }, { attributes: { @@ -5166,14 +5166,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I’m still at the client, as soon I return to the hotel I’ll check this', type: 'message', }, - id: '195829', + _id: '195829', }, { attributes: { id: '1497037996.923810--+1--U4YRHQA2Y', labels: ['Reaction'], }, - id: '61369', + _id: '61369', }, { attributes: { @@ -5183,14 +5183,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Okay, let me give this another try', type: 'message', }, - id: '196129', + _id: '196129', }, { attributes: { id: '1497471476.837500--+1::skin-tone-4--U4YRHQA2Y', labels: ['Reaction'], }, - id: '62522', + _id: '62522', }, { attributes: { @@ -5200,14 +5200,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "sarmbruster_neo4j: Thanks... I got it done... For future reference, I couldn't yum install enterprise without first removing community edition. However my database was still there and the only thing I needed to restore was my config file.", type: 'message', }, - id: '196641', + _id: '196641', }, { attributes: { id: '1497978879.552777--+1--U08K01M7V', labels: ['Reaction'], }, - id: '63210', + _id: '63210', }, { attributes: { @@ -5217,14 +5217,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks a lot ... it helps', type: 'message', }, - id: '199221', + _id: '199221', }, { attributes: { id: '1500661288.763902--+1--U08JH64PM', labels: ['Reaction'], }, - id: '64193', + _id: '64193', }, { attributes: { @@ -5234,14 +5234,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Yes, there's a kb article on this:\n<https://neo4j.com/developer/kb/updating-a-node-but-returning-its-state-from-before-the-update/>", type: 'message', }, - id: '201140', + _id: '201140', }, { attributes: { id: '1502717474.000390--+1--U5D6MFAHK', labels: ['Reaction'], }, - id: '64987', + _id: '64987', }, { attributes: { @@ -5251,14 +5251,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I suspect you need to use apoc library for this, see <https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_conditional_cypher_execution>', type: 'message', }, - id: '201561', + _id: '201561', }, { attributes: { id: '1503052280.000116--+1--U5QS51B3R', labels: ['Reaction'], }, - id: '65435', + _id: '65435', }, { attributes: { @@ -5268,14 +5268,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'you can check the JDBC driver doc here : <http://neo4j-contrib.github.io/neo4j-jdbc/#_reporting_tools>', type: 'message', }, - id: '202415', + _id: '202415', }, { attributes: { id: '1504271486.000181--+1--U6M0L7AAY', labels: ['Reaction'], }, - id: '65977', + _id: '65977', }, { attributes: { @@ -5285,14 +5285,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'neo4j enterprise 3.2.x supports node-keys which are composite constraints', type: 'message', }, - id: '203204', + _id: '203204', }, { attributes: { id: '1504871506.000053--+1--U3B4WRWJZ', labels: ['Reaction'], }, - id: '66589', + _id: '66589', }, { attributes: { @@ -5302,14 +5302,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Yes, I believe that's about right.", type: 'message', }, - id: '207220', + _id: '207220', }, { attributes: { id: '1509649331.000395--+1--U7TL200QL', labels: ['Reaction'], }, - id: '69624', + _id: '69624', }, { attributes: { @@ -5319,14 +5319,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Looks like you already calculated it. Rather than doing a return here, use a WITH clause, which will allow you to follow it with a WHERE clause, then do your return', type: 'message', }, - id: '207256', + _id: '207256', }, { attributes: { id: '1509690358.000078--+1--U7TL200QL', labels: ['Reaction'], }, - id: '69625', + _id: '69625', }, { attributes: { @@ -5336,14 +5336,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "we'll rework that guide soonish", type: 'message', }, - id: '207862', + _id: '207862', }, { attributes: { id: '1510073111.000585--slightly_smiling_face--U7CJ3DLP7', labels: ['Reaction'], }, - id: '70010', + _id: '70010', }, { attributes: { @@ -5353,14 +5353,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "yes they will affect performance, if you don't need them remove all except one", type: 'message', }, - id: '208411', + _id: '208411', }, { attributes: { id: '1510735189.000103--+1::skin-tone-4--U5F148JMS', labels: ['Reaction'], }, - id: '70304', + _id: '70304', }, { attributes: { @@ -5370,14 +5370,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'did you expose your ports? `-p 7474:7474`', type: 'message', }, - id: '209169', + _id: '209169', }, { attributes: { id: '1511804307.000191--+1--U08J18KHB', labels: ['Reaction'], }, - id: '71041', + _id: '71041', }, { attributes: { @@ -5387,21 +5387,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'You can just use the rpm or apt linux installer for community.', type: 'message', }, - id: '209668', + _id: '209668', }, { attributes: { id: '1512430176.000058--slightly_smiling_face--U7CJ3DLP7', labels: ['Reaction'], }, - id: '71132', + _id: '71132', }, { attributes: { id: '1512430176.000058--heart--U7CJ3DLP7', labels: ['Reaction'], }, - id: '71141', + _id: '71141', }, { attributes: { @@ -5411,14 +5411,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'you can do all the create index in parallel and then do the create constraint last', type: 'message', }, - id: '209671', + _id: '209671', }, { attributes: { id: '1512430295.000299--+1--U415DTY69', labels: ['Reaction'], }, - id: '71156', + _id: '71156', }, { attributes: { @@ -5428,14 +5428,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'there is no limit, usually 1-5 work well', type: 'message', }, - id: '209946', + _id: '209946', }, { attributes: { id: '1512690918.000067--thanks--U3E3G6QQM', labels: ['Reaction'], }, - id: '71187', + _id: '71187', }, { attributes: { @@ -5445,14 +5445,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Use the open folder button', type: 'message', }, - id: '210535', + _id: '210535', }, { attributes: { id: '1513456808.000038--slightly_smiling_face--U7CJ3DLP7', labels: ['Reaction'], }, - id: '71271', + _id: '71271', }, { attributes: { @@ -5463,14 +5463,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'A lot of stuff on the net describes how to identify the inconsistencies and other Neo4j DB errors but no one describes how to recover them. I miss something??\nThanks for each answer!', type: 'message', }, - id: '211055', + _id: '211055', }, { attributes: { id: '1514800127.000029--+1--U55K14XSR', labels: ['Reaction'], }, - id: '71355', + _id: '71355', }, { attributes: { @@ -5480,14 +5480,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'best ask in <#C08J2BNPP|neo4j-javascript>', type: 'message', }, - id: '211239', + _id: '211239', }, { attributes: { id: '1515198187.000059--+1--U78H5SA3H', labels: ['Reaction'], }, - id: '71441', + _id: '71441', }, { attributes: { @@ -5497,14 +5497,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'today in 3.3 you can use `MATCH (n) WHERE n:Foo OR n:Bar`', type: 'message', }, - id: '211260', + _id: '211260', }, { attributes: { id: '1515248521.000066--+1--U6C7BHL9G', labels: ['Reaction'], }, - id: '71477', + _id: '71477', }, { attributes: { @@ -5514,14 +5514,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "The takeaway here is that because we don't have explicit GROUP BY, everything that's not an aggregation is implicitely grouped by on ...", type: 'message', }, - id: '211437', + _id: '211437', }, { attributes: { id: '1515423118.000242--+1--U4HUUHU7L', labels: ['Reaction'], }, - id: '71533', + _id: '71533', }, { attributes: { @@ -5531,14 +5531,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "You're not pulling out r in the WITH, just r.weight.", type: 'message', }, - id: '211442', + _id: '211442', }, { attributes: { id: '1515423216.000268--+1--U4HUUHU7L', labels: ['Reaction'], }, - id: '71535', + _id: '71535', }, { attributes: { @@ -5548,14 +5548,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'The existing property (aka weight) should be an integer from previous apoc.periodic.iterate, so I might need to make that float instead of integer in WITH, then as you say convert each part of the division to float. I will try that, thanks :slightly_smiling_face:', type: 'message', }, - id: '211455', + _id: '211455', }, { attributes: { id: '1515424061.000711--+1--U58A5L1AR', labels: ['Reaction'], }, - id: '71536', + _id: '71536', }, { attributes: { @@ -5565,14 +5565,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'The queries look good, you may want to ask on another channel like <#C5C4JRFK7|neo4j-graph-algorithm>', type: 'message', }, - id: '211510', + _id: '211510', }, { attributes: { id: '1515522842.000221--grinning--U4HUUHU7L', labels: ['Reaction'], }, - id: '71539', + _id: '71539', }, { attributes: { @@ -5582,14 +5582,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'use the import tool for the initial import', type: 'message', }, - id: '211841', + _id: '211841', }, { attributes: { id: '1515742208.000174--+1--U7DQZLPBQ', labels: ['Reaction'], }, - id: '71548', + _id: '71548', }, { attributes: { @@ -5599,14 +5599,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'woot !! Congratulations !!', type: 'message', }, - id: '212907', + _id: '212907', }, { attributes: { id: '1517144402.000126--heart--U7CJ3DLP7', labels: ['Reaction'], }, - id: '71820', + _id: '71820', }, { attributes: { @@ -5616,14 +5616,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Gefeliciteerd Jochem!', type: 'message', }, - id: '212924', + _id: '212924', }, { attributes: { id: '1517215547.000115--heart--U7CJ3DLP7', labels: ['Reaction'], }, - id: '71821', + _id: '71821', }, { attributes: { @@ -5633,14 +5633,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'the ratio gives you the deleted ratio', type: 'message', }, - id: '213575', + _id: '213575', }, { attributes: { id: '1517959863.000128--+1--U91SV2A78', labels: ['Reaction'], }, - id: '71967', + _id: '71967', }, { attributes: { @@ -5650,14 +5650,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Yes, drop me an email and I connect you to someone who has worked in this area. <mailto:michael@neo4j.com|michael@neo4j.com>', type: 'message', }, - id: '213954', + _id: '213954', }, { attributes: { id: '1518356273.000063--+1--U93L3LWE8', labels: ['Reaction'], }, - id: '72031', + _id: '72031', }, { attributes: { @@ -5667,14 +5667,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'hopefully no one', type: 'message', }, - id: '214820', + _id: '214820', }, { attributes: { id: '1519117780.000442--+1--U08J18KHB', labels: ['Reaction'], }, - id: '72350', + _id: '72350', }, { attributes: { @@ -5684,14 +5684,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I'd be more strict and would only allow `[A-Za-z0-9_]` for reltypes and labels.", type: 'message', }, - id: '214832', + _id: '214832', }, { attributes: { id: '1519118471.000024--+1--U08J3F3L3', labels: ['Reaction'], }, - id: '72365', + _id: '72365', }, { attributes: { @@ -5701,14 +5701,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks <@U08JH64PM> ', type: 'message', }, - id: '215309', + _id: '215309', }, { attributes: { id: '1519629107.000126--+1--U08JH64PM', labels: ['Reaction'], }, - id: '72459', + _id: '72459', }, { attributes: { @@ -5718,14 +5718,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: ':+1:', type: 'message', }, - id: '215428', + _id: '215428', }, { attributes: { id: '1519750003.000130--+1--U3RJEUY2Z', labels: ['Reaction'], }, - id: '72466', + _id: '72466', }, { attributes: { @@ -5735,14 +5735,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@U4HUUHU7L> , this version of RNeo4j is mainly valuable if you are using Neo4j Enterprise with clustering. Bolt is more secure, and the performance is better with cypher queries so their other advantages. To run the new version of RNeo4j requires that you have the Rust language available on your computer . There are instructions how to do this on Github. My recommendation is that you use the existing RNeo4j until you require Bolt for an enterprise solution, or if you would like better security on your local computer. We should be able to get our version as the default in the near future.', type: 'message', }, - id: '216129', + _id: '216129', }, { attributes: { id: '1520655901.000109--+1--U4HUUHU7L', labels: ['Reaction'], }, - id: '72535', + _id: '72535', }, { attributes: { @@ -5752,14 +5752,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Good stuff in there. Good luck!', type: 'message', }, - id: '216288', + _id: '216288', }, { attributes: { id: '1520929307.000260--+1--U9LTXC264', labels: ['Reaction'], }, - id: '72640', + _id: '72640', }, { attributes: { @@ -5770,14 +5770,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'ref card: <https://neo4j.com/docs/cypher-refcard/current/>', type: 'message', }, - id: '216344', + _id: '216344', }, { attributes: { id: '1520960061.000811--+1--U9LAZ7ZH6', labels: ['Reaction'], }, - id: '72727', + _id: '72727', }, { attributes: { @@ -5787,14 +5787,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'If you\'re using the browser, you\'ll want to do this before you execute your query:\n`:param batch: [{name:"Alice",age:32},{name:"Bob",age:42}]`\n\nIf you\'re using a driver, then you\'ll want to create and pass a param map with those values', type: 'message', }, - id: '216363', + _id: '216363', }, { attributes: { id: '1520967006.000089--+1--U9LTXC264', labels: ['Reaction'], }, - id: '72763', + _id: '72763', }, { attributes: { @@ -5804,14 +5804,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Found `apoc.atomic.add` and `apoc.atomic.subtract`', type: 'message', }, - id: '216987', + _id: '216987', }, { attributes: { id: '1521474080.000390--heart--U9GQ33YH2', labels: ['Reaction'], }, - id: '73225', + _id: '73225', }, { attributes: { @@ -5821,14 +5821,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'youc an also create a map and use `SET r += {props} `', type: 'message', }, - id: '217020', + _id: '217020', }, { attributes: { id: '1521503517.000243--+1::skin-tone-3--U9GQ33YH2', labels: ['Reaction'], }, - id: '73255', + _id: '73255', }, { attributes: { @@ -5838,14 +5838,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "yes, it's called node-key", type: 'message', }, - id: '217176', + _id: '217176', }, { attributes: { id: '1521674138.000127--+1--U8S7BGJ3W', labels: ['Reaction'], }, - id: '73372', + _id: '73372', }, { attributes: { @@ -5855,14 +5855,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'not as much as possible, keep it between 1k and 10k writes.', type: 'message', }, - id: '217440', + _id: '217440', }, { attributes: { id: '1521850966.000039--+1--U7DQZLPBQ', labels: ['Reaction'], }, - id: '73561', + _id: '73561', }, { attributes: { @@ -5872,14 +5872,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Update: I've implemented a batched write solution so that post updates happen in around 10K transactions total instead of around 90K transactions and the performance is _much much_ better!", type: 'message', }, - id: '217606', + _id: '217606', }, { attributes: { id: '1522098132.000554--+1--U08JH64PM', labels: ['Reaction'], }, - id: '73562', + _id: '73562', }, { attributes: { @@ -5890,14 +5890,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'If you want to run a query spreading over multiple different neo4j instances you can use `apoc.bolt.execute` to run a query on another instance in another graph.\nSee <https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_bolt>', type: 'message', }, - id: '218182', + _id: '218182', }, { attributes: { id: '1522744438.000496--heart--U9Y5GAHUY', labels: ['Reaction'], }, - id: '74394', + _id: '74394', }, { attributes: { @@ -5907,14 +5907,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'if short: set initial size to same value as max size. Pagecache is off heap and should be same as graph size in an ideal setup. your config eats 32 G.', type: 'message', }, - id: '218192', + _id: '218192', }, { attributes: { id: '1522754292.000240--+1--U6BJWR96Z', labels: ['Reaction'], }, - id: '74395', + _id: '74395', }, { attributes: { @@ -5924,14 +5924,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'you should configure the heap size, not only the page cache size. To do it add this line on your docker command : ```\n--env=NEO4J_dbms_memory_heap_initialSize=4G\n--env=NEO4J_dbms_memory_heap_maxSize=4G\n```', type: 'message', }, - id: '219892', + _id: '219892', }, { attributes: { id: '1524141991.000092--+1--UA5S7JEG3', labels: ['Reaction'], }, - id: '75853', + _id: '75853', }, { attributes: { @@ -5941,14 +5941,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'stop your database, run the script `copy-store.sh enterprise graph.db target.db`, then backup the graph.db somewhere, copy the target.db as graph.db inside Neo4j, and restart it', type: 'message', }, - id: '220092', + _id: '220092', }, { attributes: { id: '1524230197.000307--+1--U0DNS24SZ', labels: ['Reaction'], }, - id: '76176', + _id: '76176', }, { attributes: { @@ -5958,14 +5958,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "It may help to keep in mind that UNWIND is not a looping construct. It changes list elements into rows, and since Cypher operators execute per row, it *seems* like a looping construct, but that's not what's going on. \n\nSo if you have your lists `a` and `b` in scope, doing `UNWIND a as aElement UNWIND b as bElement` you have a cartesian product between the two", type: 'message', }, - id: '220436', + _id: '220436', }, { attributes: { id: '1524518971.000421--+1::skin-tone-3--U9GQ33YH2', labels: ['Reaction'], }, - id: '76584', + _id: '76584', }, { attributes: { @@ -5975,14 +5975,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Beautiful! Thank you so much.', type: 'message', }, - id: '220644', + _id: '220644', }, { attributes: { id: '1524669517.000448--+1--U08JH64PM', labels: ['Reaction'], }, - id: '76592', + _id: '76592', }, { attributes: { @@ -5992,14 +5992,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'use apoc.load.json together with apoc.periodic.iterate, the json loading is streaming and can then drive your main statement', type: 'message', }, - id: '220700', + _id: '220700', }, { attributes: { id: '1524723597.000079--sunglasses--U9GQ33YH2', labels: ['Reaction'], }, - id: '76606', + _id: '76606', }, { attributes: { @@ -6009,21 +6009,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'So for example, if you needed to make sure there was a true `active` property on all relationships of the var-length path, you might do:\n\n```\nMATCH p = (node1)<-[*..2]->(node2) \nWHERE ID(node1) = 122 \nAND all(rel in relationships(p) WHERE rel.active)\nRETURN p\n```', type: 'message', }, - id: '221235', + _id: '221235', }, { attributes: { id: '1525451785.000583--+1::skin-tone-3--U9GQ33YH2', labels: ['Reaction'], }, - id: '76626', + _id: '76626', }, { attributes: { id: '1525451785.000583--+1--UA601ADC7', labels: ['Reaction'], }, - id: '76627', + _id: '76627', }, { attributes: { @@ -6033,21 +6033,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'We are running an embedded engine using bolt, but it only works on JRE 8. You might check out „in-memory-db“ in <https://github.com/gorillalabs/neo4j-clj/blob/master/src/neo4j_clj/core.clj> for reference. It‘s Clojure, but really simple. Connect to <https://github.com/maxlorenz> for further info, I‘m off for a week.', type: 'message', }, - id: '221251', + _id: '221251', }, { attributes: { id: '1525466672.000350--+1--UAJD18EFM', labels: ['Reaction'], }, - id: '76643', + _id: '76643', }, { attributes: { id: '1525466672.000350--+1--U08J18KHB', labels: ['Reaction'], }, - id: '76644', + _id: '76644', }, { attributes: { @@ -6057,14 +6057,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I'd stick with the unwind approach. ", type: 'message', }, - id: '221407', + _id: '221407', }, { attributes: { id: '1525656564.000065--+1--U9NPZT6DU', labels: ['Reaction'], }, - id: '76645', + _id: '76645', }, { attributes: { @@ -6074,14 +6074,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@U9GQ33YH2> <@U08J1KK9T> has been working on some recipe graph recently, please ping him', type: 'message', }, - id: '221435', + _id: '221435', }, { attributes: { id: '1525686691.000101--tada--U9GQ33YH2', labels: ['Reaction'], }, - id: '76646', + _id: '76646', }, { attributes: { @@ -6091,14 +6091,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'yep it was this lecture: <https://github.com/TaddyLab/MBAmaterials/blob/master/lectures/07Clustering.pdf>', type: 'message', }, - id: '221450', + _id: '221450', }, { attributes: { id: '1525698282.000381--heart_eyes--U9GQ33YH2', labels: ['Reaction'], }, - id: '76648', + _id: '76648', }, { attributes: { @@ -6108,14 +6108,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Nah, go ahead', type: 'message', }, - id: '221479', + _id: '221479', }, { attributes: { id: '1525754056.000055--+1--U9NPZT6DU', labels: ['Reaction'], }, - id: '76649', + _id: '76649', }, { attributes: { @@ -6125,14 +6125,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'MERGE (n:TESTNODE) WHERE id(n) = 123 SET n.temp += 1234', type: 'message', }, - id: '222034', + _id: '222034', }, { attributes: { id: '1526424228.000021--+1--U0E7MMYAW', labels: ['Reaction'], }, - id: '76849', + _id: '76849', }, { attributes: { @@ -6142,14 +6142,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "It depends if your csv file has a header line. If so `WITH HEADERS`. In case of `WITH HEADERS` you can reference the column my name, e.g. `row.my_column_name` otherwise it's numeric offsets: `row[1]`.", type: 'message', }, - id: '222242', + _id: '222242', }, { attributes: { id: '1526648561.000196--+1--UARD5THM0', labels: ['Reaction'], }, - id: '76851', + _id: '76851', }, { attributes: { @@ -6159,14 +6159,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'just use UNWIND in Cypher and pass in a list of maps.', type: 'message', }, - id: '222251', + _id: '222251', }, { attributes: { id: '1526676263.000409--+1--UASF11YNP', labels: ['Reaction'], }, - id: '76853', + _id: '76853', }, { attributes: { @@ -6176,14 +6176,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "thanks, Joseph! I'll look into this", type: 'message', }, - id: '222695', + _id: '222695', }, { attributes: { id: '1527609748.000361--heart--U9Y5GAHUY', labels: ['Reaction'], }, - id: '77494', + _id: '77494', }, { attributes: { @@ -6193,14 +6193,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'thanks !', type: 'message', }, - id: '222779', + _id: '222779', }, { attributes: { id: '1527690472.000008--+1--U5A60979Q', labels: ['Reaction'], }, - id: '77519', + _id: '77519', }, { attributes: { @@ -6210,14 +6210,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Oohhhh, I just realised that I'd accidentally overridden the files that the old docker container was looking at with a v3.4 import (so it was still trying to use v3.3 to run it). Thanks both!", type: 'message', }, - id: '223101', + _id: '223101', }, { attributes: { id: '1528268760.000027--+1--UAYNPAK7S', labels: ['Reaction'], }, - id: '78049', + _id: '78049', }, { attributes: { @@ -6227,14 +6227,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Are you sure that's the unix timestamp in ms?\n\nIf you assume that's seconds instead of ms, then convert:\n\n```\nreturn apoc.date.format(1521651600, 's', 'yyyy-MM-dd')\n```\nyou get \"2018-03-21\"", type: 'message', }, - id: '223621', + _id: '223621', }, { attributes: { id: '1529333981.000449--+1--U5PUTS1C3', labels: ['Reaction'], }, - id: '78770', + _id: '78770', }, { attributes: { @@ -6244,14 +6244,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'You can get it easiest with the social media sign-in.', type: 'message', }, - id: '223656', + _id: '223656', }, { attributes: { id: '1529403843.000144--+1--UAXJF67J4', labels: ['Reaction'], }, - id: '78789', + _id: '78789', }, { attributes: { @@ -6261,14 +6261,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "No sharding capabilities at this time. For our clustering solutions, the entire graph must be present. For scaling out reads, you can add read replica instances to the cluster, as the bolt+routing protocol will route explicit read transactions among followers and read replicas. Write scaling is vertical, you would be adding more RAM or upgrading hardware on the core instances. Here's our causal cluster architecture for reference.\n<https://neo4j.com/docs/operations-manual/3.3/clustering/causal-clustering/>", type: 'message', }, - id: '223832', + _id: '223832', }, { attributes: { id: '1529708489.000208--thinking_face--U5N91AP8A', labels: ['Reaction'], }, - id: '78796', + _id: '78796', }, { attributes: { @@ -6278,14 +6278,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Not yet. Since this is happening when I restore a backup from my online vendor to a local instance (Online version 3.3.4 vs. local 3.4.1) there may be an issue between restoring of versions. Things I was going to test is restoring to the same version and also test exporting from local restore to a new instance via exporting cypher statements and rerunning instead of using the restore process', type: 'message', }, - id: '224052', + _id: '224052', }, { attributes: { id: '1530122022.000029--+1--UBECDSPNC', labels: ['Reaction'], }, - id: '78835', + _id: '78835', }, { attributes: { @@ -6295,14 +6295,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@UBECDSPNC> Got it! Thank you very much', type: 'message', }, - id: '224145', + _id: '224145', }, { attributes: { id: '1530207549.000249--+1--UBECDSPNC', labels: ['Reaction'], }, - id: '78937', + _id: '78937', }, { attributes: { @@ -6312,14 +6312,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Make the whole string a parameter', type: 'message', }, - id: '224186', + _id: '224186', }, { attributes: { id: '1530279756.000417--+1--U5N91AP8A', labels: ['Reaction'], }, - id: '78938', + _id: '78938', }, { attributes: { @@ -6329,14 +6329,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Take a look at this blog post series <https://maxdemarzi.com/2017/03/30/building-a-twitter-clone-with-neo4j-part-one/>', type: 'message', }, - id: '224187', + _id: '224187', }, { attributes: { id: '1530280338.000447--+1--UBE7F2Y4F', labels: ['Reaction'], }, - id: '79008', + _id: '79008', }, { attributes: { @@ -6346,14 +6346,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'really appreciate', type: 'message', }, - id: '224289', + _id: '224289', }, { attributes: { id: '1530538233.000331--+1--U79NQ8BCZ', labels: ['Reaction'], }, - id: '79038', + _id: '79038', }, { attributes: { @@ -6363,14 +6363,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'also best ask in <#C2M5H4RC0|neo4j-clustering>', type: 'message', }, - id: '224294', + _id: '224294', }, { attributes: { id: '1530546187.000148--+1--U9373KH61', labels: ['Reaction'], }, - id: '79044', + _id: '79044', }, { attributes: { @@ -6380,21 +6380,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I'm looking at putting together some up to date material, but that site isn't ours. I'll post on here when we have something.", type: 'message', }, - id: '224625', + _id: '224625', }, { attributes: { id: '1531246633.000502--+1--U5AM942SC', labels: ['Reaction'], }, - id: '79149', + _id: '79149', }, { attributes: { id: '1531246633.000502--+1--U08J18KHB', labels: ['Reaction'], }, - id: '79276', + _id: '79276', }, { attributes: { @@ -6404,21 +6404,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Use `CALL <http://apoc.help|apoc.help>('apoc.util')` to see which are available for your APOC version", type: 'message', }, - id: '225292', + _id: '225292', }, { attributes: { id: '1532380623.000204--+1--U9GCR2RPZ', labels: ['Reaction'], }, - id: '79756', + _id: '79756', }, { attributes: { id: '1532380623.000204--thank-you-bow--U9GCR2RPZ', labels: ['Reaction'], }, - id: '79951', + _id: '79951', }, { attributes: { @@ -6428,14 +6428,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks again, <@U9373KH61>, It turned out to be a networking issue as you had suggested. I was able to resolve it by adding an inbound rule.', type: 'message', }, - id: '225312', + _id: '225312', }, { attributes: { id: '1532449849.000167--+1--U9373KH61', labels: ['Reaction'], }, - id: '79952', + _id: '79952', }, { attributes: { @@ -6445,14 +6445,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'There are some bugs with this. Try out apoc.meta.graph() using APOC Procedures instead', type: 'message', }, - id: '225544', + _id: '225544', }, { attributes: { id: '1532975646.000239--+1--U9373KH61', labels: ['Reaction'], }, - id: '80315', + _id: '80315', }, { attributes: { @@ -6462,21 +6462,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "That feature has been heavily requested, but hasn't been a priority for some time due to greater prioritizations on other features (such as replacing lucene for indexing to improve write speed). This feature is currently scheduled for the 3.5 release later this year", type: 'message', }, - id: '225654', + _id: '225654', }, { attributes: { id: '1533160328.000163--tada--U9373KH61', labels: ['Reaction'], }, - id: '80383', + _id: '80383', }, { attributes: { id: '1533160328.000163--tada--U9RLSA7C2', labels: ['Reaction'], }, - id: '80384', + _id: '80384', }, { attributes: { @@ -6486,14 +6486,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Wrong Greg :stuck_out_tongue:', type: 'message', }, - id: '225723', + _id: '225723', }, { attributes: { id: '1533303994.000275--open_mouth--UBZKBMPFC', labels: ['Reaction'], }, - id: '80457', + _id: '80457', }, { attributes: { @@ -6503,14 +6503,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'you can e.g. do a `wget <http://yum.neo4j.org/stable/neo4j-enterprise-3.4.5-1.noarch.rpm>`. Note that neo4j has a dependency on `cypher-shell`, so do a `wget <http://yum.neo4j.org/stable/cypher-shell-1.1.5-1.noarch.rpm>` as well', type: 'message', }, - id: '225764', + _id: '225764', }, { attributes: { id: '1533535160.000019--heavy_check_mark--UC39PB4B0', labels: ['Reaction'], }, - id: '80477', + _id: '80477', }, { attributes: { @@ -6520,14 +6520,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "you can analyze a yum repo by fetching it's `repomd.xml`, so `wget <http://yum.neo4j.org/stable/repodata/repomd.xml>`. It contains a reference to a primary.xml, in our case <http://yum.neo4j.org/stable/repodata/1c53f48b58adba5ce7e1a0c18961e562b097a3f7fd0c32bef8429c70ccb3378b-primary.xml.gz> which contains a toc for the repo.", type: 'message', }, - id: '225765', + _id: '225765', }, { attributes: { id: '1533535546.000077--heavy_check_mark--UC39PB4B0', labels: ['Reaction'], }, - id: '80486', + _id: '80486', }, { attributes: { @@ -6537,14 +6537,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Boom!! thanks again', type: 'message', }, - id: '225913', + _id: '225913', }, { attributes: { id: '1533761969.000328--clap--U7J2Q03JA', labels: ['Reaction'], }, - id: '80914', + _id: '80914', }, { attributes: { @@ -6554,14 +6554,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'but you can also use any other type or virtual environment like vagrant or so... anything that abstracts the underlying OS away', type: 'message', }, - id: '225953', + _id: '225953', }, { attributes: { id: '1533807835.000212--+1--UB0FFTDQ9', labels: ['Reaction'], }, - id: '80915', + _id: '80915', }, { attributes: { @@ -6571,14 +6571,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'linkurious or yfiles.', type: 'message', }, - id: '226144', + _id: '226144', }, { attributes: { id: '1534256486.000100--grinning--U4T09CQ9H', labels: ['Reaction'], }, - id: '80978', + _id: '80978', }, { attributes: { @@ -6588,14 +6588,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'So the initial connection to the cluster MUST be to a core instance. They have the routing table info, and once that connection is made the driver now has the routing table too, and is able to get an updated routing table when necessary. \n\nAt that point, routing decisions happen at the driver level on the client driven by what the client knows from the routing table.', type: 'message', }, - id: '226159', + _id: '226159', }, { attributes: { id: '1534263601.000100--+1--U9373KH61', labels: ['Reaction'], }, - id: '81436', + _id: '81436', }, { attributes: { @@ -6605,14 +6605,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'asshole', type: 'message', }, - id: '226216', + _id: '226216', }, { attributes: { id: '1534320287.000100--face_vomiting--U81EFPVC0', labels: ['Reaction'], }, - id: '81469', + _id: '81469', }, { attributes: { @@ -6622,14 +6622,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Dude, you've asked a question without providing any reasonable context. Therefore I assume you not even have googled for it.\nAnd calling active supporters here publically an \"asshole\" is for sure not a good way to get support here.\nPlease go back to your parents and ask them for some education. Once you've learned how to stay polite you're invited to come back.", type: 'message', }, - id: '226218', + _id: '226218', }, { attributes: { id: '1534320424.000100--+1--U08J18KHB', labels: ['Reaction'], }, - id: '81484', + _id: '81484', }, { attributes: { @@ -6639,14 +6639,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'it should. To reduce invocations you using collect/unwind might be a good idea:\n```MATCH (node) // do some fancy traversal\nWITH collect(node) AS nodes\nCALL apoc.run.cypher("UNWIND $nodes as n SET n.count = n.count+1", {nodes:nodes}) YIELD ... RETURN ...\n```', type: 'message', }, - id: '226221', + _id: '226221', }, { attributes: { id: '1534329483.000100--+1--U81EFPVC0', labels: ['Reaction'], }, - id: '81485', + _id: '81485', }, { attributes: { @@ -6656,14 +6656,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'thanks <@U3RJEUY2Z>! that explained alot. really got it wrong there. i modified my setup and now its running. not as i planned but i think i can live with that for the moment :slightly_smiling_face:', type: 'message', }, - id: '226223', + _id: '226223', }, { attributes: { id: '1534332193.000100--+1--U3RJEUY2Z', labels: ['Reaction'], }, - id: '81494', + _id: '81494', }, { attributes: { @@ -6673,14 +6673,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'graphql runs over http, not sure if graphenedb still supports custom extensions. You can either deploy the neo4j-graphql extension or use neo4j-graphql-js in front of your database. See <#C5ET7S24R|neo4j-graphql>', type: 'message', }, - id: '226224', + _id: '226224', }, { attributes: { id: '1534332511.000100--100--UC7J0M0DT', labels: ['Reaction'], }, - id: '81495', + _id: '81495', }, { attributes: { @@ -6690,14 +6690,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'it sounds as if apoc.periodic.iterate might be a better match for your needs.', type: 'message', }, - id: '226225', + _id: '226225', }, { attributes: { id: '1534332543.000100--+1--U81EFPVC0', labels: ['Reaction'], }, - id: '81507', + _id: '81507', }, { attributes: { @@ -6708,14 +6708,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'We managed to fixed it.\n\nWe had an unnecessary projection `WITH p1, r1, p2, r2, p3, s`\nin our query, which was causing huge lag (more than 4-5 min).\n\nFigured it out using PROFILE. Strongly recommend using PROFILE for improving performance, it is very useful.\n\nThank you for your help <@U08JH64PM>', type: 'message', }, - id: '227002', + _id: '227002', }, { attributes: { id: '1537172238.000100--heart--U08J18KHB', labels: ['Reaction'], }, - id: '81845', + _id: '81845', }, { attributes: { @@ -6725,14 +6725,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Great! I'm working on a blog post now that explains how it works.", type: 'message', }, - id: '227437', + _id: '227437', }, { attributes: { id: '1539283928.000100--pray--U4QHQ5W31', labels: ['Reaction'], }, - id: '81927', + _id: '81927', }, { attributes: { @@ -6742,21 +6742,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "It's probably a function, not a procedure. Use it as an expression, no need for CALL or YIELD", type: 'message', }, - id: '227466', + _id: '227466', }, { attributes: { id: '1539310801.000100--+1--U08J18KHB', labels: ['Reaction'], }, - id: '81928', + _id: '81928', }, { attributes: { id: '1539310801.000100--+1--UDDKBC43Z', labels: ['Reaction'], }, - id: '81929', + _id: '81929', }, { attributes: { @@ -6766,14 +6766,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "usually it won't take that long", type: 'message', }, - id: '227480', + _id: '227480', }, { attributes: { id: '1539319227.000100--+1--UCZPQ4TSS', labels: ['Reaction'], }, - id: '81930', + _id: '81930', }, { attributes: { @@ -6783,14 +6783,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'TX logs do factor in as well, so you may want to configure your TX log config properties for size and rollover behavior', type: 'message', }, - id: '227501', + _id: '227501', }, { attributes: { id: '1539409801.000200--+1--UCZPQ4TSS', labels: ['Reaction'], }, - id: '81982', + _id: '81982', }, { attributes: { @@ -6800,14 +6800,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Depending on what your query returns you could get a Node or Relationship object', type: 'message', }, - id: '227930', + _id: '227930', }, { attributes: { id: '1541590960.153300--+1--U08J18KHB', labels: ['Reaction'], }, - id: '82446', + _id: '82446', }, { attributes: { @@ -6817,14 +6817,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'thank u guys', type: 'message', }, - id: '228142', + _id: '228142', }, { attributes: { id: '1542720140.287600--+1--UDTC9HH3J', labels: ['Reaction'], }, - id: '82704', + _id: '82704', }, { attributes: { @@ -6834,14 +6834,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Just got off the phone with someone from sales that indicated I should use the bulk import utility.', type: 'message', }, - id: '228472', + _id: '228472', }, { attributes: { id: '1543592911.007200--+1--UCJ4MQD09', labels: ['Reaction'], }, - id: '83510', + _id: '83510', }, { attributes: { @@ -6851,14 +6851,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '`Neo.TransientError.General.OutOfMemoryError: There is not enough memory to perform the current task.` :sweat_smile:', type: 'message', }, - id: '228821', + _id: '228821', }, { attributes: { id: '1545062531.256700--joy--UEJ0509M2', labels: ['Reaction'], }, - id: '83685', + _id: '83685', }, { attributes: { @@ -6868,14 +6868,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<https://github.com/neo4j-contrib/neo4j-apoc-procedures/issues/1025>', type: 'message', }, - id: '228964', + _id: '228964', }, { attributes: { id: '1545131049.322500--muscle--UD03BJXK9', labels: ['Reaction'], }, - id: '83716', + _id: '83716', }, { attributes: { @@ -6885,14 +6885,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'did you try db.indexes() ?', type: 'message', }, - id: '229419', + _id: '229419', }, { attributes: { id: '1547838290.290600--+1--UEJ0509M2', labels: ['Reaction'], }, - id: '84502', + _id: '84502', }, { attributes: { @@ -6902,14 +6902,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "You'll likely want to ask on the community site here\n<https://community.neo4j.com/c/drivers-stacks/spring-data-neo4j-ogm>", type: 'message', }, - id: '229509', + _id: '229509', }, { attributes: { id: '1548272135.359600--+1--UFGUA5UHG', labels: ['Reaction'], }, - id: '84640', + _id: '84640', }, { attributes: { @@ -6919,14 +6919,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'LIMIT 1', type: 'message', }, - id: '229515', + _id: '229515', }, { attributes: { id: '1548309621.362900--+1--UFN8RL13R', labels: ['Reaction'], }, - id: '84641', + _id: '84641', }, { attributes: { @@ -6936,14 +6936,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'yes, that should be enough.', type: 'message', }, - id: '229559', + _id: '229559', }, { attributes: { id: '1548362452.398800--+1--UFN8RL13R', labels: ['Reaction'], }, - id: '84671', + _id: '84671', }, { attributes: { @@ -6953,14 +6953,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'yes it is', type: 'message', }, - id: '229575', + _id: '229575', }, { attributes: { id: '1548423955.411200--+1--UC2989XTJ', labels: ['Reaction'], }, - id: '84672', + _id: '84672', }, { attributes: { @@ -6970,14 +6970,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Thanks Michael, very grateful for the reply and I hugely appreciate any input.\n\nI have SQL and wide-ranging general dev experience and I've actually found it pretty simple to start working with the tools & concepts generally and I'm fully in love with it all :slightly_smiling_face:\n\nIt would amazing to attend the workshop,.\n\nWhat I was going to write as a reply I will post in introduce - some back ground into my motivations.\n\nLook forward to hearing form you.", type: 'message', }, - id: '229606', + _id: '229606', }, { attributes: { id: '1548428825.420700--tada--U08J18KHB', labels: ['Reaction'], }, - id: '84912', + _id: '84912', }, { attributes: { @@ -6987,14 +6987,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I figured out the problem, docker wasn't mounting the config file. I thought the config file in the docker container had the right parameter set, but maybe I was wrong. In any case, it's working now. Thank you for the offer of help!", type: 'message', }, - id: '229710', + _id: '229710', }, { attributes: { id: '1548698792.505800--partyparrot--U08JH64PM', labels: ['Reaction'], }, - id: '85067', + _id: '85067', }, { attributes: { @@ -7005,14 +7005,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'This! (solved)\n<https://stackoverflow.com/a/53758860/10797095>', type: 'message', }, - id: '229814', + _id: '229814', }, { attributes: { id: '1548943014.578800--tada--UFP15RJSE', labels: ['Reaction'], }, - id: '85439', + _id: '85439', }, { attributes: { @@ -7022,14 +7022,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@UFN8RL13R> sorry my bad I thought I had used a different signature.\nactually reordering is good enough:\n\n```\nexplain USING PERIODIC COMMIT 100\nLOAD CSV WITH HEADERS FROM "file:///clique_merged_nodes.csv" AS row\nMERGE (n:`named thing` {id: row.id}) \nON CREATE SET n+=row \nWITH DISTINCT n, row, SPLIT(row.category, \';\') AS categories\nCALL apoc.create.addLabels(n, COALESCE(categories, [])) YIELD node\nRETURN COUNT(*);\n```', type: 'message', }, - id: '229868', + _id: '229868', }, { attributes: { id: '1548976201.616600--+1--UFN8RL13R', labels: ['Reaction'], }, - id: '85525', + _id: '85525', }, { attributes: { @@ -7039,14 +7039,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "afaik there is no gold standard as most people's use-cases are quite different. <@U7X490V7X> has done some work in this area recently and might be able to give you a pointer", type: 'message', }, - id: '230097', + _id: '230097', }, { attributes: { id: '1549641719.065500--+1--UFUF8KVCG', labels: ['Reaction'], }, - id: '86013', + _id: '86013', }, { attributes: { @@ -7056,14 +7056,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Pretty sure `neo4j-admin import` is best.', type: 'message', }, - id: '230430', + _id: '230430', }, { attributes: { id: '1551147242.024400--+1--UFVJQJ0JD', labels: ['Reaction'], }, - id: '86186', + _id: '86186', }, { attributes: { @@ -7073,14 +7073,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'works like a charm! Thank you <@UG5KSKXQF>!! :pray:', type: 'message', }, - id: '230790', + _id: '230790', }, { attributes: { id: '1551874469.171200--+1--UG5KSKXQF', labels: ['Reaction'], }, - id: '86680', + _id: '86680', }, { attributes: { @@ -7090,14 +7090,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I have a Flask project that uses Neo4j for the database. It can at least give you something to take a look at for how to connect to your neo4j instance with Python', type: 'message', }, - id: '230946', + _id: '230946', }, { attributes: { id: '1552508563.311400--+1--UGX61T152', labels: ['Reaction'], }, - id: '86769', + _id: '86769', }, { attributes: { @@ -7107,14 +7107,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'have you seen neomodel and neomodel-django? linked on <http://neo4j.com/develper/python|neo4j.com/develper/python> ?', type: 'message', }, - id: '230963', + _id: '230963', }, { attributes: { id: '1552614354.320200--+1--UGX61T152', labels: ['Reaction'], }, - id: '86770', + _id: '86770', }, { attributes: { @@ -7124,21 +7124,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'You should move your scripts to Python3 anyway, as Python 2 will reach the end of its life on January 1st, 2020.', type: 'message', }, - id: '231099', + _id: '231099', }, { attributes: { id: '1552914613.402700--heavy_check_mark--UA7EKGW3Z', labels: ['Reaction'], }, - id: '86803', + _id: '86803', }, { attributes: { id: '1552914613.402700--heavy_check_mark--U08J18KHB', labels: ['Reaction'], }, - id: '86804', + _id: '86804', }, { attributes: { @@ -7148,14 +7148,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'You may want to pre-match and collect the things the user has seen so you can do exclusion via a list membership check instead of having to expand and check the relationship to ensure the user has not viewed the something else.\n\nWe can also simplify the relationship pattern, and ensure we only project out the end properties after we\'ve done the ordering and limit:\n\n```\nMATCH (u:User)-[:VIEWED]->(something)\nWHERE u.id = "someUserId"\nWITH u, collect(something) as alreadySeen\nMATCH (u)-[:VIEWED*3]-(somethingElse)\n WHERE NOT somethingElse in alreadySeen\nWITH DISTINCT somethingElse\nORDER BY somethingElse.count DESC\nLIMIT 5\nRETURN somethingElse.id as id, somethingElse.count as numberOfViews\n```', type: 'message', }, - id: '231279', + _id: '231279', }, { attributes: { id: '1553121402.518700--tada--U08J18KHB', labels: ['Reaction'], }, - id: '87071', + _id: '87071', }, { attributes: { @@ -7165,14 +7165,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I found this example: <https://neo4j.com/developer/kb/post-union-processing/>\n\nThis solved my problem but i’m still curious if there are other ways to solve this', type: 'message', }, - id: '231477', + _id: '231477', }, { attributes: { id: '1553785875.015400--slightly_smiling_face--UGRPDJ542', labels: ['Reaction'], }, - id: '87210', + _id: '87210', }, { attributes: { @@ -7182,21 +7182,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Thank you, I'll nudge engineering to take a look", type: 'message', }, - id: '231894', + _id: '231894', }, { attributes: { id: '1555388124.057600--thanks--UHQ7M5U4D', labels: ['Reaction'], }, - id: '87330', + _id: '87330', }, { attributes: { id: '1555388124.057600--thanks--UHQS0JRTR', labels: ['Reaction'], }, - id: '87331', + _id: '87331', }, { attributes: { @@ -7206,14 +7206,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Just be aware that the default restrictions are a security safeguard. Loading from anywhere in the filesystem means anywhere, and that could be used to scan the contents of any file. We would advise you to switch that back to the default restricted setting after you do your load.', type: 'message', }, - id: '232149', + _id: '232149', }, { attributes: { id: '1556569287.040800--+1--UGW9TFQFM', labels: ['Reaction'], }, - id: '87946', + _id: '87946', }, { attributes: { @@ -7223,21 +7223,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'pretty much instant now :slightly_smiling_face: not sure why I wanted to return variables in the first place, beginner mistake I assume', type: 'message', }, - id: '232173', + _id: '232173', }, { attributes: { id: '1556632748.051800--+1--U08JH64PM', labels: ['Reaction'], }, - id: '88004', + _id: '88004', }, { attributes: { id: '1556632748.051800--+1--U08J18KHB', labels: ['Reaction'], }, - id: '88062', + _id: '88062', }, { attributes: { @@ -7247,14 +7247,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "In any case could you try creating an issue on the community site? That's going to be a better approach for these more involved problems.", type: 'message', }, - id: '232224', + _id: '232224', }, { attributes: { id: '1556734221.116500--+1--U08J18KHB', labels: ['Reaction'], }, - id: '88137', + _id: '88137', }, { attributes: { @@ -7264,14 +7264,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Ubuntu 18.04. I did edit the `limits.conf` file. The `ulimit -n` command correctly shows that the neo4j user is allowed to open 40000 files', type: 'message', }, - id: '233247', + _id: '233247', }, { attributes: { id: '1561459598.263700--+1--UJQRRPZHA', labels: ['Reaction'], }, - id: '88729', + _id: '88729', }, { attributes: { @@ -7281,14 +7281,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'In fact I forgot, Neo4j gives this one away for free: <https://neo4j.com/graph-databases-book/>', type: 'message', }, - id: '233303', + _id: '233303', }, { attributes: { id: '1562005607.321300--+1--UKU3CU8F3', labels: ['Reaction'], }, - id: '88767', + _id: '88767', }, { attributes: { @@ -7298,14 +7298,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'If you NEED dynamic relationship type creation, then APOC Procedures can be used to do that\n<https://neo4j-contrib.github.io/neo4j-apoc-procedures/#data-creation>\nin particular `apoc.create.relationship()`', type: 'message', }, - id: '233318', + _id: '233318', }, { attributes: { id: '1562019617.329700--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '88776', + _id: '88776', }, { attributes: { @@ -7315,14 +7315,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "For just a simple csv for creating CHILD_OF relationships, here's an example (assuming we already loaded all :Person nodes):\n\n```\nUSING PERIODIC COMMIT\nLOAD CSV WITH HEADERS FROM 'childof.csv' AS line\nMATCH (child:Person {id: toInteger(line.childId)})\nMATCH (parent:Person {id: toInteger(line.parentId)})\nMERGE (child)-[:CHILD_OF]->(parent)\n```\n\nYou would want indexes and/or unique constraints created first, so maybe a unique constraint on :Person(id), and an index on :Person(name)", type: 'message', }, - id: '233319', + _id: '233319', }, { attributes: { id: '1562019918.329900--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '88910', + _id: '88910', }, { attributes: { @@ -7332,14 +7332,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'What is the purpose of the string? Would a boolean make more sense there?\n\nyou have a few options. One would be to use the generated `filter` argument. See <https://grandstack.io/docs/graphql-filtering.html#nested-filter>\n\n\nAnother option would be to use add a `@cypher` schema directive on a field on the type. Something like:\n\n```\ntype Person {\n name: String\n hasFriends: Boolean @cypher(statement: """\n RETURN EXISTS( (this)-[:FRIEND]->(:Person) )\n """\n\n}\n```', type: 'message', }, - id: '233481', + _id: '233481', }, { attributes: { id: '1562690479.462200--metal--U0E37HVE1', labels: ['Reaction'], }, - id: '89028', + _id: '89028', }, { attributes: { @@ -7349,14 +7349,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'ah gotcha. yeah that use case makes sense. We’re planning to add a default value directive that would address this.\n\nIn the meantime that coalesce should work, or you could use a case…when', type: 'message', }, - id: '233493', + _id: '233493', }, { attributes: { id: '1562704576.470000--metal--U0E37HVE1', labels: ['Reaction'], }, - id: '89029', + _id: '89029', }, { attributes: { @@ -7366,14 +7366,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'ah ok. You’d have to use the `@cypher` directive then I guess', type: 'message', }, - id: '233500', + _id: '233500', }, { attributes: { id: '1562706745.474200--neo4j--U0E37HVE1', labels: ['Reaction'], }, - id: '89052', + _id: '89052', }, { attributes: { @@ -7383,28 +7383,28 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Sounds like this would be a good use of the “Cypher parameters from context feature†of neo4j-graphql.js: <https://grandstack.io/docs/neo4j-graphql-js-middleware-authorization.html#cypher-parameters-from-context>\n\nSo if you grab the session token from the request and inject that into the context, in an object called `cypherParams`, something like this:\n\n```\nconst server = new ApolloServer({\n context: ({req}) => ({\n driver,\n cypherParams: {\n token: req.headers.authorization\n }\n })\n})\n```\n\nthen that `cypherParams` object will be available inside Cypher queries defined in your `@cypher` schema directives. So to create a Query field that exposes products that the authenticated user has access to:\n\n```\ntype Query {\n myProducts: [Product] @cypher(statement: """\n MATCH (w:WebSession)<-[r:AUTHORIZES_WEBSESSION]-(i:Identity)-[:GIVES_PERMISSION_TO]-(p:Product)\nWHERE w.uuid = $cypheParams.token\nRETURN p\n""")\n}\n```', type: 'message', }, - id: '233568', + _id: '233568', }, { attributes: { id: '1562876096.011300--metal--U0E37HVE1', labels: ['Reaction'], }, - id: '89591', + _id: '89591', }, { attributes: { id: '1562876096.011300--metal--UKEQY3MBL', labels: ['Reaction'], }, - id: '89651', + _id: '89651', }, { attributes: { id: '1562876096.011300--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '89652', + _id: '89652', }, { attributes: { @@ -7414,21 +7414,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'it doesn’t replace `type Product` but the fields on the `Query` type are the entry points for the API. so would use that alongside your Product type definition above', type: 'message', }, - id: '233573', + _id: '233573', }, { attributes: { id: '1562880148.014400--heavy_check_mark--UKEQY3MBL', labels: ['Reaction'], }, - id: '89653', + _id: '89653', }, { attributes: { id: '1562880148.014400--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '89654', + _id: '89654', }, { attributes: { @@ -7438,14 +7438,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I think you have to use java style regex ', type: 'message', }, - id: '233597', + _id: '233597', }, { attributes: { id: '1562940182.022600--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '89683', + _id: '89683', }, { attributes: { @@ -7455,21 +7455,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "`with 'Some text etc Diabetic Neuropathy some test' AS text where text =~ '.*(?i)diab[a-z].*\\\\sneur[a-z].*' return text` works fine", type: 'message', }, - id: '233601', + _id: '233601', }, { attributes: { id: '1562940739.026000--+1--U08JH64PM', labels: ['Reaction'], }, - id: '89684', + _id: '89684', }, { attributes: { id: '1562940739.026000--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '89685', + _id: '89685', }, { attributes: { @@ -7479,14 +7479,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Sorry, an important point here that I neglected to mention: `myProducts { assigned_sku { products { uuid } } }` *should* return the objects, but just hard-limited to nodes where `[:GIVES_PERMISSION_TO]` is true.\nEssentially, I want to define a rel that ‘inserts’ cypher, like `customer_purchased_by: [Customer] @relation(name: "PURCHASED", direction: "IN", only_if: "(this)-[:GIVES_PERMISSION_TO]-($identity)")`\nOr some other way', type: 'message', }, - id: '233618', + _id: '233618', }, { attributes: { id: '1563028521.029600--ok_hand--UKEQY3MBL', labels: ['Reaction'], }, - id: '89686', + _id: '89686', }, { attributes: { @@ -7496,28 +7496,28 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'My pleasure! Glad it was somewhat useful.', type: 'message', }, - id: '233640', + _id: '233640', }, { attributes: { id: '1563114813.038300--metal--U0E37HVE1', labels: ['Reaction'], }, - id: '89799', + _id: '89799', }, { attributes: { id: '1563114813.038300--neo4j--U0E37HVE1', labels: ['Reaction'], }, - id: '89813', + _id: '89813', }, { attributes: { id: '1563114813.038300--tropical_drink--U0E37HVE1', labels: ['Reaction'], }, - id: '89900', + _id: '89900', }, { attributes: { @@ -7527,21 +7527,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "If you have unique constraints that are causing issues here, you can use the third parameter to the call for the config map with a \"skipProperties\" entry which will be the list of properties to skip when cloning the nodes.\n\n```\n...\nCALL apoc.refactor.cloneSubgraph(nodes, rels, {skipProperties:['uuid', 'created', 'updated']}) YIELD input, output, error\n...\n```", type: 'message', }, - id: '233658', + _id: '233658', }, { attributes: { id: '1563181522.044700--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '89945', + _id: '89945', }, { attributes: { id: '1563181522.044700--+1--UH7NN19NX', labels: ['Reaction'], }, - id: '90011', + _id: '90011', }, { attributes: { @@ -7551,14 +7551,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "What do you need this for? I don't believe that insertion order is something that is controllable during a single transaction. Have you tested with using ORDER BY in your query? For most things, ordering isn't guaranteed without ORDER BY usage, but I don't think this includes insertion order.", type: 'message', }, - id: '233778', + _id: '233778', }, { attributes: { id: '1563376879.104400--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91370', + _id: '91370', }, { attributes: { @@ -7568,14 +7568,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "> so node references can be transferred\nCan you describe this in a bit more detail? Are you trying to association some other nodes with the new nodes being added? If so I think relying on insertion order alone isn't a good idea", type: 'message', }, - id: '233780', + _id: '233780', }, { attributes: { id: '1563376926.104800--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91400', + _id: '91400', }, { attributes: { @@ -7585,14 +7585,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Is that a problem?', type: 'message', }, - id: '233782', + _id: '233782', }, { attributes: { id: '1563376953.105200--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91443', + _id: '91443', }, { attributes: { @@ -7602,14 +7602,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Then you'll need to use ORDER BY before collecting, or use an APOC sort function on the list", type: 'message', }, - id: '233785', + _id: '233785', }, { attributes: { id: '1563377034.105800--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91530', + _id: '91530', }, { attributes: { @@ -7619,14 +7619,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'If you need ordering, and you have some property to order by, then if you need an ordered list of things, you can use `WITH ... ORDER BY ...` and then `WITH collect()` to get the collection in that order.', type: 'message', }, - id: '233789', + _id: '233789', }, { attributes: { id: '1563377172.106600--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91531', + _id: '91531', }, { attributes: { @@ -7636,14 +7636,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Otherwise, if you collect first without sorting, you can use `apoc.coll.sortNodes()` from APOC procedures (or one of the other sort functions if you're not working with nodes)", type: 'message', }, - id: '233790', + _id: '233790', }, { attributes: { id: '1563377215.106800--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91532', + _id: '91532', }, { attributes: { @@ -7653,14 +7653,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Not a good idea. Not only is ordering not guaranteed without ORDER BY, graph ids can be reused, so there's no guarantee that your created nodes will be in temporal order", type: 'message', }, - id: '233792', + _id: '233792', }, { attributes: { id: '1563377281.107200--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91533', + _id: '91533', }, { attributes: { @@ -7670,14 +7670,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "So for example, you've created nodes with ids 1-1000. You've created some children off of a parent node (let's say the children have ids 889 and 957). At some point you delete some nodes, and those ids become eligible for reuse. You create a new child node from that parent, it reuses id 1. Your child nodes (by id) are not in temporal order.", type: 'message', }, - id: '233793', + _id: '233793', }, { attributes: { id: '1563377360.108200--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91534', + _id: '91534', }, { attributes: { @@ -7687,14 +7687,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "So don't depend on graph ids for ordering purposes", type: 'message', }, - id: '233794', + _id: '233794', }, { attributes: { id: '1563377393.108600--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91576', + _id: '91576', }, { attributes: { @@ -7704,14 +7704,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Laurens, you can’t use a different unique indexing property for this? You could have a persistent generator', type: 'message', }, - id: '233795', + _id: '233795', }, { attributes: { id: '1563377492.109300--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '91674', + _id: '91674', }, { attributes: { @@ -7721,14 +7721,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'What a nice, genuine expression of joy. :slightly_smiling_face:', type: 'message', }, - id: '233823', + _id: '233823', }, { attributes: { id: '1563476626.127700--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '92248', + _id: '92248', }, { attributes: { @@ -7738,14 +7738,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'thanks <@UKEQY3MBL> for the advise though. need to relook at how WITH works and using MERGE..ON CREATE / MATCH', type: 'message', }, - id: '233974', + _id: '233974', }, { attributes: { id: '1564044002.084200--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '92874', + _id: '92874', }, { attributes: { @@ -7755,14 +7755,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks a lot Andrew. Yes, it is a one-off operation in a migration script (the migration is tested many times, but once its migrated, its done). after that, all property types are fixed. :slightly_smiling_face: Thanks for help!', type: 'message', }, - id: '235051', + _id: '235051', }, { attributes: { id: '1566289658.251500--+1--U3RJEUY2Z', labels: ['Reaction'], }, - id: '94079', + _id: '94079', }, { attributes: { @@ -7772,14 +7772,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'good read :slightly_smiling_face: thank you very much! :+1:', type: 'message', }, - id: '235135', + _id: '235135', }, { attributes: { id: '1566559846.308400--grin--UC7KXLGJU', labels: ['Reaction'], }, - id: '94128', + _id: '94128', }, { attributes: { @@ -7789,14 +7789,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'oh boy how great you are guys! cheers up <@U08J18KHB> :beer:', type: 'message', }, - id: '235475', + _id: '235475', }, { attributes: { id: '1567495314.129700--heart--U08J18KHB', labels: ['Reaction'], }, - id: '95698', + _id: '95698', }, { attributes: { @@ -7806,14 +7806,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@UL65F4NTB> ^^^', type: 'message', }, - id: '235713', + _id: '235713', }, { attributes: { id: '1568245363.289200--+1--UL65F4NTB', labels: ['Reaction'], }, - id: '96641', + _id: '96641', }, { attributes: { @@ -7823,21 +7823,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '```MERGE (s:server {name:"host2"})\nMERGE (c:cluster {name:"cluster1"})\nMERGE (l:location {name:"dc"})\nMERGE (s)-[i:isPartOf]->(c)\nMERGE (c)-[n:isIn]->(l)```', type: 'message', }, - id: '235769', + _id: '235769', }, { attributes: { id: '1568299683.323300--+1--ULU4HSAKV', labels: ['Reaction'], }, - id: '96652', + _id: '96652', }, { attributes: { id: '1568299683.323300--+1--U4APUA37S', labels: ['Reaction'], }, - id: '96681', + _id: '96681', }, { attributes: { @@ -7847,14 +7847,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'this is perfect, thank you <@UG5KSKXQF>', type: 'message', }, - id: '236056', + _id: '236056', }, { attributes: { id: '1568819450.112700--star--UG5KSKXQF', labels: ['Reaction'], }, - id: '96747', + _id: '96747', }, { attributes: { @@ -7864,14 +7864,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Keep in mind that you can't use `SET` within a CASE. While there are APOC conditional procedures, it would probably be easier to use two separate queries here, as you only need to do this kind of processing once", type: 'message', }, - id: '236112', + _id: '236112', }, { attributes: { id: '1568912898.162400--+1--ULU4HSAKV', labels: ['Reaction'], }, - id: '96780', + _id: '96780', }, { attributes: { @@ -7881,14 +7881,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: ">>> That looks like the right move. Nodes without labels are weights that will drag down db performance (if you ever need to look them up as opposed to traversing to them). A label scan at least is going to outperform an all nodes scan, and once indexes are in the mix there's no contest.", type: 'message', }, - id: '236221', + _id: '236221', }, { attributes: { id: '1568952605.226900--+1--ULU4HSAKV', labels: ['Reaction'], }, - id: '96871', + _id: '96871', }, { attributes: { @@ -7898,14 +7898,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'either the official javascript driver\nor <http://grandstack.io|grandstack.io> for graphql\nor the neode object mapper on top of the official driver', type: 'message', }, - id: '236457', + _id: '236457', }, { attributes: { id: '1569537113.369300--+1--UM4ECFGQ1', labels: ['Reaction'], }, - id: '97695', + _id: '97695', }, { attributes: { @@ -7915,14 +7915,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'glad you sorted it out. really odd, perhaps a remnant?', type: 'message', }, - id: '236496', + _id: '236496', }, { attributes: { id: '1569678377.386900--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '97730', + _id: '97730', }, { attributes: { @@ -7932,14 +7932,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'yep', type: 'message', }, - id: '236523', + _id: '236523', }, { attributes: { id: '1569808439.403100--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '97794', + _id: '97794', }, { attributes: { @@ -7949,14 +7949,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Just a matter of where in the backlog it sits', type: 'message', }, - id: '236679', + _id: '236679', }, { attributes: { id: '1570059158.010300--heart--UKTCT84M8', labels: ['Reaction'], }, - id: '97934', + _id: '97934', }, { attributes: { @@ -7966,14 +7966,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'It’s not really an issue. I think your nmap call and its probing of supported SSL/TLS versions caused the prints. You can safely ignore them if you don’t have any other issues.', type: 'message', }, - id: '236719', + _id: '236719', }, { attributes: { id: '1570114855.033000--+1--UJMBZ139S', labels: ['Reaction'], }, - id: '98075', + _id: '98075', }, { attributes: { @@ -7983,14 +7983,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'yean, not worth it on large files, for small files it makes the import a tiny bit faster', type: 'message', }, - id: '236929', + _id: '236929', }, { attributes: { id: '1570742702.092700--tophat--UD03BJXK9', labels: ['Reaction'], }, - id: '98195', + _id: '98195', }, { attributes: { @@ -8000,14 +8000,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '9500+ from the community :wink:', type: 'message', }, - id: '237006', + _id: '237006', }, { attributes: { id: '1570998430.161200--tada--U08J18KHB', labels: ['Reaction'], }, - id: '98214', + _id: '98214', }, { attributes: { @@ -8017,14 +8017,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<https://neo4j.com/developer/kb/understanding-cypher-cardinality/>', type: 'message', }, - id: '237119', + _id: '237119', }, { attributes: { id: '1571251796.219400--partyparrot--ULAHVNXC6', labels: ['Reaction'], }, - id: '98264', + _id: '98264', }, { attributes: { @@ -8034,14 +8034,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thank you very much, <@U3RJEUY2Z>. This is very helpful. By the way, I was just reading two of your articles this morning "Creating and working with linked lists in Cypher" and "Limiting MATCH results per row". Your articles and insights are incredibly helpful, and I really appreciate the way you dissect topics, explain the nuances of Cypher, and present multiple alternative solutions. Thank you so much for that!', type: 'message', }, - id: '237169', + _id: '237169', }, { attributes: { id: '1571316806.233000--heart--U08J18KHB', labels: ['Reaction'], }, - id: '98396', + _id: '98396', }, { attributes: { @@ -8051,14 +8051,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "No. The ids are essentially pointers in the relevant store files, so we don't allow any alternate means of allocation, as changing this would break how Neo4j works.", type: 'message', }, - id: '237199', + _id: '237199', }, { attributes: { id: '1571421870.258100--+1--UPAHXND97', labels: ['Reaction'], }, - id: '98397', + _id: '98397', }, { attributes: { @@ -8068,21 +8068,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'convert the file to UTF-8 before loading. load csv only works with UTF-8: <https://neo4j.com/docs/cypher-manual/current/clauses/load-csv/#csv-file-format>', type: 'message', }, - id: '237272', + _id: '237272', }, { attributes: { id: '1571730210.295100--+1--U08J18KHB', labels: ['Reaction'], }, - id: '98433', + _id: '98433', }, { attributes: { id: '1571730210.295100--+1--UNR9H81C2', labels: ['Reaction'], }, - id: '98480', + _id: '98480', }, { attributes: { @@ -8092,14 +8092,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@ULU4HSAKV> That is a pending FR in neo4j side. Checkout the below link. I was looking the same sometime before. Hope to get this soon :+1: Hope i answered your quest.\n<https://github.com/neo4j/neo4j/issues/10941>', type: 'message', }, - id: '237288', + _id: '237288', }, { attributes: { id: '1571768207.308300--marionluigi--ULU4HSAKV', labels: ['Reaction'], }, - id: '98481', + _id: '98481', }, { attributes: { @@ -8109,14 +8109,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@UPPNW57UK> you can look at one of apoc.export.json.* to start with\nbut if you want to have a programmatic approach you can use one of the neo4j drivers to call the apoc to export your json then use that to import into your firebase db using firebase APIs.', type: 'message', }, - id: '237476', + _id: '237476', }, { attributes: { id: '1572567444.436200--+1--U08J18KHB', labels: ['Reaction'], }, - id: '98533', + _id: '98533', }, { attributes: { @@ -8126,14 +8126,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Hi, <@UPRLUAPV4>. Neo4j Aura does support APOC. It’s installed by default. It may be somewhat more limited that your local installation of APOC if you use things like the JDBC load procedures because we don’t automatically install things like 3rd-party JDBC drivers, but the APOC library is available.\n\nNeo4j Aura does not support the spatial plugin today.', type: 'message', }, - id: '237622', + _id: '237622', }, { attributes: { id: '1573222281.004200--+1--UP712GU0L', labels: ['Reaction'], }, - id: '98642', + _id: '98642', }, { attributes: { @@ -8143,14 +8143,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Awesome. I just tried batching up the records (100 at a time seemed to be optimal based on local testing) and was able to increase it to about 800 per second. I should note that this is 800 master nodes, for which I have 1-2 subnodes being created with relationships associated with the nodes with a slightly complex unwind. It's still not 200k/sec, but heck this is a pet project, I'm going to be done in half a day instead of a few months, so I'm going to declare victory!", type: 'message', }, - id: '237715', + _id: '237715', }, { attributes: { id: '1573613018.084800--heart--U08J18KHB', labels: ['Reaction'], }, - id: '98645', + _id: '98645', }, { attributes: { @@ -8160,14 +8160,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "By way of answering with an example - I've got about 750k additional nodes per day that we process. I handle it through a couple of different paths - 1) Look for ways you can create edges between those nodes and then walk those nodes to reduce the number of nodes you are processing. Like for us most of our data revolves around string lookups so I've hashed them, created a label for those terms and then created edges between each of those terms and the labels that contain the values people are searching for. Makes it easy to walk/filter for them. 2) Good indexing on parameters and effective filters with Where statements. For us I use both spatial filters and hashes of some of the values as a sort of \"partition\" to limit the space I'm querying. I need responses in a couple of milliseconds over millions of nodes so I also add some caching in front of this Db to help with those hits.", type: 'message', }, - id: '238088', + _id: '238088', }, { attributes: { id: '1574738820.306500--+1--U08J18KHB', labels: ['Reaction'], }, - id: '98725', + _id: '98725', }, { attributes: { @@ -8177,14 +8177,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Also, un-relatedly, lovin' the beard and stache", type: 'message', }, - id: '238443', + _id: '238443', }, { attributes: { id: '1575902837.031400--bearded_person--UR9J0014M', labels: ['Reaction'], }, - id: '98994', + _id: '98994', }, { attributes: { @@ -8194,14 +8194,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "If you just need the list of nodes, just `RETURN nodes(p)` since you don't need to filter or extract from the list.", type: 'message', }, - id: '238537', + _id: '238537', }, { attributes: { id: '1576155381.092000--+1--UN90WS7HU', labels: ['Reaction'], }, - id: '98996', + _id: '98996', }, { attributes: { @@ -8212,14 +8212,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Here are a number of links <https://community.neo4j.com/t/how-can-i-optimize-my-cypher-queries/114/3>', type: 'message', }, - id: '238782', + _id: '238782', }, { attributes: { id: '1576919232.059100--+1--U93L3LWE8', labels: ['Reaction'], }, - id: '99012', + _id: '99012', }, { attributes: { @@ -8229,14 +8229,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Perhaps this is helpful? <https://medium.com/neo4j/querying-neo4j-clusters-7d6fde75b5b4>', type: 'message', }, - id: '238993', + _id: '238993', }, { attributes: { id: '1578496388.010300--+1--UPWSJ5UUW', labels: ['Reaction'], }, - id: '99017', + _id: '99017', }, { attributes: { @@ -8246,14 +8246,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@UQALLC70V> I guess tht wld differ from Driver, but in these cases you should always have a retry try{}catch() kind of......Also, this would happen in Insert case only...We also encounter this regularly...', type: 'message', }, - id: '239021', + _id: '239021', }, { attributes: { id: '1578591432.027600--+1--UQALLC70V', labels: ['Reaction'], }, - id: '99019', + _id: '99019', }, { attributes: { @@ -8263,14 +8263,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@USNH382S0> Running containers is okay but not very convenient to tweak neo4j on windows', type: 'message', }, - id: '239195', + _id: '239195', }, { attributes: { id: '1579093232.149500--+1--USNH382S0', labels: ['Reaction'], }, - id: '99025', + _id: '99025', }, { attributes: { @@ -8280,21 +8280,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Install Desktop 1.2.4 then you can install Neo4j 4.0 which has multi-db', type: 'message', }, - id: '239274', + _id: '239274', }, { attributes: { id: '1579302573.037100--+1--USNH382S0', labels: ['Reaction'], }, - id: '99029', + _id: '99029', }, { attributes: { id: '1579302573.037100--+1--US35T8ML2', labels: ['Reaction'], }, - id: '99030', + _id: '99030', }, { attributes: { @@ -8304,14 +8304,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Would be awesome.', type: 'message', }, - id: '239285', + _id: '239285', }, { attributes: { id: '1579431406.039900--+1--USNH382S0', labels: ['Reaction'], }, - id: '99031', + _id: '99031', }, { attributes: { @@ -8321,14 +8321,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'No, user-role management and multi-databases are Enterprise features. <https://neo4j.com/blog/neo4j-enterprise-edition-4-0-milestone-release-2/>', type: 'message', }, - id: '239286', + _id: '239286', }, { attributes: { id: '1579460309.040100--pray--USNH382S0', labels: ['Reaction'], }, - id: '99049', + _id: '99049', }, { attributes: { @@ -8338,14 +8338,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Where can we find the current documentation? List of features. Which features in which edition.', type: 'message', }, - id: '239287', + _id: '239287', }, { attributes: { id: '1579460879.040400--+1--USNH382S0', labels: ['Reaction'], }, - id: '99050', + _id: '99050', }, { attributes: { @@ -8355,14 +8355,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'But you can use Neo4j Enterprise in Sandbox, Desktop and under the startup/edu program. It will also come to Aura soon(ish).', type: 'message', }, - id: '239291', + _id: '239291', }, { attributes: { id: '1579474358.042700--pray--USNH382S0', labels: ['Reaction'], }, - id: '99051', + _id: '99051', }, { attributes: { @@ -8372,14 +8372,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Sure. Thanks for all your help. Sorry for annoying you. As, I am new to this technology have lot of queries.', type: 'message', }, - id: '239407', + _id: '239407', }, { attributes: { id: '1579774113.004800--+1--USCTTNARM', labels: ['Reaction'], }, - id: '99067', + _id: '99067', }, { attributes: { @@ -8389,14 +8389,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thank you Tony. Will give this a try.', type: 'message', }, - id: '239434', + _id: '239434', }, { attributes: { id: '1579896687.018700--smile--US53722H1', labels: ['Reaction'], }, - id: '99072', + _id: '99072', }, { attributes: { @@ -8406,14 +8406,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'At the moment, no. It’s definitely something that I’d like to add though. The GRANDstack code does something similar so I know that it’s possible', type: 'message', }, - id: '239535', + _id: '239535', }, { attributes: { id: '1580379476.074600--+1--UTBLKSBHC', labels: ['Reaction'], }, - id: '99099', + _id: '99099', }, { attributes: { @@ -8423,14 +8423,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Yes, that looks good.', type: 'message', }, - id: '239602', + _id: '239602', }, { attributes: { id: '1580520797.130500--+1--USX1UBRJ7', labels: ['Reaction'], }, - id: '99134', + _id: '99134', }, { attributes: { @@ -8440,14 +8440,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Hi Dave, a MERGE SHOULD only contain the identifing properties. Otherwise it will create a new node if one of the properties has changed. This part of the documentation explains that very well. <https://neo4j.com/docs/cypher-manual/current/clauses/merge/#query-merge-on-create-on-match>', type: 'message', }, - id: '239863', + _id: '239863', }, { attributes: { id: '1581316155.284000--+1--UA34M0T7C', labels: ['Reaction'], }, - id: '99169', + _id: '99169', }, { attributes: { @@ -8457,14 +8457,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'this can be one of DEBUG, INFO, WARN, ERROR, NONE', type: 'message', }, - id: '239904', + _id: '239904', }, { attributes: { id: '1581411664.303600--+1--UA34M0T7C', labels: ['Reaction'], }, - id: '99172', + _id: '99172', }, { attributes: { @@ -8474,14 +8474,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks for you cooperation and time. I will try to see if i can figure out the problem. If i get any solution, i will let you know', type: 'message', }, - id: '239957', + _id: '239957', }, { attributes: { id: '1581418975.317800--+1--USCTTNARM', labels: ['Reaction'], }, - id: '99174', + _id: '99174', }, { attributes: { @@ -8491,21 +8491,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Looks like the debug log is no better', type: 'message', }, - id: '239968', + _id: '239968', }, { attributes: { id: '1581454277.323000--disappointed--USCTTNARM', labels: ['Reaction'], }, - id: '99175', + _id: '99175', }, { attributes: { id: '1581454277.323000--cry--UA34M0T7C', labels: ['Reaction'], }, - id: '99176', + _id: '99176', }, { attributes: { @@ -8515,14 +8515,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Nope, I probably should!', type: 'message', }, - id: '239991', + _id: '239991', }, { attributes: { id: '1581513887.331700--+1--USCTTNARM', labels: ['Reaction'], }, - id: '99177', + _id: '99177', }, { attributes: { @@ -8532,14 +8532,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I’d just put it in Neo4j Graph Platform', type: 'message', }, - id: '239995', + _id: '239995', }, { attributes: { id: '1581514143.334300--+1--UA34M0T7C', labels: ['Reaction'], }, - id: '99178', + _id: '99178', }, { attributes: { @@ -8549,14 +8549,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Do speed up algo’s and queries, removing anything unnecessary is a good plan :slightly_smiling_face:', type: 'message', }, - id: '240028', + _id: '240028', }, { attributes: { id: '1581673464.353100--+1--UA34M0T7C', labels: ['Reaction'], }, - id: '99220', + _id: '99220', }, { attributes: { @@ -8566,14 +8566,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I would ignore filtering and just set properties to null, no matter if they exist or not..\n```CALL apoc.periodic.iterate(\n "MATCH ()-[r:RELATIONSHIP_TYPE]->() RETURN r",\n "SET r.GP1 = NULL",\n {batchSize:10000, parallel:false})```', type: 'message', }, - id: '240080', + _id: '240080', }, { attributes: { id: '1581931187.382000--+1--UA34M0T7C', labels: ['Reaction'], }, - id: '99223', + _id: '99223', }, { attributes: { @@ -8583,14 +8583,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Ah, no I don’t!', type: 'message', }, - id: '240090', + _id: '240090', }, { attributes: { id: '1581934171.386900--+1--USCTTNARM', labels: ['Reaction'], }, - id: '99224', + _id: '99224', }, { attributes: { @@ -8600,14 +8600,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I’d just let it run ', type: 'message', }, - id: '240257', + _id: '240257', }, { attributes: { id: '1582305219.485800--crossed_fingers--UA34M0T7C', labels: ['Reaction'], }, - id: '99240', + _id: '99240', }, { attributes: { @@ -8618,14 +8618,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<https://www.youtube.com/watch?v=GcaJ-aVLzr4>', type: 'message', }, - id: '240293', + _id: '240293', }, { attributes: { id: '1582626364.017900--+1--UBVS7LK1D', labels: ['Reaction'], }, - id: '99242', + _id: '99242', }, { attributes: { @@ -8635,14 +8635,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Likewise we do not currently have constraints on the existence (or number) of relationships of a given type on nodes of a given type.\n\nAgain, that is something that is of interest and may come about in the future.', type: 'message', }, - id: '240423', + _id: '240423', }, { attributes: { id: '1582919179.104400--+1--UTM2YDDL5', labels: ['Reaction'], }, - id: '99245', + _id: '99245', }, { attributes: { @@ -8652,14 +8652,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Sortof...I'll clarify.\n\nThere are no restrictions on relationships between two nodes. You can have as many relationships of as many types as you want, and yes there can be multiple relationships fo the same type and the same direction if needed.", type: 'message', }, - id: '240535', + _id: '240535', }, { attributes: { id: '1583262486.166400--raised_hands--UUTGQFLBW', labels: ['Reaction'], }, - id: '99246', + _id: '99246', }, { attributes: { @@ -8669,21 +8669,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "That said, for actors in movies, and movies belonging to a genre, that really shouldn't be modeled on relationships between two nodes like that", type: 'message', }, - id: '240537', + _id: '240537', }, { attributes: { id: '1583262609.167200--neutral_face--UUTGQFLBW', labels: ['Reaction'], }, - id: '99247', + _id: '99247', }, { attributes: { id: '1583262609.167200--thinking_face--UUTGQFLBW', labels: ['Reaction'], }, - id: '99248', + _id: '99248', }, { attributes: { @@ -8693,14 +8693,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "In both of those cases, there isn't a need to model that with relationships between two movie nodes, even if they have the same genre, or share the same actors.", type: 'message', }, - id: '240541', + _id: '240541', }, { attributes: { id: '1583262698.168200--+1--UUTGQFLBW', labels: ['Reaction'], }, - id: '99249', + _id: '99249', }, { attributes: { @@ -8710,14 +8710,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'So you would probably have :Person nodes and :Project nodes, and something like `(:Person)-[:WORKED_ON]->(:Project)` as one of the main patterns in your graph', type: 'message', }, - id: '240546', + _id: '240546', }, { attributes: { id: '1583262978.171700--open_mouth--UUTGQFLBW', labels: ['Reaction'], }, - id: '99250', + _id: '99250', }, { attributes: { @@ -8727,14 +8727,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "And if time is a factor, then that may introduce the need for another kind of node. Maybe something like an :Employment node with start and end dates:\n\n`(:Person)-[:EMPLOYED]->(:Employment)-[:EMPLOYED]->(:Project)`\n\nAnd this doesn't have to replace the earlier pattern, it can be in addition to it, allowing you to take advantage depending on if the query needs to consider employment dates or meta info, or if it's enough to simply match the pattern based upon projects worked on without that.", type: 'message', }, - id: '240549', + _id: '240549', }, { attributes: { id: '1583263149.172400--ok_hand--UUTGQFLBW', labels: ['Reaction'], }, - id: '99251', + _id: '99251', }, { attributes: { @@ -8744,14 +8744,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "So figuring out what's important in the data you want to model, and how that data is connected to other data, and if you need fast lookups of that data by its properties (or if it's enough just to filter on those properties) should all be considerations when modeling and figuring out what should be a node and what should be a relationship.", type: 'message', }, - id: '240554', + _id: '240554', }, { attributes: { id: '1583263274.173700--sunglasses--UUTGQFLBW', labels: ['Reaction'], }, - id: '99252', + _id: '99252', }, { attributes: { @@ -8761,14 +8761,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks; figured out there were duplicated edges', type: 'message', }, - id: '240572', + _id: '240572', }, { attributes: { id: '1583264038.177500--+1--U3RJEUY2Z', labels: ['Reaction'], }, - id: '99253', + _id: '99253', }, { attributes: { @@ -8778,14 +8778,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'hussain.mirahmadi: No, `CASE` conditionally resolves one of multiple expressions, not sub queries; you would have to run multiple queries. If you use APOC there might be support for running “queries within a query†using a procedure, but I don’t know off hand what that would look like. Sub queries are being worked on in openCypher, but I don’t know about road map for implementing it in Neo4j Cypher.', type: 'message', }, - id: '253832', + _id: '253832', }, { attributes: { id: '1491945401.958290--heart--U0MTRQNPP', labels: ['Reaction'], }, - id: '102254', + _id: '102254', }, { attributes: { @@ -8795,14 +8795,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks gudahtt', type: 'message', }, - id: '254631', + _id: '254631', }, { attributes: { id: '1495778788.507296--+1--U2RB5CJBW', labels: ['Reaction'], }, - id: '102465', + _id: '102465', }, { attributes: { @@ -8812,14 +8812,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Cypher operations always execute per-row (with the exception of aggregation operations of course, and DISTINCT), and changing how that works would either change the rows that are built up (which may be incorrect for subsequent operations), or require several comparisons and scans across rows. This gets more complicated with more complicated queries, as rows a built up due to multiple matches, or additional filtering. \n\nIn any case, such an improvement would not be trivial.', type: 'message', }, - id: '254948', + _id: '254948', }, { attributes: { id: '1497465810.558548--+1--U4YRHQA2Y', labels: ['Reaction'], }, - id: '102583', + _id: '102583', }, { attributes: { @@ -8829,14 +8829,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "On your first question, there's no way to do an inline match using OR for property values. You could do a match with a WHERE clause using OR, but the best approach is the second query you provided using collection membership", type: 'message', }, - id: '254984', + _id: '254984', }, { attributes: { id: '1497903338.745742--+1::skin-tone-4--U4YRHQA2Y', labels: ['Reaction'], }, - id: '102584', + _id: '102584', }, { attributes: { @@ -8846,14 +8846,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Ah, not inline, no, but keep in mind there's no difference in planning or performance between defining a property inline vs in a WHERE clause. It's just a syntactical shortcut.", type: 'message', }, - id: '254996', + _id: '254996', }, { attributes: { id: '1497971943.161923--memo--U4YRHQA2Y', labels: ['Reaction'], }, - id: '102585', + _id: '102585', }, { attributes: { @@ -8863,14 +8863,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "muove-guijunq: Try using OPTIONAL MATCH for those two patterns that may or may not exist. However, since you have both patterns in the same OPTIONAL MATCH, the OPTIONAL MATCH will fail completely if one of the two patterns isn't present, leading to all the newly introduced variables in the OPTIONAL MATCH being null.\n\nThis will be fine if you only want to calculate a value when both relationships are present (r1 and r2 must both be present to be non-null), which seems to be what you want since you have the condition that their years must match. \n\nYou can use COALESCE() on the values to choose a default of 0 if they are null:\n\n```... COALESCE(r1.value - r2.value, 0) as resultando```", type: 'message', }, - id: '255038', + _id: '255038', }, { attributes: { id: '1498106411.225950--+1::skin-tone-4--U4YRHQA2Y', labels: ['Reaction'], }, - id: '102587', + _id: '102587', }, { attributes: { @@ -8880,14 +8880,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'i guess it is also a modelling question', type: 'message', }, - id: '145158', + _id: '145158', }, { attributes: { id: '1506365151.000315--+1::skin-tone-4--U4YRHQA2Y', labels: ['Reaction'], }, - id: '103862', + _id: '103862', }, { attributes: { @@ -8897,21 +8897,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I agree, I also think MERGE should handle this. I raised this internally recently, it's on our radar as an improvement.", type: 'message', }, - id: '145160', + _id: '145160', }, { attributes: { id: '1506365217.000385--+1--U2D751FP0', labels: ['Reaction'], }, - id: '103863', + _id: '103863', }, { attributes: { id: '1506365217.000385--+1--U4YRHQA2Y', labels: ['Reaction'], }, - id: '104203', + _id: '104203', }, { attributes: { @@ -8921,14 +8921,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'you can also use `apoc.coll.sortMaps(listofMaps, key)`', type: 'message', }, - id: '144622', + _id: '144622', }, { attributes: { id: '1510045391.000280--partyparrot--U7DQZLPBQ', labels: ['Reaction'], }, - id: '105132', + _id: '105132', }, { attributes: { @@ -8938,14 +8938,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks <@U5QEK6Z5G>! Let’s see how this works for me.', type: 'message', }, - id: '143936', + _id: '143936', }, { attributes: { id: '1513345914.000101--+1--U5QEK6Z5G', labels: ['Reaction'], }, - id: '105518', + _id: '105518', }, { attributes: { @@ -8955,14 +8955,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "The difference is that MERGE, if it doesn't find the pattern, will attempt to create the entire pattern (with the exception of previously variables). Since I previously matched both `p` and `a`, those exact nodes are reused. \n\nIn your attempts, `p` isn't previously bound, so the existing node isn't used, so it creates that node too as it creates the rest of the pattern, and you get a duplicate node.", type: 'message', }, - id: '143628', + _id: '143628', }, { attributes: { id: '1516647483.000066--+1::skin-tone-4--U4YRHQA2Y', labels: ['Reaction'], }, - id: '105812', + _id: '105812', }, { attributes: { @@ -8972,14 +8972,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '```MATCH path=... WHERE all(x in nodes(path) WHERE x in listOfValidNodes) ....```', type: 'message', }, - id: '142926', + _id: '142926', }, { attributes: { id: '1521045855.000539--+1--U6BJWR96Z', labels: ['Reaction'], }, - id: '106897', + _id: '106897', }, { attributes: { @@ -8989,14 +8989,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Hello,\nI haven’t tested it, but something like this should do the job:\n\nmatch (n)\nwith *, size((n)--()) as Degree, size((n)--(n)) as SelfDegree\nwhere (Degree - SelfDegree) = 0\nreturn n\nlimit 10', type: 'message', }, - id: '142673', + _id: '142673', }, { attributes: { id: '1522513894.000143--+1--U2PHPK215', labels: ['Reaction'], }, - id: '107709', + _id: '107709', }, { attributes: { @@ -9006,14 +9006,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "So your query becomes :\n```\nMATCH (n:Node {uuid:\"cd9ce17a-48d8-4df4-994d-6bfc9bdf28eb\"}) , (app:Application{name:'BSCC Access Portal'})\nWHERE any(x in labels (n) WHERE x in ['Person', 'Service', 'Location'])\nWITH n, app\nCREATE (app)-[r:GRANTS_ACCESS_TO]->(n)\nRETURN app,r,n\n```\nAnd this one is efficient", type: 'message', }, - id: '142336', + _id: '142336', }, { attributes: { id: '1524514069.000449--+1--U7MGUUR9D', labels: ['Reaction'], }, - id: '107712', + _id: '107712', }, { attributes: { @@ -9023,14 +9023,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'But APOC works fine:\n`CALL apoc.load.csv(\'<http://ctdbase.org/reports/CTD_chem_gene_ixns.csv.gz>\',{sep:","}) YIELD lineNo, list, strings, map, stringMap with * limit 5 return *`', type: 'message', }, - id: '142219', + _id: '142219', }, { attributes: { id: '1525323112.000188--+1--U08J18KHB', labels: ['Reaction'], }, - id: '107922', + _id: '107922', }, { attributes: { @@ -9040,14 +9040,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Yeah… The regex is faster…', type: 'message', }, - id: '142013', + _id: '142013', }, { attributes: { id: '1525898127.000592--+1--U08JH64PM', labels: ['Reaction'], }, - id: '108041', + _id: '108041', }, { attributes: { @@ -9057,14 +9057,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Right, 3.4.4 was released just last week I believe, but there's a hiccup on having the Desktop app detect it. Go with 3.4.1 for now, we'll likely fix things up early this week.", type: 'message', }, - id: '141122', + _id: '141122', }, { attributes: { id: '1531713075.000140--100--UBQ15C78D', labels: ['Reaction'], }, - id: '110144', + _id: '110144', }, { attributes: { @@ -9074,14 +9074,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'by default `apoc.warmup.run` does *not* touch properties - just nodes and rels.\nyou can use `call apoc.warmup.run(true,true)` to be more greedy and get all the props.', type: 'message', }, - id: '140956', + _id: '140956', }, { attributes: { id: '1532355702.000133--+1--U9373KH61', labels: ['Reaction'], }, - id: '110394', + _id: '110394', }, { attributes: { @@ -9091,14 +9091,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'really cool trick David, you should make a t-shirt with this one :)', type: 'message', }, - id: '140626', + _id: '140626', }, { attributes: { id: '1533739587.000150--+1--U7X490V7X', labels: ['Reaction'], }, - id: '111130', + _id: '111130', }, { attributes: { @@ -9108,21 +9108,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I think you're on the right track. The important thing to keep in mind is that aggregations in Neo4j (such as `sum()`) use the non-aggregation variables as the grouping key, the context for the aggregation.\n\nThe original query took the sum with respect to the movie title. Your altered query took the sum with respect to the movie title and `pearson`, so that changed both how the rows were generated and the context for the aggregation.\n\nIf you wanted to keep `pearson` as a separate variable yet aggregate as in the original query, you would need a workaround.\n\nA common workaround for this case is to collect() on the nodes you want (which removes it as a part of the grouping key, since it's now an aggregation), then UNWIND the collection back to rows:\n\n```\nWITH m.title as title, collect(pearson) as pearsons, SUM( pearson * r.rating) AS score\nUNWIND pearsons as pearson\nRETURN title, pearson, score\n```", type: 'message', }, - id: '140505', + _id: '140505', }, { attributes: { id: '1534173549.000529--heavy_check_mark--UC39PB4B0', labels: ['Reaction'], }, - id: '111621', + _id: '111621', }, { attributes: { id: '1534173549.000529--heavy_check_mark--U8C0Z14N8', labels: ['Reaction'], }, - id: '111697', + _id: '111697', }, { attributes: { @@ -9132,14 +9132,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'There was a separate convo about how many labels you can have before it starts to become a performance liability. The link Max deMarzi posted put that number at 5. My recommendation would be not to exceed about 5 labels for best performance. For something like gender, I’d recommend an indexed property instead. If, in your queries, it’s compellingly useful to treat men vs. women as “classes†of information (i.e. maybe you’re always looking for men > 30yrs old, and never “people†> 30 yrs old) then that could argue for putting gender as a label, but in general I’d use properties for that.', type: 'message', }, - id: '140517', + _id: '140517', }, { attributes: { id: '1534195688.000173--+1--UAGGP1RQV', labels: ['Reaction'], }, - id: '111728', + _id: '111728', }, { attributes: { @@ -9149,21 +9149,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'MATCH (n:Employee) OPTIONAL MATCH (n)-[r:REPORTS_TO|BRANCH_OF|OVERSEEN_BY]->() RETURN collect(DISTINCT n) as nodes, collect(r) as edges', type: 'message', }, - id: '139941', + _id: '139941', }, { attributes: { id: '1536237902.000100--+1--U08J18KHB', labels: ['Reaction'], }, - id: '113038', + _id: '113038', }, { attributes: { id: '1536237902.000100--steam_locomotive--U8ZMJTA3X', labels: ['Reaction'], }, - id: '113047', + _id: '113047', }, { attributes: { @@ -9173,14 +9173,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@UBVED4KTN> Not yet in the plugin, but see <https://grandstack.io/docs/neo4j-graphql-js.html#relationships-with-properties> for neo4j-graphql.js and <https://github.com/neo4j-graphql/neo4j-graphql-java#relationship-on-types> for neo4j-graphql-java', type: 'message', }, - id: '139479', + _id: '139479', }, { attributes: { id: '1544556121.045200--heart--UBVED4KTN', labels: ['Reaction'], }, - id: '113363', + _id: '113363', }, { attributes: { @@ -9190,14 +9190,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'only the ones that are mentioned there, plus in a new release one config for quoting', type: 'message', }, - id: '139331', + _id: '139331', }, { attributes: { id: '1547015964.039100--+1--UBQ15C78D', labels: ['Reaction'], }, - id: '113892', + _id: '113892', }, { attributes: { @@ -9207,14 +9207,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'if you are reporting, remove any ORDER BY clauses, and do those separately in excel later.', type: 'message', }, - id: '139246', + _id: '139246', }, { attributes: { id: '1548873420.122300--heart--UC41WPFA4', labels: ['Reaction'], }, - id: '114070', + _id: '114070', }, { attributes: { @@ -9224,14 +9224,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Central US time', type: 'message', }, - id: '139259', + _id: '139259', }, { attributes: { id: '1548880045.126200--+1--UC41WPFA4', labels: ['Reaction'], }, - id: '114158', + _id: '114158', }, { attributes: { @@ -9241,14 +9241,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Say more about your suggestion, please Andrew.\n\nAre you saying:\n\n`MATCH (p:Person)-[:ACTED_IN|:WROTE|:DIRECTED|:PRODUCED]->(m:Movie)`\n`WITH m, p`\n`RETURN m.title, COLLECT(p) `\n\nShould be more efficient than\n\n`MATCH (p:Person)-[:ACTED_IN|:WROTE|:DIRECTED|:PRODUCED]->(m:Movie)`\n`RETURN m.title, COLLECT(p) `\n\n? My understanding had been that a `WITH` and `RETURN` were about the same “costâ€, so I’m curious about why you’d make this suggestion.', type: 'message', }, - id: '138562', + _id: '138562', }, { attributes: { id: '1561847577.098700--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '115821', + _id: '115821', }, { attributes: { @@ -9258,14 +9258,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Ah, not quite. I'm referring to aggregating with respect to `m`, then saving the projection of the property in the return like so:\n\n```\nMATCH (p:Person)-[:ACTED_IN|:WROTE|:DIRECTED|:PRODUCED]->(m:Movie)\nWITH m, collect(p) AS persons\nRETURN m.title, persons\n```", type: 'message', }, - id: '138547', + _id: '138547', }, { attributes: { id: '1561988584.105800--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '115823', + _id: '115823', }, { attributes: { @@ -9275,14 +9275,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "The difference is whether we perform property access for `m.title` before the aggregation, or after. Before the aggregation, there will be a number of rows with the same movie equal to the number of associated persons according to the match pattern. So if 10 people were associated with the movie (actors, writers, directors, producers), then you would be accessing `m.title` 10 times for the same movie. Then the aggregation happens by the common titles, narrowing this down to a single movie title per movie with the list of persons. So same result (assuming movie titles are unique) but you are paying for redundant property access.\n\nIf we perform the aggregation first by `m`, we don't pay that cost for redundant property access. We aggregate by the movie nodes, then when we have 1 row per movie, we project out the title, once per movie.", type: 'message', }, - id: '138548', + _id: '138548', }, { attributes: { id: '1561988829.106100--sunglasses--UKEQY3MBL', labels: ['Reaction'], }, - id: '115824', + _id: '115824', }, { attributes: { @@ -9292,14 +9292,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Neo4j times do, in fact, break down into years/months/days/hours/minutes/seconds/etc so what you are saying is entirely possible.', type: 'message', }, - id: '138496', + _id: '138496', }, { attributes: { id: '1562832445.135500--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '115865', + _id: '115865', }, { attributes: { @@ -9309,14 +9309,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Have you seen this part of the Cypher manual? <https://neo4j.com/docs/cypher-manual/current/syntax/temporal/#cypher-temporal-accessing-components-temporal-instants>', type: 'message', }, - id: '138497', + _id: '138497', }, { attributes: { id: '1562832581.135800--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '115866', + _id: '115866', }, { attributes: { @@ -9326,14 +9326,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "_I'm assuming the `value` of your `Date`-labeled nodes is a `date` or `datetime` type_", type: 'message', }, - id: '138498', + _id: '138498', }, { attributes: { id: '1562832865.136100--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '115876', + _id: '115876', }, { attributes: { @@ -9343,14 +9343,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '> I may want to return only each second day, or each sixth or seventh day\n<@UKGE830V9> Do you mean only the "second day" of the week, or "every alternating day"?', type: 'message', }, - id: '138499', + _id: '138499', }, { attributes: { id: '1562835889.138300--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '115910', + _id: '115910', }, { attributes: { @@ -9360,14 +9360,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: ':clap:', type: 'message', }, - id: '138505', + _id: '138505', }, { attributes: { id: '1562858130.140200--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '115911', + _id: '115911', }, { attributes: { @@ -9377,14 +9377,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'or see Slide 94 of this class: <https://www.slideshare.net/maxdemarzi/data-modeling-with-neo4j-tutorial>', type: 'message', }, - id: '138487', + _id: '138487', }, { attributes: { id: '1563243917.143300--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '115974', + _id: '115974', }, { attributes: { @@ -9394,14 +9394,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'as far as I grok it, it operates as a sort of carry-over between MERGE/MATCH statements?', type: 'message', }, - id: '138442', + _id: '138442', }, { attributes: { id: '1563386111.160700--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '116090', + _id: '116090', }, { attributes: { @@ -9411,14 +9411,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'the first `WITH` is overkill', type: 'message', }, - id: '138446', + _id: '138446', }, { attributes: { id: '1563386121.161500--+1--UK35Q1EBV', labels: ['Reaction'], }, - id: '116241', + _id: '116241', }, { attributes: { @@ -9428,14 +9428,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: ':partyparrot:', type: 'message', }, - id: '138451', + _id: '138451', }, { attributes: { id: '1563386290.162500--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '116242', + _id: '116242', }, { attributes: { @@ -9445,21 +9445,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "WITH is also a place to do projection and aggregation. Keep in mind that if you need DISTINCT rows for the variables involved, you need to explicitly use WITH DISTINCT, it won't happen implicitly", type: 'message', }, - id: '138453', + _id: '138453', }, { attributes: { id: '1563387151.165900--+1--ULFE1P0BS', labels: ['Reaction'], }, - id: '116303', + _id: '116303', }, { attributes: { id: '1563387151.165900--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '116478', + _id: '116478', }, { attributes: { @@ -9469,14 +9469,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "got it. So it's hoisting, okay. that makes perfect sense.", type: 'message', }, - id: '138456', + _id: '138456', }, { attributes: { id: '1563387478.166600--heavy_check_mark--UKEQY3MBL', labels: ['Reaction'], }, - id: '116487', + _id: '116487', }, { attributes: { @@ -9486,21 +9486,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Oh, one other thing to know, you can use SKIP, LIMIT, and ORDER BY on a WITH, as well as a WHERE if you want to filter', type: 'message', }, - id: '138458', + _id: '138458', }, { attributes: { id: '1563387535.167000--+1--ULFE1P0BS', labels: ['Reaction'], }, - id: '116663', + _id: '116663', }, { attributes: { id: '1563387535.167000--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '116684', + _id: '116684', }, { attributes: { @@ -9510,14 +9510,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'our team, by using PROFILE and EXPLAIN we got to better understand how to use WITH and improve performance', type: 'message', }, - id: '138459', + _id: '138459', }, { attributes: { id: '1563402284.167500--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '116685', + _id: '116685', }, { attributes: { @@ -9527,14 +9527,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "In Java strings `\\\\` escapes the backslash, so with an input of `\\\\n`, after processing the escape `\\n` would be left. (`\\n` itself would be a newline in a Java string)\n\nSo to have a literal `\\\\n` left in the string, you'd need to escape two backslashes, so 4 of `\\`'s are needed:\n\n`\\\\\\\\n`", type: 'message', }, - id: '138217', + _id: '138217', }, { attributes: { id: '1564775917.121200--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '117625', + _id: '117625', }, { attributes: { @@ -9544,21 +9544,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Try this one out:\n\n```\nMATCH (p:Person)\nWHERE p.PersonId in SOMELIST\nWITH COLLECT(p) as peopleList\nUNWIND peopleList as p1\nMATCH (p1)-[r:Relationship]->(p2)\nWHERE p2 in peopleList\nRETURN p1, r, p2\n```', type: 'message', }, - id: '138179', + _id: '138179', }, { attributes: { id: '1565813384.144800--heart--UK35Q1EBV', labels: ['Reaction'], }, - id: '117774', + _id: '117774', }, { attributes: { id: '1565813384.144800--heart--UM4ECFGQ1', labels: ['Reaction'], }, - id: '117778', + _id: '117778', }, { attributes: { @@ -9568,14 +9568,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'ok. So Can you provide an example of input and desired output?', type: 'message', }, - id: '137976', + _id: '137976', }, { attributes: { id: '1566855652.240900--+1--UMD0PL4H5', labels: ['Reaction'], }, - id: '118021', + _id: '118021', }, { attributes: { @@ -9585,14 +9585,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'it would', type: 'message', }, - id: '137916', + _id: '137916', }, { attributes: { id: '1567614671.032400--thinking_face--UMTBETETA', labels: ['Reaction'], }, - id: '118022', + _id: '118022', }, { attributes: { @@ -9602,14 +9602,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'This worked like a `charm`!! Thank you', type: 'message', }, - id: '137806', + _id: '137806', }, { attributes: { id: '1568212796.097900--+1--U3RJEUY2Z', labels: ['Reaction'], }, - id: '118024', + _id: '118024', }, { attributes: { @@ -9619,14 +9619,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'so all you need is another merge and you are good to go', type: 'message', }, - id: '137567', + _id: '137567', }, { attributes: { id: '1570739122.017500--+1--UM74BAEE5', labels: ['Reaction'], }, - id: '118592', + _id: '118592', }, { attributes: { @@ -9636,21 +9636,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Unfortunately you will need to filter out nulls in your list before you can use `apoc.text.join()` to join the elements together. Something like this, provided `location` is the node in scope:\n\n```\n...\nWITH [item in [location.city, location.state, location.country] WHERE item IS NOT NULL] as locationList\nRETURN apoc.text.join(locationList, ';') as locationKey\n```", type: 'message', }, - id: '137479', + _id: '137479', }, { attributes: { id: '1571059757.047300--heart--UKHH739TK', labels: ['Reaction'], }, - id: '118593', + _id: '118593', }, { attributes: { id: '1571059757.047300--confetti_ball--UKHH739TK', labels: ['Reaction'], }, - id: '118841', + _id: '118841', }, { attributes: { @@ -9660,21 +9660,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'etc', type: 'message', }, - id: '137347', + _id: '137347', }, { attributes: { id: '1572865670.128200--heart--UPRDCR4GJ', labels: ['Reaction'], }, - id: '118844', + _id: '118844', }, { attributes: { id: '1572865670.128200--heart--U08J18KHB', labels: ['Reaction'], }, - id: '118845', + _id: '118845', }, { attributes: { @@ -9684,14 +9684,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'ok i am joining in', type: 'message', }, - id: '137353', + _id: '137353', }, { attributes: { id: '1572865856.129800--+1--U0DDNCDR7', labels: ['Reaction'], }, - id: '118846', + _id: '118846', }, { attributes: { @@ -9701,14 +9701,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'the next version of cypher-shell will have `-f file`', type: 'message', }, - id: '137325', + _id: '137325', }, { attributes: { id: '1572963534.139100--+1--U08J2HAE7', labels: ['Reaction'], }, - id: '118847', + _id: '118847', }, { attributes: { @@ -9718,14 +9718,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "neither slack nor forum has any SLA it's best effort by the dev-rel team, some neo4j folks, and a lot of helpful community members", type: 'message', }, - id: '136711', + _id: '136711', }, { attributes: { id: '1581164055.159300--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '120022', + _id: '120022', }, { attributes: { @@ -9735,21 +9735,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "It's a known issue, which I fixed in apoc (but unfortunately it requires sampling the db so it makes it slower). \nIn db.schema() there was no one who could take it on, but I can try to patch it there too when I'm back from vaca.", type: 'message', }, - id: '134303', + _id: '134303', }, { attributes: { id: '1501235676.683455--+1--U3RJEUY2Z', labels: ['Reaction'], }, - id: '122158', + _id: '122158', }, { attributes: { id: '1501235676.683455--+1::skin-tone-4--U4YRHQA2Y', labels: ['Reaction'], }, - id: '122159', + _id: '122159', }, { attributes: { @@ -9759,14 +9759,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I'd try with small RAM (e.g. 8G) and check how long it takes. You can switch off consistency checking btw.", type: 'message', }, - id: '133239', + _id: '133239', }, { attributes: { id: '1530531614.000097--+1--UBESZ7FED', labels: ['Reaction'], }, - id: '123178', + _id: '123178', }, { attributes: { @@ -9776,14 +9776,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I think the questions were adapted for causal clusters now. There is also a production training and you can easily set up clusters using Docker and play around with them and e.g. bolt+routing drivers.', type: 'message', }, - id: '133106', + _id: '133106', }, { attributes: { id: '1533739645.000509--+1::skin-tone-4--U4YRHQA2Y', labels: ['Reaction'], }, - id: '123200', + _id: '123200', }, { attributes: { @@ -9793,14 +9793,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I made sure the data volume was mounted on an EBS volume because the higher tier EC2 instances are EBS-optimised and mandate EBS-only volumes. After that is done it is as simple as stopping the instance, changing the instance type in the ec2 console, and restarting the instance. One thing to note to to check the `neo4j-admin memrec` because if you go from 4 GB of RAM to 16, the heap size recommendations will change as well.', type: 'message', }, - id: '132900', + _id: '132900', }, { attributes: { id: '1539790804.000100--+1--U9VA4D3JB', labels: ['Reaction'], }, - id: '123202', + _id: '123202', }, { attributes: { @@ -9811,14 +9811,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Just I’ve not found the time to write it up yet.', type: 'message', }, - id: '132751', + _id: '132751', }, { attributes: { id: '1546535483.010300--+1--U0DDNCDR7', labels: ['Reaction'], }, - id: '123204', + _id: '123204', }, { attributes: { @@ -9828,14 +9828,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'that’s the 3rd or 4th time in the last 2 weeks I’ve run across this issue', type: 'message', }, - id: '132644', + _id: '132644', }, { attributes: { id: '1568641941.008800--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '123213', + _id: '123213', }, { attributes: { @@ -9845,14 +9845,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'please use 3 backticks around all your code examples/outputs to make them readable or "create snippet"', type: 'message', }, - id: '132505', + _id: '132505', }, { attributes: { id: '1583184404.038000--+1--U9VA4D3JB', labels: ['Reaction'], }, - id: '123215', + _id: '123215', }, { attributes: { @@ -9862,14 +9862,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "that's weird.", type: 'message', }, - id: '129658', + _id: '129658', }, { attributes: { id: '1495742861.627496--+1--U58LQEWKG', labels: ['Reaction'], }, - id: '123807', + _id: '123807', }, { attributes: { @@ -9879,14 +9879,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'you have to convert your original string into a list first', type: 'message', }, - id: '129639', + _id: '129639', }, { attributes: { id: '1495997003.004920--+1--U58LQEWKG', labels: ['Reaction'], }, - id: '123828', + _id: '123828', }, { attributes: { @@ -9896,14 +9896,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'use neo4j-import and use the \n```\n--legacy-style-quoting <true/false>\n\tWhether or not backslash-escaped quote e.g. \\" is interpreted as inner quote. \n```', type: 'message', }, - id: '128644', + _id: '128644', }, { attributes: { id: '1520597094.000047--+1--U92PVKTEW', labels: ['Reaction'], }, - id: '124511', + _id: '124511', }, { attributes: { @@ -9913,14 +9913,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'If the property is “display only†ie. not used as a filter in the traversal just storing data, then it you can marshall the json into a byte array and store it as such.', type: 'message', }, - id: '125049', + _id: '125049', }, { attributes: { id: '1485129225.000266--+1--U2PHPK215', labels: ['Reaction'], }, - id: '127935', + _id: '127935', }, { attributes: { @@ -9930,14 +9930,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'If I am not mistaken, the impact is only possible if they share node labels or relationship types with the previous data on your database.', type: 'message', }, - id: '124029', + _id: '124029', }, { attributes: { id: '1512762462.000547--+1--U5QEK6Z5G', labels: ['Reaction'], }, - id: '129578', + _id: '129578', }, { attributes: { @@ -9947,14 +9947,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Glad you found the way forward here. ID access is less expensive than property access, so this is a better approach than what you had before.\n\nLikewise when doing equality or inequality comparisons. If `govtrackID` is unique across all :Legislator nodes, then it will be more efficient to compare the nodes themselves than by a property, since under the hood it will be doing an ID() comparison:\n\n`WHERE l1 <> l2`', type: 'message', }, - id: '120636', + _id: '120636', }, { attributes: { id: '1531467464.000176--+1--UBQ15C78D', labels: ['Reaction'], }, - id: '136499', + _id: '136499', }, { attributes: { @@ -9964,14 +9964,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'be aware that passwords files are not synced over the cluster. Use rsync.', type: 'message', }, - id: '120225', + _id: '120225', }, { attributes: { id: '1533575148.000124--+1--UC2G3JA3B', labels: ['Reaction'], }, - id: '136716', + _id: '136716', }, { attributes: { @@ -9981,14 +9981,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "If you use `MERGE` for data loading it's wise to have the index before. If you data load consists only of `CREATE` you don't have to care about.", type: 'message', }, - id: '120097', + _id: '120097', }, { attributes: { id: '1533828052.000411--+1--U9373KH61', labels: ['Reaction'], }, - id: '136840', + _id: '136840', }, { attributes: { @@ -9998,21 +9998,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "yep. It feels like I've stiched a boat to an airplane with twine.", type: 'message', }, - id: '119381', + _id: '119381', }, { attributes: { id: '1556913802.027700--boat--UA7EKGW3Z', labels: ['Reaction'], }, - id: '137074', + _id: '137074', }, { attributes: { id: '1556913802.027700--airplane--UA7EKGW3Z', labels: ['Reaction'], }, - id: '137075', + _id: '137075', }, { attributes: { @@ -10022,14 +10022,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'ok thank you. I will do it now', type: 'message', }, - id: '111478', + _id: '111478', }, { attributes: { id: '1486037881.001401--+1--U08JCS1NY', labels: ['Reaction'], }, - id: '140750', + _id: '140750', }, { attributes: { @@ -10039,14 +10039,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Excuse for joining the question, but there is something I would like to understand better.\n\nIs this 100k relationship “limit†for a node regardless of the relationship’s type (outgoing, incoming) or name? Or is this per type and name?\n\nThanks!', type: 'message', }, - id: '108491', + _id: '108491', }, { attributes: { id: '1497357301.302577--+1--U5A60979Q', labels: ['Reaction'], }, - id: '142116', + _id: '142116', }, { attributes: { @@ -10056,14 +10056,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'patched with a chown with neo4j user/group. Thank you :slightly_smiling_face:', type: 'message', }, - id: '108298', + _id: '108298', }, { attributes: { id: '1497967044.219441--+1::skin-tone-4--U4YRHQA2Y', labels: ['Reaction'], }, - id: '142618', + _id: '142618', }, { attributes: { @@ -10073,14 +10073,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'There is no limitation, a node can has 0 to X labels. But why are you asking this question ? What do you want to do ?', type: 'message', }, - id: '105111', + _id: '105111', }, { attributes: { id: '1512652757.000314--thanks--U3E3G6QQM', labels: ['Reaction'], }, - id: '145162', + _id: '145162', }, { attributes: { @@ -10090,14 +10090,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'welcome!', type: 'message', }, - id: '103850', + _id: '103850', }, { attributes: { id: '1522515136.000078--wave::skin-tone-3--U9VCL9Z0C', labels: ['Reaction'], }, - id: '145422', + _id: '145422', }, { attributes: { @@ -10107,14 +10107,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "I've been to the last few, but this year I'm in Austin. I miss Chicago... why oh why did I ever move.", type: 'message', }, - id: '102796', + _id: '102796', }, { attributes: { id: '1531922970.000085--sob--UBSHKKP6X', labels: ['Reaction'], }, - id: '147401', + _id: '147401', }, { attributes: { @@ -10124,14 +10124,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Welcome :) Glad you started with Andela.', type: 'message', }, - id: '102748', + _id: '102748', }, { attributes: { id: '1532070717.000177--+1--UBTTUJ7EE', labels: ['Reaction'], }, - id: '147561', + _id: '147561', }, { attributes: { @@ -10141,14 +10141,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Welcome, you should check out the material from <@U08J4LA8H> he wrote and built a lot around this topic.', type: 'message', }, - id: '102540', + _id: '102540', }, { attributes: { id: '1533733168.000463--+1--UC1H9RENB', labels: ['Reaction'], }, - id: '148019', + _id: '148019', }, { attributes: { @@ -10158,21 +10158,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Yes that’s pretty cool! I’m actually recoding one of them projects in python', type: 'message', }, - id: '102544', + _id: '102544', }, { attributes: { id: '1533740604.000113--+1--UBJU9951P', labels: ['Reaction'], }, - id: '148020', + _id: '148020', }, { attributes: { id: '1533740604.000113--+1--UC22J8A3G', labels: ['Reaction'], }, - id: '148048', + _id: '148048', }, { attributes: { @@ -10182,21 +10182,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@U54EYRD3Q> <@U9GT6UY9J> I believe we met at our last meetup. Hope you can come to the next one were doing around our Cypher Philly Project <https://github.com/AddictiveSci/cypherphilly>', type: 'message', }, - id: '102546', + _id: '102546', }, { attributes: { id: '1533748557.000212--partyparrot--U54EYRD3Q', labels: ['Reaction'], }, - id: '148049', + _id: '148049', }, { attributes: { id: '1533748557.000212--partyparrot--U5RHBBZ5H', labels: ['Reaction'], }, - id: '148050', + _id: '148050', }, { attributes: { @@ -10206,14 +10206,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Welcome Camelia!', type: 'message', }, - id: '102514', + _id: '102514', }, { attributes: { id: '1534182384.000461--wave--UC78DKWUT', labels: ['Reaction'], }, - id: '148149', + _id: '148149', }, { attributes: { @@ -10224,14 +10224,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I have, some months ago.', type: 'message', }, - id: '102472', + _id: '102472', }, { attributes: { id: '1534344584.000100--tada--U08J18KHB', labels: ['Reaction'], }, - id: '148150', + _id: '148150', }, { attributes: { @@ -10241,14 +10241,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Welcome, Benny. Yes please check out <http://grandstack.io|grandstack.io> and the grand stack starter. We'd love to hear your feedback, and if you want to build a nicer React app around it, that would be cool. Feel free to ask backend questions in the appropriate channesl.", type: 'message', }, - id: '102435', + _id: '102435', }, { attributes: { id: '1534533168.000100--+1--UCAAXQ8VA', labels: ['Reaction'], }, - id: '148200', + _id: '148200', }, { attributes: { @@ -10258,14 +10258,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Welcome !!', type: 'message', }, - id: '102355', + _id: '102355', }, { attributes: { id: '1535114378.000100--+1--UCFT8EFHC', labels: ['Reaction'], }, - id: '148214', + _id: '148214', }, { attributes: { @@ -10275,21 +10275,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Ah cool! Hope it was helpful :)', type: 'message', }, - id: '101679', + _id: '101679', }, { attributes: { id: '1543955031.005600--100--UEJ0509M2', labels: ['Reaction'], }, - id: '149201', + _id: '149201', }, { attributes: { id: '1543955031.005600--+1--UEJ0509M2', labels: ['Reaction'], }, - id: '149202', + _id: '149202', }, { attributes: { @@ -10299,14 +10299,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Welcome Natasha, then you might be happy to hear that <@U9CCX8Q4V> is working on a new R driver in <http://github.com/neo4j-rstats|github.com/neo4j-rstats>, will be on CRAN soon', type: 'message', }, - id: '101671', + _id: '101671', }, { attributes: { id: '1544035053.011700--+1--U9CCX8Q4V', labels: ['Reaction'], }, - id: '149221', + _id: '149221', }, { attributes: { @@ -10316,14 +10316,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Hi Zachary, I'm in Canada too :slightly_smiling_face: Welcome", type: 'message', }, - id: '101663', + _id: '101663', }, { attributes: { id: '1544093887.013800--smile--UEMRHNK71', labels: ['Reaction'], }, - id: '149262', + _id: '149262', }, { attributes: { @@ -10333,14 +10333,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'check out the information here:\n<https://neo4j.com/blog/neo4j-life-sciences-healthcare-workshop-berlin/>\n<https://neo4j.com/developer/life-sciences-and-healthcare/>\n<https://neo4j.com/blog/navigating-heart-failure-map-with-neo4j/>', type: 'message', }, - id: '101153', + _id: '101153', }, { attributes: { id: '1552614587.050900--+1--UGU2413V5', labels: ['Reaction'], }, - id: '153428', + _id: '153428', }, { attributes: { @@ -10351,21 +10351,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I was thinking about a brain dump graph based on my Evernote notes and tags. That would enable me to better understand my knowledge about any given topic.', type: 'message', }, - id: '100585', + _id: '100585', }, { attributes: { id: '1562092719.052600--+1--UKU82SFFY', labels: ['Reaction'], }, - id: '154409', + _id: '154409', }, { attributes: { id: '1562092719.052600--+1--UKP7BBEF4', labels: ['Reaction'], }, - id: '154576', + _id: '154576', }, { attributes: { @@ -10375,14 +10375,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Hi <@UKP7BBEF4>\nI would say some thing for “spatial data†would be more interesting to explore with.', type: 'message', }, - id: '100570', + _id: '100570', }, { attributes: { id: '1562154574.054200--+1--UKP7BBEF4', labels: ['Reaction'], }, - id: '154594', + _id: '154594', }, { attributes: { @@ -10392,14 +10392,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Hi Christian! Welcome! Man, are you in for a treat. Neo4j has a little bit of a learning curve but once you really understand, it is world changing. You are really going to love it!\n\nI am very curious about what you mean by "multi-tenant by labels." Could you please explain this in more detail?', type: 'message', }, - id: '100419', + _id: '100419', }, { attributes: { id: '1564162554.011700--+1--UL65F4NTB', labels: ['Reaction'], }, - id: '158950', + _id: '158950', }, { attributes: { @@ -10409,14 +10409,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Welcome Rashid..:handshake: Maybe, there's a lot of learning :writing_hand: to go round, in the near future between us..:grinning: Thanks for stopping by. :+1:", type: 'message', }, - id: '100411', + _id: '100411', }, { attributes: { id: '1564375282.020900--+1--U1P8X9E5A', labels: ['Reaction'], }, - id: '158952', + _id: '158952', }, { attributes: { @@ -10426,14 +10426,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Welcome, Cristian!', type: 'message', }, - id: '100258', + _id: '100258', }, { attributes: { id: '1566795141.063900--blush--ULXJ147V5', labels: ['Reaction'], }, - id: '160652', + _id: '160652', }, { attributes: { @@ -10443,14 +10443,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'see <https://neo4j.com/?s=dosb>', type: 'message', }, - id: '100157', + _id: '100157', }, { attributes: { id: '1567602239.026900--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '161397', + _id: '161397', }, { attributes: { @@ -10460,14 +10460,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks <@UKTCT84M8>', type: 'message', }, - id: '100092', + _id: '100092', }, { attributes: { id: '1568514302.011800--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '162368', + _id: '162368', }, { attributes: { @@ -10477,14 +10477,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Welcome <@UNEFQHLGP> \n', type: 'message', }, - id: '100074', + _id: '100074', }, { attributes: { id: '1568548999.018000--wave--UNEFQHLGP', labels: ['Reaction'], }, - id: '162369', + _id: '162369', }, { attributes: { @@ -10494,14 +10494,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@UNEFQHLGP>, if you want to learn more and have deeper understanding on our graph platform, please head out to <https://neo4j.com/graphacademy/online-training/>', type: 'message', }, - id: '100046', + _id: '100046', }, { attributes: { id: '1568626090.019800--+1--UM1H759EU', labels: ['Reaction'], }, - id: '162370', + _id: '162370', }, { attributes: { @@ -10511,14 +10511,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@UKTCT84M8> Thank you!', type: 'message', }, - id: '100039', + _id: '100039', }, { attributes: { id: '1568763717.027800--+1--UKTCT84M8', labels: ['Reaction'], }, - id: '162564', + _id: '162564', }, { attributes: { @@ -10528,14 +10528,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Hi <@UPL8KN2MN>! Welcome! Your app looks really cool!', type: 'message', }, - id: '99830', + _id: '99830', }, { attributes: { id: '1571656027.060300--hugging_face--UPL8KN2MN', labels: ['Reaction'], }, - id: '163651', + _id: '163651', }, { attributes: { @@ -10545,14 +10545,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Looks cool!', type: 'message', }, - id: '99826', + _id: '99826', }, { attributes: { id: '1571801707.063300--pray--UPL8KN2MN', labels: ['Reaction'], }, - id: '163652', + _id: '163652', }, { attributes: { @@ -10562,21 +10562,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Check this page; <https://prepr.io/developer-friendly> :slightly_smiling_face:', type: 'message', }, - id: '99711', + _id: '99711', }, { attributes: { id: '1573643781.020900--open_mouth--U54EYRD3Q', labels: ['Reaction'], }, - id: '163981', + _id: '163981', }, { attributes: { id: '1573643781.020900--awesome--U54EYRD3Q', labels: ['Reaction'], }, - id: '163982', + _id: '163982', }, { attributes: { @@ -10586,14 +10586,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Welcome Mark, glad you're having success, let us know if you need more engagement e.g. with a field engineer.", type: 'message', }, - id: '99668', + _id: '99668', }, { attributes: { id: '1574456590.045600--+1--UQS0T7Y4C', labels: ['Reaction'], }, - id: '164259', + _id: '164259', }, { attributes: { @@ -10603,14 +10603,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Välkommen. That's great! We also have some folks in Stockholm in case you want to come say hi some time.", type: 'message', }, - id: '99628', + _id: '99628', }, { attributes: { id: '1574844459.057100--slightly_smiling_face--UQU2HABHC', labels: ['Reaction'], }, - id: '164407', + _id: '164407', }, { attributes: { @@ -10620,14 +10620,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Bachelor degree thesis . I started before a month being familiar with that technologies so for now I try to learn as much as I can about graphdb and cypher . I will decide the exact title/topic of my thesis in the next month .', type: 'message', }, - id: '99530', + _id: '99530', }, { attributes: { id: '1576078092.104800--+1--UN392PZ2M', labels: ['Reaction'], }, - id: '164588', + _id: '164588', }, { attributes: { @@ -10637,14 +10637,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'thanks folks!', type: 'message', }, - id: '99457', + _id: '99457', }, { attributes: { id: '1578023491.016500--+1--UQ6URETV2', labels: ['Reaction'], }, - id: '164618', + _id: '164618', }, { attributes: { @@ -10654,14 +10654,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@U08J9497E> <@U08KA9KMH> <@U08J5DPMG> ^^^ probably interesting for you', type: 'message', }, - id: '99411', + _id: '99411', }, { attributes: { id: '1578654358.006400--muscle--U08J5DPMG', labels: ['Reaction'], }, - id: '165002', + _id: '165002', }, { attributes: { @@ -10671,14 +10671,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Welcome <@UTA4JA5CK>', type: 'message', }, - id: '99154', + _id: '99154', }, { attributes: { id: '1581063183.047700--+1--UTA4JA5CK', labels: ['Reaction'], }, - id: '171855', + _id: '171855', }, { attributes: { @@ -10688,21 +10688,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "welcome! we have a bunch of projects where we use slack data within neo4j (for knowledge base) in case you're interested :) /cc <@U09GPF05R>", type: 'message', }, - id: '99005', + _id: '99005', }, { attributes: { id: '1583184340.019000--+1--UQ6URETV2', labels: ['Reaction'], }, - id: '173891', + _id: '173891', }, { attributes: { id: '1583184340.019000--wave--UU9RCC3R9', labels: ['Reaction'], }, - id: '174102', + _id: '174102', }, { attributes: { @@ -10712,21 +10712,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Hey Mark, welcome! We've been looking at how we can use our Slack message to consolidate our knowledge into a single place. It would be great to see what you've done so far!", type: 'message', }, - id: '99007', + _id: '99007', }, { attributes: { id: '1583185054.019400--+1--UQ6URETV2', labels: ['Reaction'], }, - id: '174193', + _id: '174193', }, { attributes: { id: '1583185054.019400--wave--UU9RCC3R9', labels: ['Reaction'], }, - id: '174194', + _id: '174194', }, { attributes: { @@ -10736,14 +10736,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Cypher as a job posting - love this.', type: 'message', }, - id: '98429', + _id: '98429', }, { attributes: { id: '1524588368.000684--blush--U9DNNB0AX', labels: ['Reaction'], }, - id: '178770', + _id: '178770', }, { attributes: { @@ -10753,14 +10753,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Alors autour d'une bière un soir de semaine !", type: 'message', }, - id: '97759', + _id: '97759', }, { attributes: { id: '1518788937.000131--+1--U08JCSXNE', labels: ['Reaction'], }, - id: '180920', + _id: '180920', }, { attributes: { @@ -10770,14 +10770,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'You may not need to. apoc.algo.cover() should return the relationships as rows, so we can work with that directly. Something like...\n\n```...\nCALL apoc.algo.cover(ids) YIELD rel\nRETURN startNode(rel), endNode(rel), rel```', type: 'message', }, - id: '95610', + _id: '95610', }, { attributes: { id: '1486560831.000368--+1--U2GTL65PD', labels: ['Reaction'], }, - id: '184781', + _id: '184781', }, { attributes: { @@ -10787,14 +10787,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'It is already calculated and saved in the relationship as a property', type: 'message', }, - id: '92594', + _id: '92594', }, { attributes: { id: '1501525676.764903--grinning--U6FP2RLM8', labels: ['Reaction'], }, - id: '186905', + _id: '186905', }, { attributes: { @@ -10804,14 +10804,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'MATCH (m:user)\nWITH m,m.unixtime as time\nORDER BY time asc\nWITH collect(m) AS times\nFOREACH(i in RANGE(0, length(times)-2) |\n FOREACH(time1 in [times[i]] |\n FOREACH(time2 in [times[i+1]] |\nMERGE (time1)-[:NEXT_MARKET_SIDE{delay:time2.unixtime - time1.unixtime}]->(time2))))', type: 'message', }, - id: '92599', + _id: '92599', }, { attributes: { id: '1501526155.034197--grinning--U6FP2RLM8', labels: ['Reaction'], }, - id: '186906', + _id: '186906', }, { attributes: { @@ -10821,14 +10821,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'thanks…i got the result :thank-you-bow:', type: 'message', }, - id: '91573', + _id: '91573', }, { attributes: { id: '1513298822.000232--tada--U3RJEUY2Z', labels: ['Reaction'], }, - id: '187754', + _id: '187754', }, { attributes: { @@ -10838,14 +10838,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Maybe configurable percentile? or 99, 97, 95?', type: 'message', }, - id: '91495', + _id: '91495', }, { attributes: { id: '1513589115.000132--+1--U0DDNCDR7', labels: ['Reaction'], }, - id: '187758', + _id: '187758', }, { attributes: { @@ -10855,14 +10855,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "You can try using 'triggers' with TransactionEventHandler, see <https://maxdemarzi.com/2015/03/25/triggers-in-neo4j/>\nIn short you create a JAR file with the 'trigger' and put it to plugins directory in neo4j", type: 'message', }, - id: '91432', + _id: '91432', }, { attributes: { id: '1513861815.000145--+1--U0DNS24SZ', labels: ['Reaction'], }, - id: '187760', + _id: '187760', }, { attributes: { @@ -10872,14 +10872,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'oh nice <@U2R5Q5W9Z> would you be interested in writing your work up in an article?', type: 'message', }, - id: '90506', + _id: '90506', }, { attributes: { id: '1526495543.000342--+1--U08K01M7V', labels: ['Reaction'], }, - id: '188038', + _id: '188038', }, { attributes: { @@ -10889,14 +10889,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '```with apoc.convert.getJsonPropertyMap(n, "Address") as Address\nreturn Address.state```', type: 'message', }, - id: '90127', + _id: '90127', }, { attributes: { id: '1533749036.000486--heart--U9Y5GAHUY', labels: ['Reaction'], }, - id: '188249', + _id: '188249', }, { attributes: { @@ -10906,14 +10906,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'You can use the function `apoc.convert.toJson()` to change a list/map structure into a JSON string', type: 'message', }, - id: '89545', + _id: '89545', }, { attributes: { id: '1570814240.003400--+1--U08J18KHB', labels: ['Reaction'], }, - id: '189218', + _id: '189218', }, { attributes: { @@ -10923,14 +10923,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'nm, I will use `sudo systemctl status neo4j`', type: 'message', }, - id: '89352', + _id: '89352', }, { attributes: { id: '1528761606.000618--+1--U7X490V7X', labels: ['Reaction'], }, - id: '189251', + _id: '189251', }, { attributes: { @@ -10940,14 +10940,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Thanks, <@U7X490V7X>. I appreciate your patience and willingness to help. I'll take a look at the current settings in the config and send you and subsequent questions to you over email.", type: 'message', }, - id: '89328', + _id: '89328', }, { attributes: { id: '1528920458.000806--+1--U7X490V7X', labels: ['Reaction'], }, - id: '189252', + _id: '189252', }, { attributes: { @@ -10957,14 +10957,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Thanks for posting this, but “The legacy HA cluster mode has been deprecated as of Neo4j version 3.5, and will be totally removed from the product in version 4.0, with 4.0 expected to be released near the end of 2019.â€\n\nSee <https://neo4j.com/developer/kb/comparing-ha-vs-causal-clusters/>', type: 'message', }, - id: '89036', + _id: '89036', }, { attributes: { id: '1572630200.008600--+1--UPREE4BQR', labels: ['Reaction'], }, - id: '189740', + _id: '189740', }, { attributes: { @@ -10974,14 +10974,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Okay thanks for the response :slightly_smiling_face: For now we will continue with what we have, it works for now, but total isolation of data would be the best. I will keep an eye on new releases of neo4j.', type: 'message', }, - id: '88956', + _id: '88956', }, { attributes: { id: '1582651784.004800--+1--UQ6URETV2', labels: ['Reaction'], }, - id: '190348', + _id: '190348', }, { attributes: { @@ -10991,14 +10991,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'A full DAO neo4j+ethereum for blockchains startups (we are an accelerator 100% blockchain) + a global tool : token economy model -> build ERC20 -> deploy -> publishing -> pre ico/privates sales. Neo4j is top for a compliance off-chain/on-chain we plan to add IBO features and Neo4j can help us for a great estimation of the real value of a token', type: 'message', }, - id: '88907', + _id: '88907', }, { attributes: { id: '1521492760.000132--sweat_smile--U0UUPCP89', labels: ['Reaction'], }, - id: '190426', + _id: '190426', }, { attributes: { @@ -11008,14 +11008,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'martin.furmanski: will do this weekend', type: 'message', }, - id: '86929', + _id: '86929', }, { attributes: { id: '1492648935.612126--+1--U154U8U4C', labels: ['Reaction'], }, - id: '191741', + _id: '191741', }, { attributes: { @@ -11025,14 +11025,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: '<@U0E7MMYAW> Thanks a lot ..', type: 'message', }, - id: '85438', + _id: '85438', }, { attributes: { id: '1519106677.000083--+1--U0E7MMYAW', labels: ['Reaction'], }, - id: '194094', + _id: '194094', }, { attributes: { @@ -11042,14 +11042,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'The real question now is : why 3 hours? :smile: ', type: 'message', }, - id: '83349', + _id: '83349', }, { attributes: { id: '1525079081.000414--flushed--U08JDKRB6', labels: ['Reaction'], }, - id: '195639', + _id: '195639', }, { attributes: { @@ -11059,14 +11059,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'I believe your database should not be running. There is a thread on StackOverflow that deals with this but regarding the “backup†command.\n\nThe solution should be similar.', type: 'message', }, - id: '80825', + _id: '80825', }, { attributes: { id: '1514401300.000104--+1--U85NW5CCV', labels: ['Reaction'], }, - id: '202035', + _id: '202035', }, { attributes: { @@ -11076,14 +11076,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "```\nCALL apoc.peridodic.iterate('MATCH (n) RETURN n', 'SET n.dummyProperty = timestamp()', {batchSize: 1000, iterateList:true})\n```\n\nwill be very fast", type: 'message', }, - id: '77493', + _id: '77493', }, { attributes: { id: '1528772995.000143--+1--UAZNLPFHT', labels: ['Reaction'], }, - id: '206563', + _id: '206563', }, { attributes: { @@ -11093,14 +11093,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Glad that you found a work around. We’ll remove the underlying seabolt structs in upcoming pre-releases so be prepared for an error when that happens :wink:', type: 'message', }, - id: '76619', + _id: '76619', }, { attributes: { id: '1532104235.000041--+1::skin-tone-2--UBMCTGCKG', labels: ['Reaction'], }, - id: '208306', + _id: '208306', }, { attributes: { @@ -11110,14 +11110,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Hi Mona, let me ask the authors', type: 'message', }, - id: '74771', + _id: '74771', }, { attributes: { id: '1556235266.000300--pray--UGA7G3VAR', labels: ['Reaction'], }, - id: '211279', + _id: '211279', }, { attributes: { @@ -11127,14 +11127,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'You can do both, you can modify data with the generated mutations or with cypher behind the scenes', type: 'message', }, - id: '73237', + _id: '73237', }, { attributes: { id: '1515152213.000124--+1--U3SEFGCKH', labels: ['Reaction'], }, - id: '212876', + _id: '212876', }, { attributes: { @@ -11145,14 +11145,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Cool - I've added this in v0.1.25. With an example here: <https://github.com/neo4j-graphql/neo4j-graphql-js/blob/master/example/apollo-server/movies-middleware.js>\n\nSince middleware is server specific it does use Express, but I think we should be able to still keep the handling in neo4j-graphql-js generic enough that it will work independent of server choice.", type: 'message', }, - id: '72622', + _id: '72622', }, { attributes: { id: '1531947779.000267--tada--UAW8MEQJC', labels: ['Reaction'], }, - id: '214266', + _id: '214266', }, { attributes: { @@ -11162,21 +11162,21 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "that's the goal - but it's not implemented yet", type: 'message', }, - id: '72597', + _id: '72597', }, { attributes: { id: '1533229514.000492--rocket--UA8THBURF', labels: ['Reaction'], }, - id: '214267', + _id: '214267', }, { attributes: { id: '1533229514.000492--rocket--UAW8MEQJC', labels: ['Reaction'], }, - id: '214505', + _id: '214505', }, { attributes: { @@ -11186,14 +11186,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "right. The logic is that if you've added a mutation to the schema then we assume you want some custom logic other than the default that would be autogenerated. So we don't override the mutation you've defined and skip autogenerating it. Although I think we just check that there is a typedef for it, not if a resolver exists for it...", type: 'message', }, - id: '72510', + _id: '72510', }, { attributes: { id: '1534339516.000100--+1--UAW8MEQJC', labels: ['Reaction'], }, - id: '214922', + _id: '214922', }, { attributes: { @@ -11203,14 +11203,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Waow! Works well! So cool! :slightly_smiling_face:', type: 'message', }, - id: '72514', + _id: '72514', }, { attributes: { id: '1534351635.000100--tada--UAW8MEQJC', labels: ['Reaction'], }, - id: '214923', + _id: '214923', }, { attributes: { @@ -11220,28 +11220,28 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'we also plan to add (optional) uuid generation as part of the create mutation', type: 'message', }, - id: '72528', + _id: '72528', }, { attributes: { id: '1534356988.000100--partyparrot--UA8THBURF', labels: ['Reaction'], }, - id: '215060', + _id: '215060', }, { attributes: { id: '1534356988.000100--partyparrot--UC0TDMF5F', labels: ['Reaction'], }, - id: '215061', + _id: '215061', }, { attributes: { id: '1534356988.000100--partyparrot--UAW8MEQJC', labels: ['Reaction'], }, - id: '215180', + _id: '215180', }, { attributes: { @@ -11251,35 +11251,35 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "Hey <@UCE0R4D3Q> - I'm glad to hear that approach sounds good to you :slightly_smiling_face: We have not started implementation of it yet. We've started speccing it out in a doc - I'll add to an issue on the repo and would be great if you could give us feedback on the design", type: 'message', }, - id: '72463', + _id: '72463', }, { attributes: { id: '1534979998.000100--+1--UCE0R4D3Q', labels: ['Reaction'], }, - id: '215458', + _id: '215458', }, { attributes: { id: '1534979998.000100--+1--UA8THBURF', labels: ['Reaction'], }, - id: '215459', + _id: '215459', }, { attributes: { id: '1534979998.000100--+1--UC0TDMF5F', labels: ['Reaction'], }, - id: '215546', + _id: '215546', }, { attributes: { id: '1534979998.000100--+1--U2AUZQKDW', labels: ['Reaction'], }, - id: '215547', + _id: '215547', }, { attributes: { @@ -11290,14 +11290,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'neo4j-graphql-js can also generate queries/mutations from just SDL typedefintions. See `makeAugmentedSchema`:\n\n<https://grandstack.io/docs/neo4j-graphql-js-api.html#makeaugmentedschemaoptions-graphqlschema>\n\n<https://grandstack.io/docs/neo4j-graphql-js.html#schema-augmentation>', type: 'message', }, - id: '72419', + _id: '72419', }, { attributes: { id: '1537015819.000100--partyparrot--UA8THBURF', labels: ['Reaction'], }, - id: '215768', + _id: '215768', }, { attributes: { @@ -11307,14 +11307,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Oh hey there, I think this relates to <https://github.com/neo4j-graphql/neo4j-graphql-js/issues/98>', type: 'message', }, - id: '72407', + _id: '72407', }, { attributes: { id: '1537209020.000100--+1--UCU34545Q', labels: ['Reaction'], }, - id: '215924', + _id: '215924', }, { attributes: { @@ -11324,14 +11324,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: "correct. The `filter` parameter functionality is not yet implemented in neo4j-graphql-js. We hadn't prioritized it as we haven't had many users asking for it. But if that would be useful we can prioritize it. I've added an issue for tracking here: <https://github.com/neo4j-graphql/neo4j-graphql-js/issues/105>", type: 'message', }, - id: '72413', + _id: '72413', }, { attributes: { id: '1537234028.000100--+1--UCU34545Q', labels: ['Reaction'], }, - id: '216033', + _id: '216033', }, { attributes: { @@ -11341,14 +11341,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'better in <http://community.neo4j.com|community.neo4j.com> in the graphql category and drop me the link', type: 'message', }, - id: '71962', + _id: '71962', }, { attributes: { id: '1555503339.020100--+1--UHSNQ0SS1', labels: ['Reaction'], }, - id: '216724', + _id: '216724', }, { attributes: { @@ -11358,14 +11358,14 @@ export const slackReactionToThreadedMessageQueryResultPayload: GraphQueryResultF text: 'Hi Ben - this is not yet covered by the autogenerated mutations, but it on the road map. In the mean time you can implement this logic through the use of `@cypher` schema directives. Here’s an example: <https://github.com/neo4j-graphql/neo4j-graphql-js/issues/83#issuecomment-438499182>', type: 'message', }, - id: '71835', + _id: '71835', }, { attributes: { id: '1559924598.018600--+1--UKEQY3MBL', labels: ['Reaction'], }, - id: '216955', + _id: '216955', }, ], }, @@ -11383,7 +11383,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '28796', - id: '579413', + _id: '579413', to: '28795', }, { @@ -11391,7 +11391,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '28797', - id: '579417', + _id: '579417', to: '28795', }, { @@ -11399,7 +11399,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '28798', - id: '579424', + _id: '579424', to: '28795', }, { @@ -11407,7 +11407,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '28799', - id: '579425', + _id: '579425', to: '28795', }, { @@ -11415,7 +11415,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '28800', - id: '579426', + _id: '579426', to: '28795', }, { @@ -11423,7 +11423,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '32835', - id: '578988', + _id: '578988', to: '32924', }, { @@ -11431,7 +11431,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '32839', - id: '578990', + _id: '578990', to: '32924', }, { @@ -11439,7 +11439,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '32925', - id: '578937', + _id: '578937', to: '32924', }, { @@ -11447,7 +11447,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '32926', - id: '578938', + _id: '578938', to: '32924', }, { @@ -11455,7 +11455,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '33420', - id: '578831', + _id: '578831', to: '33422', }, { @@ -11463,7 +11463,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '33985', - id: '578524', + _id: '578524', to: '33979', }, { @@ -11471,7 +11471,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '34018', - id: '578520', + _id: '578520', to: '34021', }, { @@ -11479,7 +11479,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '34019', - id: '578521', + _id: '578521', to: '34021', }, { @@ -11487,7 +11487,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '35946', - id: '577103', + _id: '577103', to: '35973', }, { @@ -11495,7 +11495,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '35971', - id: '577100', + _id: '577100', to: '35970', }, { @@ -11503,7 +11503,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '36252', - id: '576097', + _id: '576097', to: '36261', }, { @@ -11511,7 +11511,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '51682', - id: '573632', + _id: '573632', to: '51703', }, { @@ -11519,7 +11519,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '51689', - id: '573636', + _id: '573636', to: '51703', }, { @@ -11527,7 +11527,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '62712', - id: '570848', + _id: '570848', to: '62720', }, { @@ -11535,7 +11535,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '66348', - id: '568485', + _id: '568485', to: '66357', }, { @@ -11543,7 +11543,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '66821', - id: '568040', + _id: '568040', to: '66824', }, { @@ -11551,7 +11551,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '66822', - id: '568041', + _id: '568041', to: '66824', }, { @@ -11559,7 +11559,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '66823', - id: '568042', + _id: '568042', to: '66824', }, { @@ -11567,7 +11567,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '66836', - id: '568038', + _id: '568038', to: '66832', }, { @@ -11575,7 +11575,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71021', - id: '566361', + _id: '566361', to: '71045', }, { @@ -11583,7 +11583,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71222', - id: '565510', + _id: '565510', to: '71253', }, { @@ -11591,7 +11591,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71229', - id: '565565', + _id: '565565', to: '71253', }, { @@ -11599,7 +11599,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71254', - id: '565509', + _id: '565509', to: '71253', }, { @@ -11607,7 +11607,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71524', - id: '565078', + _id: '565078', to: '71591', }, { @@ -11615,7 +11615,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71610', - id: '564829', + _id: '564829', to: '71658', }, { @@ -11623,7 +11623,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71659', - id: '564668', + _id: '564668', to: '71658', }, { @@ -11631,7 +11631,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71685', - id: '563652', + _id: '563652', to: '71683', }, { @@ -11639,7 +11639,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71828', - id: '563571', + _id: '563571', to: '71832', }, { @@ -11647,7 +11647,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71829', - id: '563618', + _id: '563618', to: '71832', }, { @@ -11655,7 +11655,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71833', - id: '563549', + _id: '563549', to: '71832', }, { @@ -11663,7 +11663,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71834', - id: '563550', + _id: '563550', to: '71832', }, { @@ -11671,7 +11671,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '71835', - id: '563570', + _id: '563570', to: '71832', }, { @@ -11679,7 +11679,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '72124', - id: '562958', + _id: '562958', to: '72128', }, { @@ -11687,7 +11687,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '72308', - id: '562942', + _id: '562942', to: '72307', }, { @@ -11695,7 +11695,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '72309', - id: '562943', + _id: '562943', to: '72307', }, { @@ -11703,7 +11703,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '72536', - id: '562424', + _id: '562424', to: '72547', }, { @@ -11711,7 +11711,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '72541', - id: '562430', + _id: '562430', to: '72547', }, { @@ -11719,7 +11719,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '78920', - id: '557525', + _id: '557525', to: '78923', }, { @@ -11727,7 +11727,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '78921', - id: '557541', + _id: '557541', to: '78923', }, { @@ -11735,7 +11735,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '78922', - id: '557542', + _id: '557542', to: '78923', }, { @@ -11743,7 +11743,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '78924', - id: '557524', + _id: '557524', to: '78923', }, { @@ -11751,7 +11751,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '79127', - id: '557523', + _id: '557523', to: '79141', }, { @@ -11759,7 +11759,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '79142', - id: '557522', + _id: '557522', to: '79141', }, { @@ -11767,7 +11767,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '83346', - id: '556736', + _id: '556736', to: '83383', }, { @@ -11775,7 +11775,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '83373', - id: '556732', + _id: '556732', to: '83383', }, { @@ -11783,7 +11783,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '83374', - id: '556733', + _id: '556733', to: '83383', }, { @@ -11791,7 +11791,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '83398', - id: '556726', + _id: '556726', to: '83396', }, { @@ -11799,7 +11799,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '83399', - id: '556728', + _id: '556728', to: '83396', }, { @@ -11807,7 +11807,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '83439', - id: '556656', + _id: '556656', to: '83449', }, { @@ -11815,7 +11815,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '84319', - id: '554415', + _id: '554415', to: '84321', }, { @@ -11823,7 +11823,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '85351', - id: '553693', + _id: '553693', to: '85390', }, { @@ -11831,7 +11831,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '85352', - id: '553747', + _id: '553747', to: '85390', }, { @@ -11839,7 +11839,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '85353', - id: '553817', + _id: '553817', to: '85390', }, { @@ -11847,7 +11847,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '85368', - id: '553690', + _id: '553690', to: '85380', }, { @@ -11855,7 +11855,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '85369', - id: '553691', + _id: '553691', to: '85380', }, { @@ -11863,7 +11863,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '85378', - id: '553689', + _id: '553689', to: '85390', }, { @@ -11871,7 +11871,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '85391', - id: '553688', + _id: '553688', to: '85390', }, { @@ -11879,7 +11879,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '85799', - id: '553278', + _id: '553278', to: '85860', }, { @@ -11887,7 +11887,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87177', - id: '553076', + _id: '553076', to: '87176', }, { @@ -11895,7 +11895,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87178', - id: '553084', + _id: '553084', to: '87176', }, { @@ -11903,7 +11903,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87179', - id: '553088', + _id: '553088', to: '87176', }, { @@ -11911,7 +11911,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87180', - id: '553089', + _id: '553089', to: '87176', }, { @@ -11919,7 +11919,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87181', - id: '553090', + _id: '553090', to: '87176', }, { @@ -11927,7 +11927,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87182', - id: '553091', + _id: '553091', to: '87176', }, { @@ -11935,7 +11935,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87183', - id: '553092', + _id: '553092', to: '87176', }, { @@ -11943,7 +11943,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87184', - id: '553093', + _id: '553093', to: '87176', }, { @@ -11951,7 +11951,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87185', - id: '553094', + _id: '553094', to: '87176', }, { @@ -11959,7 +11959,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87186', - id: '553095', + _id: '553095', to: '87176', }, { @@ -11967,7 +11967,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '87187', - id: '553098', + _id: '553098', to: '87176', }, { @@ -11975,7 +11975,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '88676', - id: '551944', + _id: '551944', to: '88682', }, { @@ -11983,7 +11983,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '88679', - id: '551930', + _id: '551930', to: '88682', }, { @@ -11991,7 +11991,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '89150', - id: '550504', + _id: '550504', to: '89151', }, { @@ -11999,7 +11999,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '89358', - id: '550026', + _id: '550026', to: '89360', }, { @@ -12007,7 +12007,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '89361', - id: '550024', + _id: '550024', to: '89360', }, { @@ -12015,7 +12015,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '89362', - id: '550025', + _id: '550025', to: '89360', }, { @@ -12023,7 +12023,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '90845', - id: '549008', + _id: '549008', to: '90837', }, { @@ -12031,7 +12031,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '90846', - id: '549009', + _id: '549009', to: '90837', }, { @@ -12039,7 +12039,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '97759', - id: '546075', + _id: '546075', to: '97764', }, { @@ -12047,7 +12047,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '97761', - id: '546072', + _id: '546072', to: '97764', }, { @@ -12055,7 +12055,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '97762', - id: '546073', + _id: '546073', to: '97764', }, { @@ -12063,7 +12063,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '97763', - id: '546071', + _id: '546071', to: '97764', }, { @@ -12071,7 +12071,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '98291', - id: '546062', + _id: '546062', to: '98294', }, { @@ -12079,7 +12079,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '98292', - id: '546054', + _id: '546054', to: '98294', }, { @@ -12087,7 +12087,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '98295', - id: '546052', + _id: '546052', to: '98294', }, { @@ -12095,7 +12095,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '98296', - id: '546053', + _id: '546053', to: '98294', }, { @@ -12103,7 +12103,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99131', - id: '545610', + _id: '545610', to: '99304', }, { @@ -12111,7 +12111,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99150', - id: '545581', + _id: '545581', to: '99162', }, { @@ -12119,7 +12119,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99154', - id: '545580', + _id: '545580', to: '99162', }, { @@ -12127,7 +12127,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99165', - id: '545571', + _id: '545571', to: '99162', }, { @@ -12135,7 +12135,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99167', - id: '545578', + _id: '545578', to: '99162', }, { @@ -12143,7 +12143,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99543', - id: '545165', + _id: '545165', to: '99555', }, { @@ -12151,7 +12151,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99548', - id: '545169', + _id: '545169', to: '99555', }, { @@ -12159,7 +12159,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99609', - id: '545162', + _id: '545162', to: '99623', }, { @@ -12167,7 +12167,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99691', - id: '545118', + _id: '545118', to: '99690', }, { @@ -12175,7 +12175,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99825', - id: '544890', + _id: '544890', to: '99864', }, { @@ -12183,7 +12183,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99839', - id: '544886', + _id: '544886', to: '99864', }, { @@ -12191,7 +12191,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '99840', - id: '544887', + _id: '544887', to: '99864', }, { @@ -12199,7 +12199,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100039', - id: '544871', + _id: '544871', to: '100196', }, { @@ -12207,7 +12207,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100048', - id: '544851', + _id: '544851', to: '100241', }, { @@ -12215,7 +12215,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100055', - id: '544859', + _id: '544859', to: '100196', }, { @@ -12223,7 +12223,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100056', - id: '544860', + _id: '544860', to: '100177', }, { @@ -12231,7 +12231,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100058', - id: '544862', + _id: '544862', to: '100145', }, { @@ -12239,7 +12239,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100126', - id: '544842', + _id: '544842', to: '100196', }, { @@ -12247,7 +12247,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100128', - id: '544843', + _id: '544843', to: '100196', }, { @@ -12255,7 +12255,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100129', - id: '544844', + _id: '544844', to: '100196', }, { @@ -12263,7 +12263,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100156', - id: '544840', + _id: '544840', to: '100177', }, { @@ -12271,7 +12271,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100157', - id: '544841', + _id: '544841', to: '100177', }, { @@ -12279,7 +12279,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100171', - id: '544839', + _id: '544839', to: '100196', }, { @@ -12287,7 +12287,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100199', - id: '544837', + _id: '544837', to: '100196', }, { @@ -12295,7 +12295,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100200', - id: '544838', + _id: '544838', to: '100196', }, { @@ -12303,7 +12303,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100258', - id: '544827', + _id: '544827', to: '100342', }, { @@ -12311,7 +12311,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100261', - id: '544830', + _id: '544830', to: '100375', }, { @@ -12319,7 +12319,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100371', - id: '544823', + _id: '544823', to: '100415', }, { @@ -12327,7 +12327,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100385', - id: '544822', + _id: '544822', to: '100415', }, { @@ -12335,7 +12335,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100419', - id: '544803', + _id: '544803', to: '100415', }, { @@ -12343,7 +12343,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100420', - id: '544804', + _id: '544804', to: '100415', }, { @@ -12351,7 +12351,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100421', - id: '544805', + _id: '544805', to: '100415', }, { @@ -12359,7 +12359,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100422', - id: '544806', + _id: '544806', to: '100415', }, { @@ -12367,7 +12367,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100423', - id: '544807', + _id: '544807', to: '100415', }, { @@ -12375,7 +12375,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100424', - id: '544808', + _id: '544808', to: '100415', }, { @@ -12383,7 +12383,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100425', - id: '544809', + _id: '544809', to: '100415', }, { @@ -12391,7 +12391,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100426', - id: '544810', + _id: '544810', to: '100415', }, { @@ -12399,7 +12399,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100427', - id: '544811', + _id: '544811', to: '100415', }, { @@ -12407,7 +12407,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100428', - id: '544812', + _id: '544812', to: '100415', }, { @@ -12415,7 +12415,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100429', - id: '544814', + _id: '544814', to: '100415', }, { @@ -12423,7 +12423,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100533', - id: '544801', + _id: '544801', to: '100579', }, { @@ -12431,7 +12431,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100542', - id: '544800', + _id: '544800', to: '100579', }, { @@ -12439,7 +12439,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100632', - id: '544770', + _id: '544770', to: '100646', }, { @@ -12447,7 +12447,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100634', - id: '544792', + _id: '544792', to: '100646', }, { @@ -12455,7 +12455,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100635', - id: '544793', + _id: '544793', to: '100646', }, { @@ -12463,7 +12463,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100636', - id: '544794', + _id: '544794', to: '100646', }, { @@ -12471,7 +12471,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100824', - id: '544755', + _id: '544755', to: '100816', }, { @@ -12479,7 +12479,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100825', - id: '544756', + _id: '544756', to: '100816', }, { @@ -12487,7 +12487,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '100826', - id: '544757', + _id: '544757', to: '100816', }, { @@ -12495,7 +12495,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101013', - id: '544453', + _id: '544453', to: '101021', }, { @@ -12503,7 +12503,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101097', - id: '544445', + _id: '544445', to: '101114', }, { @@ -12511,7 +12511,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101098', - id: '544446', + _id: '544446', to: '101114', }, { @@ -12519,7 +12519,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101105', - id: '544426', + _id: '544426', to: '101114', }, { @@ -12527,7 +12527,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101106', - id: '544442', + _id: '544442', to: '101114', }, { @@ -12535,7 +12535,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101110', - id: '544443', + _id: '544443', to: '101114', }, { @@ -12543,7 +12543,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101115', - id: '544407', + _id: '544407', to: '101114', }, { @@ -12551,7 +12551,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101135', - id: '544406', + _id: '544406', to: '101204', }, { @@ -12559,7 +12559,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101153', - id: '544400', + _id: '544400', to: '101204', }, { @@ -12567,7 +12567,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101154', - id: '544401', + _id: '544401', to: '101205', }, { @@ -12575,7 +12575,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101156', - id: '544403', + _id: '544403', to: '101174', }, { @@ -12583,7 +12583,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101198', - id: '544399', + _id: '544399', to: '101205', }, { @@ -12591,7 +12591,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101283', - id: '544394', + _id: '544394', to: '101278', }, { @@ -12599,7 +12599,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101663', - id: '544390', + _id: '544390', to: '101675', }, { @@ -12607,7 +12607,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101664', - id: '544391', + _id: '544391', to: '101682', }, { @@ -12615,7 +12615,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101671', - id: '544389', + _id: '544389', to: '101682', }, { @@ -12623,7 +12623,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '101758', - id: '544383', + _id: '544383', to: '101761', }, { @@ -12631,7 +12631,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '102541', - id: '544334', + _id: '544334', to: '102608', }, { @@ -12639,7 +12639,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '102757', - id: '544323', + _id: '544323', to: '102813', }, { @@ -12647,7 +12647,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '102769', - id: '544279', + _id: '544279', to: '102813', }, { @@ -12655,7 +12655,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '102770', - id: '544283', + _id: '544283', to: '102813', }, { @@ -12663,7 +12663,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '102771', - id: '544284', + _id: '544284', to: '102813', }, { @@ -12671,7 +12671,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '102772', - id: '544285', + _id: '544285', to: '102815', }, { @@ -12679,7 +12679,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '102773', - id: '544287', + _id: '544287', to: '102815', }, { @@ -12687,7 +12687,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '102774', - id: '544288', + _id: '544288', to: '102815', }, { @@ -12695,7 +12695,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '102780', - id: '544298', + _id: '544298', to: '102815', }, { @@ -12703,7 +12703,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '103134', - id: '544069', + _id: '544069', to: '103153', }, { @@ -12711,7 +12711,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '103154', - id: '544068', + _id: '544068', to: '103153', }, { @@ -12719,7 +12719,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104362', - id: '544033', + _id: '544033', to: '104432', }, { @@ -12727,7 +12727,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104363', - id: '544034', + _id: '544034', to: '104432', }, { @@ -12735,7 +12735,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104413', - id: '543944', + _id: '543944', to: '104438', }, { @@ -12743,7 +12743,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104440', - id: '543822', + _id: '543822', to: '104438', }, { @@ -12751,7 +12751,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104441', - id: '543823', + _id: '543823', to: '104438', }, { @@ -12759,7 +12759,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104442', - id: '543923', + _id: '543923', to: '104438', }, { @@ -12767,7 +12767,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104443', - id: '543928', + _id: '543928', to: '104438', }, { @@ -12775,7 +12775,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104444', - id: '543942', + _id: '543942', to: '104438', }, { @@ -12783,7 +12783,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104445', - id: '543943', + _id: '543943', to: '104438', }, { @@ -12791,7 +12791,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104626', - id: '543821', + _id: '543821', to: '104724', }, { @@ -12799,7 +12799,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104798', - id: '543819', + _id: '543819', to: '104826', }, { @@ -12807,7 +12807,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104799', - id: '543820', + _id: '543820', to: '104826', }, { @@ -12815,7 +12815,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104828', - id: '543644', + _id: '543644', to: '104826', }, { @@ -12823,7 +12823,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104829', - id: '543645', + _id: '543645', to: '104826', }, { @@ -12831,7 +12831,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104830', - id: '543646', + _id: '543646', to: '104826', }, { @@ -12839,7 +12839,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104837', - id: '543654', + _id: '543654', to: '104826', }, { @@ -12847,7 +12847,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '104838', - id: '543655', + _id: '543655', to: '104835', }, { @@ -12855,7 +12855,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '105440', - id: '543634', + _id: '543634', to: '105436', }, { @@ -12863,7 +12863,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '110820', - id: '541919', + _id: '541919', to: '110904', }, { @@ -12871,7 +12871,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '110905', - id: '541913', + _id: '541913', to: '110904', }, { @@ -12879,7 +12879,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '110906', - id: '541914', + _id: '541914', to: '110904', }, { @@ -12887,7 +12887,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '110907', - id: '541915', + _id: '541915', to: '110904', }, { @@ -12895,7 +12895,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '110908', - id: '541916', + _id: '541916', to: '110904', }, { @@ -12903,7 +12903,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '110911', - id: '541917', + _id: '541917', to: '110904', }, { @@ -12911,7 +12911,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '110912', - id: '541918', + _id: '541918', to: '110904', }, { @@ -12919,7 +12919,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '119856', - id: '541817', + _id: '541817', to: '119853', }, { @@ -12927,7 +12927,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '119962', - id: '541560', + _id: '541560', to: '119993', }, { @@ -12935,7 +12935,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '120097', - id: '541543', + _id: '541543', to: '120095', }, { @@ -12943,7 +12943,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '120474', - id: '540973', + _id: '540973', to: '120489', }, { @@ -12951,7 +12951,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '120476', - id: '540974', + _id: '540974', to: '120489', }, { @@ -12959,7 +12959,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '120741', - id: '540962', + _id: '540962', to: '120748', }, { @@ -12967,7 +12967,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '120959', - id: '540954', + _id: '540954', to: '120967', }, { @@ -12975,7 +12975,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '120961', - id: '540955', + _id: '540955', to: '120967', }, { @@ -12983,7 +12983,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '120964', - id: '540809', + _id: '540809', to: '120967', }, { @@ -12991,7 +12991,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '120966', - id: '540810', + _id: '540810', to: '120967', }, { @@ -12999,7 +12999,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '121095', - id: '540801', + _id: '540801', to: '121094', }, { @@ -13007,7 +13007,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '121096', - id: '540804', + _id: '540804', to: '121094', }, { @@ -13015,7 +13015,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '121097', - id: '540805', + _id: '540805', to: '121094', }, { @@ -13023,7 +13023,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '121098', - id: '540806', + _id: '540806', to: '121094', }, { @@ -13031,7 +13031,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '124035', - id: '539648', + _id: '539648', to: '124093', }, { @@ -13039,7 +13039,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '124036', - id: '539662', + _id: '539662', to: '124093', }, { @@ -13047,7 +13047,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '124037', - id: '539678', + _id: '539678', to: '124093', }, { @@ -13055,7 +13055,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132500', - id: '536514', + _id: '536514', to: '132498', }, { @@ -13063,7 +13063,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132501', - id: '536515', + _id: '536515', to: '132498', }, { @@ -13071,7 +13071,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132502', - id: '536520', + _id: '536520', to: '132498', }, { @@ -13079,7 +13079,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132503', - id: '536522', + _id: '536522', to: '132498', }, { @@ -13087,7 +13087,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132504', - id: '536523', + _id: '536523', to: '132498', }, { @@ -13095,7 +13095,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132506', - id: '536665', + _id: '536665', to: '132498', }, { @@ -13103,7 +13103,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132507', - id: '536702', + _id: '536702', to: '132498', }, { @@ -13111,7 +13111,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132508', - id: '536704', + _id: '536704', to: '132498', }, { @@ -13119,7 +13119,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132996', - id: '535953', + _id: '535953', to: '132995', }, { @@ -13127,7 +13127,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '132997', - id: '535963', + _id: '535963', to: '132995', }, { @@ -13135,7 +13135,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133003', - id: '535964', + _id: '535964', to: '132995', }, { @@ -13143,7 +13143,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133863', - id: '534894', + _id: '534894', to: '133862', }, { @@ -13151,7 +13151,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133864', - id: '534895', + _id: '534895', to: '133862', }, { @@ -13159,7 +13159,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133865', - id: '534896', + _id: '534896', to: '133862', }, { @@ -13167,7 +13167,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133866', - id: '534897', + _id: '534897', to: '133862', }, { @@ -13175,7 +13175,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133867', - id: '534898', + _id: '534898', to: '133862', }, { @@ -13183,7 +13183,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133868', - id: '534899', + _id: '534899', to: '133862', }, { @@ -13191,7 +13191,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133869', - id: '534901', + _id: '534901', to: '133862', }, { @@ -13199,7 +13199,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133870', - id: '534902', + _id: '534902', to: '133862', }, { @@ -13207,7 +13207,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133871', - id: '534903', + _id: '534903', to: '133862', }, { @@ -13215,7 +13215,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '133872', - id: '534904', + _id: '534904', to: '133862', }, { @@ -13223,7 +13223,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '137116', - id: '526177', + _id: '526177', to: '137156', }, { @@ -13231,7 +13231,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '137117', - id: '526205', + _id: '526205', to: '137156', }, { @@ -13239,7 +13239,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '143588', - id: '500601', + _id: '500601', to: '143587', }, { @@ -13247,7 +13247,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '143589', - id: '500602', + _id: '500602', to: '143587', }, { @@ -13255,7 +13255,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '143590', - id: '500603', + _id: '500603', to: '143587', }, { @@ -13263,7 +13263,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '143591', - id: '500604', + _id: '500604', to: '143587', }, { @@ -13271,7 +13271,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '160044', - id: '56070', + _id: '56070', to: '160036', }, { @@ -13279,7 +13279,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '160545', - id: '56091', + _id: '56091', to: '160529', }, { @@ -13287,7 +13287,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161055', - id: '56141', + _id: '56141', to: '161043', }, { @@ -13295,7 +13295,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161062', - id: '56142', + _id: '56142', to: '161043', }, { @@ -13303,7 +13303,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161067', - id: '56143', + _id: '56143', to: '161043', }, { @@ -13311,7 +13311,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161093', - id: '56146', + _id: '56146', to: '161043', }, { @@ -13319,7 +13319,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161094', - id: '56147', + _id: '56147', to: '161043', }, { @@ -13327,7 +13327,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161097', - id: '56150', + _id: '56150', to: '161064', }, { @@ -13335,7 +13335,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161389', - id: '56174', + _id: '56174', to: '161388', }, { @@ -13343,7 +13343,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161391', - id: '56175', + _id: '56175', to: '161388', }, { @@ -13351,7 +13351,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161393', - id: '56176', + _id: '56176', to: '161388', }, { @@ -13359,7 +13359,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '161856', - id: '56191', + _id: '56191', to: '161827', }, { @@ -13367,7 +13367,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '162417', - id: '56243', + _id: '56243', to: '162413', }, { @@ -13375,7 +13375,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '162418', - id: '56244', + _id: '56244', to: '162413', }, { @@ -13383,7 +13383,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '162419', - id: '56245', + _id: '56245', to: '162413', }, { @@ -13391,7 +13391,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '162495', - id: '56246', + _id: '56246', to: '162473', }, { @@ -13399,7 +13399,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '162725', - id: '56310', + _id: '56310', to: '162707', }, { @@ -13407,7 +13407,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163085', - id: '56344', + _id: '56344', to: '163069', }, { @@ -13415,7 +13415,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163125', - id: '56355', + _id: '56355', to: '163124', }, { @@ -13423,7 +13423,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163218', - id: '56361', + _id: '56361', to: '163205', }, { @@ -13431,7 +13431,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163233', - id: '56366', + _id: '56366', to: '163227', }, { @@ -13439,7 +13439,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163269', - id: '56369', + _id: '56369', to: '163227', }, { @@ -13447,7 +13447,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163270', - id: '56370', + _id: '56370', to: '163227', }, { @@ -13455,7 +13455,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163391', - id: '56379', + _id: '56379', to: '163387', }, { @@ -13463,7 +13463,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163392', - id: '56380', + _id: '56380', to: '163387', }, { @@ -13471,7 +13471,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163393', - id: '56381', + _id: '56381', to: '163387', }, { @@ -13479,7 +13479,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163394', - id: '56382', + _id: '56382', to: '163387', }, { @@ -13487,7 +13487,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163459', - id: '56388', + _id: '56388', to: '163454', }, { @@ -13495,7 +13495,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163464', - id: '56389', + _id: '56389', to: '163454', }, { @@ -13503,7 +13503,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163644', - id: '56402', + _id: '56402', to: '163620', }, { @@ -13511,7 +13511,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163718', - id: '56408', + _id: '56408', to: '163716', }, { @@ -13519,7 +13519,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '163759', - id: '56417', + _id: '56417', to: '163750', }, { @@ -13527,7 +13527,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164114', - id: '56451', + _id: '56451', to: '164105', }, { @@ -13535,7 +13535,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164238', - id: '56461', + _id: '56461', to: '164237', }, { @@ -13543,7 +13543,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164239', - id: '56462', + _id: '56462', to: '164237', }, { @@ -13551,7 +13551,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164240', - id: '56463', + _id: '56463', to: '164237', }, { @@ -13559,7 +13559,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164241', - id: '56464', + _id: '56464', to: '164237', }, { @@ -13567,7 +13567,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164242', - id: '56465', + _id: '56465', to: '164237', }, { @@ -13575,7 +13575,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164243', - id: '56466', + _id: '56466', to: '164237', }, { @@ -13583,7 +13583,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164244', - id: '56467', + _id: '56467', to: '164237', }, { @@ -13591,7 +13591,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164245', - id: '56468', + _id: '56468', to: '164237', }, { @@ -13599,7 +13599,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164246', - id: '56469', + _id: '56469', to: '164237', }, { @@ -13607,7 +13607,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164247', - id: '56470', + _id: '56470', to: '164237', }, { @@ -13615,7 +13615,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164248', - id: '56471', + _id: '56471', to: '164237', }, { @@ -13623,7 +13623,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164252', - id: '56472', + _id: '56472', to: '164237', }, { @@ -13631,7 +13631,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164254', - id: '56473', + _id: '56473', to: '164237', }, { @@ -13639,7 +13639,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164255', - id: '56474', + _id: '56474', to: '164237', }, { @@ -13647,7 +13647,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164452', - id: '56508', + _id: '56508', to: '164451', }, { @@ -13655,7 +13655,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164453', - id: '56509', + _id: '56509', to: '164451', }, { @@ -13663,7 +13663,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164454', - id: '56510', + _id: '56510', to: '164451', }, { @@ -13671,7 +13671,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164456', - id: '56511', + _id: '56511', to: '164451', }, { @@ -13679,7 +13679,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164500', - id: '56516', + _id: '56516', to: '164499', }, { @@ -13687,7 +13687,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164501', - id: '56517', + _id: '56517', to: '164499', }, { @@ -13695,7 +13695,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164502', - id: '56518', + _id: '56518', to: '164499', }, { @@ -13703,7 +13703,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164503', - id: '56519', + _id: '56519', to: '164499', }, { @@ -13711,7 +13711,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164504', - id: '56520', + _id: '56520', to: '164499', }, { @@ -13719,7 +13719,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164505', - id: '56521', + _id: '56521', to: '164499', }, { @@ -13727,7 +13727,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164506', - id: '56522', + _id: '56522', to: '164499', }, { @@ -13735,7 +13735,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164507', - id: '56523', + _id: '56523', to: '164499', }, { @@ -13743,7 +13743,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164508', - id: '56524', + _id: '56524', to: '164499', }, { @@ -13751,7 +13751,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164509', - id: '56525', + _id: '56525', to: '164499', }, { @@ -13759,7 +13759,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164510', - id: '56526', + _id: '56526', to: '164499', }, { @@ -13767,7 +13767,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164511', - id: '56527', + _id: '56527', to: '164499', }, { @@ -13775,7 +13775,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164535', - id: '56542', + _id: '56542', to: '164534', }, { @@ -13783,7 +13783,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164536', - id: '56543', + _id: '56543', to: '164534', }, { @@ -13791,7 +13791,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164537', - id: '56544', + _id: '56544', to: '164534', }, { @@ -13799,7 +13799,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164547', - id: '56549', + _id: '56549', to: '164534', }, { @@ -13807,7 +13807,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '164552', - id: '56550', + _id: '56550', to: '164534', }, { @@ -13815,7 +13815,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185228', - id: '56832', + _id: '56832', to: '185185', }, { @@ -13823,7 +13823,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185229', - id: '56833', + _id: '56833', to: '185185', }, { @@ -13831,7 +13831,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185230', - id: '56834', + _id: '56834', to: '185185', }, { @@ -13839,7 +13839,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185231', - id: '56835', + _id: '56835', to: '185185', }, { @@ -13847,7 +13847,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185232', - id: '56836', + _id: '56836', to: '185185', }, { @@ -13855,7 +13855,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185233', - id: '56837', + _id: '56837', to: '185185', }, { @@ -13863,7 +13863,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185234', - id: '56838', + _id: '56838', to: '185185', }, { @@ -13871,7 +13871,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185262', - id: '56844', + _id: '56844', to: '185185', }, { @@ -13879,7 +13879,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185316', - id: '56873', + _id: '56873', to: '185185', }, { @@ -13887,7 +13887,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185317', - id: '56874', + _id: '56874', to: '185185', }, { @@ -13895,7 +13895,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185318', - id: '56875', + _id: '56875', to: '185185', }, { @@ -13903,7 +13903,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185319', - id: '56876', + _id: '56876', to: '185185', }, { @@ -13911,7 +13911,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '185383', - id: '56877', + _id: '56877', to: '185185', }, { @@ -13919,7 +13919,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '189056', - id: '57427', + _id: '57427', to: '189044', }, { @@ -13927,7 +13927,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '189086', - id: '57428', + _id: '57428', to: '189081', }, { @@ -13935,7 +13935,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '189093', - id: '57429', + _id: '57429', to: '189081', }, { @@ -13943,7 +13943,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '189135', - id: '57430', + _id: '57430', to: '189044', }, { @@ -13951,7 +13951,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '189307', - id: '57439', + _id: '57439', to: '189044', }, { @@ -13959,7 +13959,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '194551', - id: '57660', + _id: '57660', to: '194549', }, { @@ -13967,7 +13967,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '194552', - id: '57661', + _id: '57661', to: '194549', }, { @@ -13975,7 +13975,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '194553', - id: '57662', + _id: '57662', to: '194549', }, { @@ -13983,7 +13983,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '195540', - id: '57709', + _id: '57709', to: '195536', }, { @@ -13991,7 +13991,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '195541', - id: '57710', + _id: '57710', to: '195536', }, { @@ -13999,7 +13999,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196522', - id: '57803', + _id: '57803', to: '196517', }, { @@ -14007,7 +14007,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196523', - id: '57804', + _id: '57804', to: '196517', }, { @@ -14015,7 +14015,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196525', - id: '57806', + _id: '57806', to: '196517', }, { @@ -14023,7 +14023,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196526', - id: '57807', + _id: '57807', to: '196517', }, { @@ -14031,7 +14031,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196527', - id: '57808', + _id: '57808', to: '196517', }, { @@ -14039,7 +14039,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196528', - id: '57809', + _id: '57809', to: '196517', }, { @@ -14047,7 +14047,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196529', - id: '57810', + _id: '57810', to: '196517', }, { @@ -14055,7 +14055,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196530', - id: '57811', + _id: '57811', to: '196517', }, { @@ -14063,7 +14063,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196533', - id: '57812', + _id: '57812', to: '196517', }, { @@ -14071,7 +14071,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196534', - id: '57813', + _id: '57813', to: '196517', }, { @@ -14079,7 +14079,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196535', - id: '57814', + _id: '57814', to: '196517', }, { @@ -14087,7 +14087,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196536', - id: '57815', + _id: '57815', to: '196517', }, { @@ -14095,7 +14095,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196631', - id: '57829', + _id: '57829', to: '196517', }, { @@ -14103,7 +14103,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '196945', - id: '57978', + _id: '57978', to: '196936', }, { @@ -14111,7 +14111,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '200355', - id: '58229', + _id: '58229', to: '200225', }, { @@ -14119,7 +14119,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '200356', - id: '58230', + _id: '58230', to: '200225', }, { @@ -14127,7 +14127,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '200357', - id: '58231', + _id: '58231', to: '200225', }, { @@ -14135,7 +14135,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '203994', - id: '58464', + _id: '58464', to: '203980', }, { @@ -14143,7 +14143,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '203995', - id: '58465', + _id: '58465', to: '203980', }, { @@ -14151,7 +14151,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '203996', - id: '58466', + _id: '58466', to: '203980', }, { @@ -14159,7 +14159,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207293', - id: '58686', + _id: '58686', to: '207292', }, { @@ -14167,7 +14167,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207294', - id: '58687', + _id: '58687', to: '207292', }, { @@ -14175,7 +14175,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207295', - id: '58688', + _id: '58688', to: '207292', }, { @@ -14183,7 +14183,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207296', - id: '58689', + _id: '58689', to: '207292', }, { @@ -14191,7 +14191,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207297', - id: '58690', + _id: '58690', to: '207292', }, { @@ -14199,7 +14199,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207298', - id: '58691', + _id: '58691', to: '207292', }, { @@ -14207,7 +14207,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207299', - id: '58692', + _id: '58692', to: '207292', }, { @@ -14215,7 +14215,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207300', - id: '58693', + _id: '58693', to: '207292', }, { @@ -14223,7 +14223,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207301', - id: '58694', + _id: '58694', to: '207292', }, { @@ -14231,7 +14231,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207302', - id: '58695', + _id: '58695', to: '207292', }, { @@ -14239,7 +14239,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207303', - id: '58696', + _id: '58696', to: '207292', }, { @@ -14247,7 +14247,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207304', - id: '58697', + _id: '58697', to: '207292', }, { @@ -14255,7 +14255,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207305', - id: '58698', + _id: '58698', to: '207292', }, { @@ -14263,7 +14263,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207306', - id: '58699', + _id: '58699', to: '207292', }, { @@ -14271,7 +14271,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207307', - id: '58700', + _id: '58700', to: '207292', }, { @@ -14279,7 +14279,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207308', - id: '58701', + _id: '58701', to: '207292', }, { @@ -14287,7 +14287,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207309', - id: '58702', + _id: '58702', to: '207292', }, { @@ -14295,7 +14295,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207310', - id: '58703', + _id: '58703', to: '207292', }, { @@ -14303,7 +14303,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207311', - id: '58704', + _id: '58704', to: '207292', }, { @@ -14311,7 +14311,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207312', - id: '58705', + _id: '58705', to: '207292', }, { @@ -14319,7 +14319,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207313', - id: '58706', + _id: '58706', to: '207292', }, { @@ -14327,7 +14327,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207314', - id: '58707', + _id: '58707', to: '207292', }, { @@ -14335,7 +14335,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207315', - id: '58708', + _id: '58708', to: '207292', }, { @@ -14343,7 +14343,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207317', - id: '58709', + _id: '58709', to: '207292', }, { @@ -14351,7 +14351,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207318', - id: '58710', + _id: '58710', to: '207292', }, { @@ -14359,7 +14359,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207319', - id: '58711', + _id: '58711', to: '207292', }, { @@ -14367,7 +14367,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207320', - id: '58712', + _id: '58712', to: '207292', }, { @@ -14375,7 +14375,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207324', - id: '58713', + _id: '58713', to: '207292', }, { @@ -14383,7 +14383,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207326', - id: '58714', + _id: '58714', to: '207292', }, { @@ -14391,7 +14391,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207333', - id: '58715', + _id: '58715', to: '207292', }, { @@ -14399,7 +14399,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207334', - id: '58716', + _id: '58716', to: '207292', }, { @@ -14407,7 +14407,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207336', - id: '58717', + _id: '58717', to: '207292', }, { @@ -14415,7 +14415,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207337', - id: '58718', + _id: '58718', to: '207292', }, { @@ -14423,7 +14423,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207338', - id: '58719', + _id: '58719', to: '207292', }, { @@ -14431,7 +14431,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207339', - id: '58720', + _id: '58720', to: '207292', }, { @@ -14439,7 +14439,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207346', - id: '58726', + _id: '58726', to: '207292', }, { @@ -14447,7 +14447,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207347', - id: '58727', + _id: '58727', to: '207292', }, { @@ -14455,7 +14455,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207348', - id: '58728', + _id: '58728', to: '207292', }, { @@ -14463,7 +14463,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207351', - id: '58729', + _id: '58729', to: '207292', }, { @@ -14471,7 +14471,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207352', - id: '58730', + _id: '58730', to: '207292', }, { @@ -14479,7 +14479,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207353', - id: '58731', + _id: '58731', to: '207292', }, { @@ -14487,7 +14487,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207354', - id: '58732', + _id: '58732', to: '207292', }, { @@ -14495,7 +14495,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207355', - id: '58733', + _id: '58733', to: '207292', }, { @@ -14503,7 +14503,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207356', - id: '58734', + _id: '58734', to: '207292', }, { @@ -14511,7 +14511,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207357', - id: '58735', + _id: '58735', to: '207292', }, { @@ -14519,7 +14519,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207358', - id: '58736', + _id: '58736', to: '207292', }, { @@ -14527,7 +14527,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207359', - id: '58737', + _id: '58737', to: '207292', }, { @@ -14535,7 +14535,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207360', - id: '58738', + _id: '58738', to: '207292', }, { @@ -14543,7 +14543,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207361', - id: '58739', + _id: '58739', to: '207292', }, { @@ -14551,7 +14551,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207364', - id: '58740', + _id: '58740', to: '207292', }, { @@ -14559,7 +14559,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207367', - id: '58741', + _id: '58741', to: '207292', }, { @@ -14567,7 +14567,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207368', - id: '58742', + _id: '58742', to: '207292', }, { @@ -14575,7 +14575,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207369', - id: '58743', + _id: '58743', to: '207292', }, { @@ -14583,7 +14583,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207370', - id: '58744', + _id: '58744', to: '207292', }, { @@ -14591,7 +14591,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207371', - id: '58745', + _id: '58745', to: '207292', }, { @@ -14599,7 +14599,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207372', - id: '58746', + _id: '58746', to: '207292', }, { @@ -14607,7 +14607,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207373', - id: '58747', + _id: '58747', to: '207292', }, { @@ -14615,7 +14615,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207374', - id: '58748', + _id: '58748', to: '207292', }, { @@ -14623,7 +14623,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207375', - id: '58749', + _id: '58749', to: '207292', }, { @@ -14631,7 +14631,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207376', - id: '58750', + _id: '58750', to: '207292', }, { @@ -14639,7 +14639,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207377', - id: '58751', + _id: '58751', to: '207292', }, { @@ -14647,7 +14647,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207378', - id: '58752', + _id: '58752', to: '207292', }, { @@ -14655,7 +14655,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207379', - id: '58753', + _id: '58753', to: '207292', }, { @@ -14663,7 +14663,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207380', - id: '58754', + _id: '58754', to: '207292', }, { @@ -14671,7 +14671,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207381', - id: '58755', + _id: '58755', to: '207292', }, { @@ -14679,7 +14679,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207382', - id: '58756', + _id: '58756', to: '207292', }, { @@ -14687,7 +14687,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207383', - id: '58757', + _id: '58757', to: '207292', }, { @@ -14695,7 +14695,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207384', - id: '58758', + _id: '58758', to: '207292', }, { @@ -14703,7 +14703,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207385', - id: '58759', + _id: '58759', to: '207292', }, { @@ -14711,7 +14711,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207386', - id: '58760', + _id: '58760', to: '207292', }, { @@ -14719,7 +14719,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207393', - id: '58761', + _id: '58761', to: '207292', }, { @@ -14727,7 +14727,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207433', - id: '58765', + _id: '58765', to: '207429', }, { @@ -14735,7 +14735,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '207435', - id: '58766', + _id: '58766', to: '207429', }, { @@ -14743,7 +14743,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208017', - id: '58818', + _id: '58818', to: '208013', }, { @@ -14751,7 +14751,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208019', - id: '58820', + _id: '58820', to: '208013', }, { @@ -14759,7 +14759,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208038', - id: '58826', + _id: '58826', to: '208013', }, { @@ -14767,7 +14767,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208110', - id: '58838', + _id: '58838', to: '208090', }, { @@ -14775,7 +14775,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208111', - id: '58839', + _id: '58839', to: '208090', }, { @@ -14783,7 +14783,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208112', - id: '58840', + _id: '58840', to: '208090', }, { @@ -14791,7 +14791,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208113', - id: '58841', + _id: '58841', to: '208090', }, { @@ -14799,7 +14799,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208114', - id: '58842', + _id: '58842', to: '208090', }, { @@ -14807,7 +14807,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208115', - id: '58843', + _id: '58843', to: '208090', }, { @@ -14815,7 +14815,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208117', - id: '58844', + _id: '58844', to: '208090', }, { @@ -14823,7 +14823,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208118', - id: '58845', + _id: '58845', to: '208090', }, { @@ -14831,7 +14831,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208827', - id: '58928', + _id: '58928', to: '208823', }, { @@ -14839,7 +14839,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208828', - id: '58929', + _id: '58929', to: '208823', }, { @@ -14847,7 +14847,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208829', - id: '58930', + _id: '58930', to: '208823', }, { @@ -14855,7 +14855,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208831', - id: '58931', + _id: '58931', to: '208823', }, { @@ -14863,7 +14863,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208833', - id: '58932', + _id: '58932', to: '208823', }, { @@ -14871,7 +14871,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208834', - id: '58933', + _id: '58933', to: '208823', }, { @@ -14879,7 +14879,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208835', - id: '58934', + _id: '58934', to: '208823', }, { @@ -14887,7 +14887,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208836', - id: '58935', + _id: '58935', to: '208823', }, { @@ -14895,7 +14895,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '208983', - id: '58950', + _id: '58950', to: '207244', }, { @@ -14903,7 +14903,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209169', - id: '58959', + _id: '58959', to: '209160', }, { @@ -14911,7 +14911,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209205', - id: '58965', + _id: '58965', to: '209160', }, { @@ -14919,7 +14919,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209283', - id: '58969', + _id: '58969', to: '209160', }, { @@ -14927,7 +14927,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209284', - id: '58970', + _id: '58970', to: '209160', }, { @@ -14935,7 +14935,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209524', - id: '58996', + _id: '58996', to: '209522', }, { @@ -14943,7 +14943,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209525', - id: '58997', + _id: '58997', to: '209522', }, { @@ -14951,7 +14951,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209526', - id: '58998', + _id: '58998', to: '209522', }, { @@ -14959,7 +14959,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209527', - id: '58999', + _id: '58999', to: '209522', }, { @@ -14967,7 +14967,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209676', - id: '59006', + _id: '59006', to: '209522', }, { @@ -14975,7 +14975,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209816', - id: '59031', + _id: '59031', to: '209522', }, { @@ -14983,7 +14983,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '209884', - id: '59044', + _id: '59044', to: '209845', }, { @@ -14991,7 +14991,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210248', - id: '59096', + _id: '59096', to: '210168', }, { @@ -14999,7 +14999,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210291', - id: '59105', + _id: '59105', to: '210270', }, { @@ -15007,7 +15007,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210292', - id: '59106', + _id: '59106', to: '210270', }, { @@ -15015,7 +15015,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210459', - id: '59132', + _id: '59132', to: '210402', }, { @@ -15023,7 +15023,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210467', - id: '59137', + _id: '59137', to: '210402', }, { @@ -15031,7 +15031,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210493', - id: '59140', + _id: '59140', to: '210485', }, { @@ -15039,7 +15039,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210495', - id: '59141', + _id: '59141', to: '210485', }, { @@ -15047,7 +15047,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210530', - id: '59142', + _id: '59142', to: '210485', }, { @@ -15055,7 +15055,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210614', - id: '59148', + _id: '59148', to: '210603', }, { @@ -15063,7 +15063,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210615', - id: '59149', + _id: '59149', to: '210603', }, { @@ -15071,7 +15071,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '210775', - id: '59162', + _id: '59162', to: '210762', }, { @@ -15079,7 +15079,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '211238', - id: '59210', + _id: '59210', to: '211187', }, { @@ -15087,7 +15087,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '211239', - id: '59211', + _id: '59211', to: '211187', }, { @@ -15095,7 +15095,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '211581', - id: '59287', + _id: '59287', to: '211574', }, { @@ -15103,7 +15103,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '212090', - id: '59303', + _id: '59303', to: '212057', }, { @@ -15111,7 +15111,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '212227', - id: '59318', + _id: '59318', to: '212226', }, { @@ -15119,7 +15119,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '212564', - id: '59369', + _id: '59369', to: '212446', }, { @@ -15127,7 +15127,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '212753', - id: '59383', + _id: '59383', to: '212743', }, { @@ -15135,7 +15135,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '212755', - id: '59385', + _id: '59385', to: '212743', }, { @@ -15143,7 +15143,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213095', - id: '59416', + _id: '59416', to: '213094', }, { @@ -15151,7 +15151,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213097', - id: '59417', + _id: '59417', to: '213094', }, { @@ -15159,7 +15159,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213122', - id: '59420', + _id: '59420', to: '213114', }, { @@ -15167,7 +15167,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213124', - id: '59421', + _id: '59421', to: '213114', }, { @@ -15175,7 +15175,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213125', - id: '59422', + _id: '59422', to: '213114', }, { @@ -15183,7 +15183,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213126', - id: '59423', + _id: '59423', to: '213114', }, { @@ -15191,7 +15191,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213127', - id: '59424', + _id: '59424', to: '213114', }, { @@ -15199,7 +15199,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213134', - id: '59425', + _id: '59425', to: '213114', }, { @@ -15207,7 +15207,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213149', - id: '59427', + _id: '59427', to: '213143', }, { @@ -15215,7 +15215,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213150', - id: '59428', + _id: '59428', to: '213143', }, { @@ -15223,7 +15223,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213190', - id: '59435', + _id: '59435', to: '213143', }, { @@ -15231,7 +15231,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213338', - id: '59478', + _id: '59478', to: '213337', }, { @@ -15239,7 +15239,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213490', - id: '59504', + _id: '59504', to: '213475', }, { @@ -15247,7 +15247,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213729', - id: '59539', + _id: '59539', to: '213728', }, { @@ -15255,7 +15255,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213735', - id: '59541', + _id: '59541', to: '213723', }, { @@ -15263,7 +15263,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213736', - id: '59542', + _id: '59542', to: '213723', }, { @@ -15271,7 +15271,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213737', - id: '59543', + _id: '59543', to: '213723', }, { @@ -15279,7 +15279,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '213754', - id: '59544', + _id: '59544', to: '213723', }, { @@ -15287,7 +15287,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '214959', - id: '59685', + _id: '59685', to: '214942', }, { @@ -15295,7 +15295,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '214973', - id: '59686', + _id: '59686', to: '214942', }, { @@ -15303,7 +15303,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215019', - id: '59689', + _id: '59689', to: '215015', }, { @@ -15311,7 +15311,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215020', - id: '59690', + _id: '59690', to: '215015', }, { @@ -15319,7 +15319,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215022', - id: '59691', + _id: '59691', to: '215015', }, { @@ -15327,7 +15327,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215023', - id: '59692', + _id: '59692', to: '215015', }, { @@ -15335,7 +15335,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215024', - id: '59693', + _id: '59693', to: '215015', }, { @@ -15343,7 +15343,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215025', - id: '59694', + _id: '59694', to: '215015', }, { @@ -15351,7 +15351,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215026', - id: '59695', + _id: '59695', to: '215015', }, { @@ -15359,7 +15359,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215027', - id: '59696', + _id: '59696', to: '215015', }, { @@ -15367,7 +15367,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215028', - id: '59697', + _id: '59697', to: '215015', }, { @@ -15375,7 +15375,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR Type: 'IN_REPLY_TO', }, from: '215029', - id: '59698', + _id: '59698', to: '215015', }, ], @@ -15388,7 +15388,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Cool sounds good, and you use Neo4j as backing database?', type: 'message', }, - id: '28795', + _id: '28795', }, { attributes: { @@ -15398,7 +15398,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "michael.neo: No, we don't. Just using MySQL, and experimenting with Mongo. Not sure whether we should go with a graph db.", type: 'message', }, - id: '28796', + _id: '28796', }, { attributes: { @@ -15408,7 +15408,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "So you're rather promoting your product here :)", type: 'message', }, - id: '28797', + _id: '28797', }, { attributes: { @@ -15418,7 +15418,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I was actually really hoping to connect with SDEs, and in turn get some beta users too. If it's not allowed here, that's all right :slightly_smiling_face:", type: 'message', }, - id: '28798', + _id: '28798', }, { attributes: { @@ -15428,7 +15428,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "IMHO, <@U08J18KHB> : It could be a good use-case to use Neo4J to show real-time messages/threads on <@U42444KMJ> 's Slack/Skype et al.", type: 'message', }, - id: '28799', + _id: '28799', }, { attributes: { @@ -15438,7 +15438,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Yes definitely. We're working on some of that here <http://github.com/community-graph>", type: 'message', }, - id: '28800', + _id: '28800', }, { attributes: { @@ -15448,7 +15448,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'For all lightening talk presenters, we are using two 4-hour BigMarker sessions for your presentation. You can join the session any time prior to your presentation time. The Neo4j host will introduce you at your designated time, then you can share your screen and present for 10 minutes, followed by 5 minutes for the Hunger Games slide and Q & A. The Neo4j host will ask any questions that appear in the chat, At the end of the 5 minutes, the Neo4j host will thank you and then you will be done, Good luck to all of you today and thank you for presenting.', type: 'message', }, - id: '32924', + _id: '32924', }, { attributes: { @@ -15458,7 +15458,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I am told that it is 15 minutes, not 30, but you can try in about 5 minutes and let me know if you were successful.', type: 'message', }, - id: '32835', + _id: '32835', }, { attributes: { @@ -15468,7 +15468,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "done, I'll leave them there now please", type: 'message', }, - id: '32839', + _id: '32839', }, { attributes: { @@ -15478,7 +15478,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "thanks Elaine. I'd like to upload my slides before hand so I'll join earlier to do this. I thought I could already, but don't see an option", type: 'message', }, - id: '32925', + _id: '32925', }, { attributes: { @@ -15489,7 +15489,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Luanne, you should be able to upload a PDF to the session. The session will be open to presenters up to 30 minutes before the session start. Just remember that since this is a session shared by multiple presenters, you should ensure your mic is muted until it is time for your presentation.', type: 'message', }, - id: '32926', + _id: '32926', }, { attributes: { @@ -15499,7 +15499,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi all , Can any one tell me how to integrate tableau and Neo4j ', type: 'message', }, - id: '33422', + _id: '33422', }, { attributes: { @@ -15509,7 +15509,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<http://github.com/neo4j-contrib/neo4j-tableau|github.com/neo4j-contrib/neo4j-tableau>', type: 'message', }, - id: '33420', + _id: '33420', }, { attributes: { @@ -15519,7 +15519,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@UAGGP1RQV> Bounding box searches are supported in Neo4j 3.4 for Cartesian 3D. As with the 2D version, you just need a predicate like `WHERE n.location > min AND n.location < max` where `min` and `max` are the minimum and maximum corners. In 2D this is the lower-left and upper-right corners of the box. In 3D it is the smallest and largest 3D points defining the corners of the box.', type: 'message', }, - id: '33979', + _id: '33979', }, { attributes: { @@ -15529,7 +15529,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thank you, this is very helpful.', type: 'message', }, - id: '33985', + _id: '33985', }, { attributes: { @@ -15539,7 +15539,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Please someone guide me about any missing facility in Neo4j Spatial.', type: 'message', }, - id: '34021', + _id: '34021', }, { attributes: { @@ -15549,7 +15549,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'If you are interested in contributing, fixing bugs or adding features, take a look at the issues at <https://github.com/neo4j-contrib/spatial/issues>', type: 'message', }, - id: '34018', + _id: '34018', }, { attributes: { @@ -15559,7 +15559,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'One area where things are missing from the spatial procedures is the ability to remove nodes from the layer/index. See the discussion at <https://github.com/neo4j-contrib/spatial/issues/139> and <https://github.com/neo4j-contrib/spatial/issues/301>', type: 'message', }, - id: '34019', + _id: '34019', }, { attributes: { @@ -15569,7 +15569,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Because Neo4j-OGM abstracts all transports (Bolt, embedded and HTTP). The types you are referring to only exist in the Java Driver for Bolt.', type: 'message', }, - id: '35973', + _id: '35973', }, { attributes: { @@ -15579,7 +15579,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Ah, interesting! I didn't realise that", type: 'message', }, - id: '35946', + _id: '35946', }, { attributes: { @@ -15589,7 +15589,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'So basically the internal id type is a `Long` in Neo4j and should be mapped in your domain objects. On the other hand it is/should be possible to use other types but the framework will warn you with the message above. Let me check this tomorrow in more detail.', type: 'message', }, - id: '35970', + _id: '35970', }, { attributes: { @@ -15599,7 +15599,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Ah, interesting. Ignoring the @Id field, I do get the same error for the property and the relationship as well.', type: 'message', }, - id: '35971', + _id: '35971', }, { attributes: { @@ -15609,7 +15609,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Has anyone been able to get the built-in apoc libs to run on Neo4j 3.3.x embedded server? I am getting a very interesting exception complaining about *Caused by: java.lang.NoClassDefFoundError: org/neo4j/scheduler/JobScheduler*. Just curious', type: 'message', }, - id: '36261', + _id: '36261', }, { attributes: { @@ -15619,7 +15619,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I do not think that this is a apoc problem, or does the problem only occur when trying to register them?\nDo you also use the neo4j-ogm test lib? It does pull in a neo4j 3.2.9 test dependency. Because both are in your CP Maven will choose one. And if it chooses 3.2.9 (it does this all the time on my machine) the JobScheduler is not available here or at least in this package.\nAnd if everything until now was a correct assumption: Your compiler does not stopping you from going a 3.3.x path because it might be legit for the compile steps but when 3.2.9 is on the class path at runtime this collides.', type: 'message', }, - id: '36252', + _id: '36252', }, { attributes: { @@ -15629,7 +15629,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Yes - the next version of RNeo4j is available at <https://github.com/proskriptive/RNeo4j> and of course it is open source :slightly_smiling_face: One of my developers used the language Rust to integrate with the library libneo4j-client. He used Rust because it is better from a security and reliability perspective than C++. There are instructions on the portal that will tell you the dependencies that need to be installed. I'm glad you're putting Shiny in the list. I'm just now working on using visNetwork (<https://cran.r-project.org/web/packages/visNetwork/vignettes/Introduction-to-visNetwork.html> ) to handle visualization of graph's in Shiny. It has a lot of capabilities one of which is the ability to create a new node graphically which could be applied to Neo4j I think. I used that in a solution I build for dermatology research and it works well. DT of course is something we all use and is good integrate. Making a module that is reusable is a great focus and your plan is good.", type: 'message', }, - id: '51703', + _id: '51703', }, { attributes: { @@ -15639,7 +15639,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'perhaps <@U9CCX8Q4V> could combine your VIZ with the rmarkdown ?', type: 'message', }, - id: '51682', + _id: '51682', }, { attributes: { @@ -15649,7 +15649,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I’m working on it :slightly_smiling_face:', type: 'message', }, - id: '51689', + _id: '51689', }, { attributes: { @@ -15659,7 +15659,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U8F4P7BHC> The question was mainly to point the difference between the use cases, you will find less information about it in Neo4j because it is schema less, while in RDF etal they define the schema. On one side, you will find a powerful schema that enables lot of features for Linked Data, on the other side you will find the ability to not be constrained by this schema. The advantage in Neo4j is that it can be both, for example we wrote an SHACL handler for the ability to create automatically shapes in your graph based on ontologies, very powerful and fun.', type: 'message', }, - id: '62720', + _id: '62720', }, { attributes: { @@ -15669,7 +15669,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I did 'discover' SHACL recently (in the BlueBrain project), but I do not yet understand how it works. I expect I will need to know this in due course.", type: 'message', }, - id: '62712', + _id: '62712', }, { attributes: { @@ -15679,7 +15679,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi Everyone, I am using spring boot neo4j to connect Neo4j database server using https:// uri. But connection failing with SSLHandshake error. What is the best way to import certificate in the client application to establish ssl connection?', type: 'message', }, - id: '66357', + _id: '66357', }, { attributes: { @@ -15689,7 +15689,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<https://medium.com/neo4j/getting-certificates-for-neo4j-with-letsencrypt-a8d05c415bbd>', type: 'message', }, - id: '66348', + _id: '66348', }, { attributes: { @@ -15699,7 +15699,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Neo4j does not know what any given kernel extension is for, or when it applies. We have many built-in extensions that are needed during recovery, consistency check, etc. Schema indexes are a kernel extension, for instance. I would hope that people normally don't need to write kernel extensions :slightly_smiling_face:", type: 'message', }, - id: '66824', + _id: '66824', }, { attributes: { @@ -15709,7 +15709,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks for you help! This is an old kernel extension that we used since v2 and just ported to v3. Do you have any ideas where to start to change the dependecy/dependency injection of the GraphDatabaseService.', type: 'message', }, - id: '66821', + _id: '66821', }, { attributes: { @@ -15719,7 +15719,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "You don't really need your extension to be available during consistency checking, do you? I think I would just catch the dependency exception and make the extension disable itself if it can't get a GraphDatabaseService.", type: 'message', }, - id: '66822', + _id: '66822', }, { attributes: { @@ -15729,7 +15729,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'No I dont! Thanks. That seems a pretty easy solution. I will try this. I started to look at org.neo4j.bolt.BoltKernelExtension because it also uses the GraphDatabaseService. Thanks!', type: 'message', }, - id: '66823', + _id: '66823', }, { attributes: { @@ -15739,7 +15739,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi <@U08J18KHB> Is it still necessary with latest versions of Neo4j (3.2, 3.3 etc.) to compact the database to deallocate empty space?', type: 'message', }, - id: '66832', + _id: '66832', }, { attributes: { @@ -15749,7 +15749,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'ya, otherwise it is just reused when new records are created', type: 'message', }, - id: '66836', + _id: '66836', }, { attributes: { @@ -15759,7 +15759,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Was just wondering if there were any documentation/examples of people using Neo4j + GraphQL + APOC virtual links/nodes. I assume you’d just need to hand-carve a schema to get it to work', type: 'message', }, - id: '71045', + _id: '71045', }, { attributes: { @@ -15769,7 +15769,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'you can use them with cypher directives should behave like regular nodes and rels', type: 'message', }, - id: '71021', + _id: '71021', }, { attributes: { @@ -15779,7 +15779,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I am using nestjs +Graphql+Neo4jgrapql-js...when I pass the augmented schema apollo graphql endpoint the startup takes 4hrs. Anyone have any idea why this is. After 4hr all the CRUDs queries are built and everything works fine.', type: 'message', }, - id: '71253', + _id: '71253', }, { attributes: { @@ -15789,7 +15789,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'The schema is actually quite small and I have just 3 added @relation', type: 'message', }, - id: '71222', + _id: '71222', }, { attributes: { @@ -15799,7 +15799,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'hmm that’s odd. Can you share you code? I’ll try to duplicate', type: 'message', }, - id: '71229', + _id: '71229', }, { attributes: { @@ -15809,7 +15809,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'oh interesting I haven’t seen something like that before. Is your schema unusually large or complex?', type: 'message', }, - id: '71254', + _id: '71254', }, { attributes: { @@ -15819,7 +15819,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'For anyone who is curious, I found a workaround by installing the plugin on a local neo4j instance using neo4j desktop, and copied the jar file from my local plugins folder (on macOS ~/Library/Application Support/Neo4j Desktop/Application/neo4jDatabases/<your_db_id>/installation-3.5.5/plugins/graphQL-3.5.0.3.jar) to my ec2 instance using scp.', type: 'message', }, - id: '71591', + _id: '71591', }, { attributes: { @@ -15829,7 +15829,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I guess something changed in the neo4j SPI that was not yet in the 3.5.0.1 release', type: 'message', }, - id: '71524', + _id: '71524', }, { attributes: { @@ -15839,7 +15839,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08J18KHB> The only solution for the issue I found - is just to copy _Neo4jDateTime and _Neo4jDateTimeInput from generated schema to my sources. Is it a best way to go?', type: 'message', }, - id: '71658', + _id: '71658', }, { attributes: { @@ -15849,7 +15849,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Thanks for the answer. Yes, pointing to endpoint is an option. But in either case I can't use DataTime type without complains from the IDE extension.", type: 'message', }, - id: '71610', + _id: '71610', }, { attributes: { @@ -15859,7 +15859,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Can you point the IDE extension at your graphql endpoint, instead of the graphql file? Otherwise, yes I think grabbing the full generated schema / type definitions and pointing the IDE to this file should work', type: 'message', }, - id: '71659', + _id: '71659', }, { attributes: { @@ -15869,7 +15869,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U0975P59N> Hi William, I just want to say that I have a better appreciation now for the tremendous effort and labour of love that you've put into Neo4j's GraphQL integration.", type: 'message', }, - id: '71683', + _id: '71683', }, { attributes: { @@ -15879,7 +15879,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks! We’re hoping it’s useful for folks :slightly_smiling_face: I’m putting together a survey soon so we can collect feedback from users, so be on the lookout for that!', type: 'message', }, - id: '71685', + _id: '71685', }, { attributes: { @@ -15889,7 +15889,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi! Can somebody tell me how to generate merge mutations automatically with the Neo4j-graphql. Js make augmented schema example?', type: 'message', }, - id: '71832', + _id: '71832', }, { attributes: { @@ -15899,7 +15899,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Will this work with the auto generated schema?', type: 'message', }, - id: '71828', + _id: '71828', }, { attributes: { @@ -15909,7 +15909,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'yes, you just need to define the `@cypher` directives in the GraphQL type definitions', type: 'message', }, - id: '71829', + _id: '71829', }, { attributes: { @@ -15919,7 +15919,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U0975P59N>', type: 'message', }, - id: '71833', + _id: '71833', }, { attributes: { @@ -15929,7 +15929,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Can you help me?', type: 'message', }, - id: '71834', + _id: '71834', }, { attributes: { @@ -15939,7 +15939,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi Ben - this is not yet covered by the autogenerated mutations, but it on the road map. In the mean time you can implement this logic through the use of `@cypher` schema directives. Here’s an example: <https://github.com/neo4j-graphql/neo4j-graphql-js/issues/83#issuecomment-438499182>', type: 'message', }, - id: '71835', + _id: '71835', }, { attributes: { @@ -15949,7 +15949,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'please let me know how i can delete unused property keys in Neo4j db.', type: 'message', }, - id: '72128', + _id: '72128', }, { attributes: { @@ -15959,7 +15959,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'See <https://stackoverflow.com/questions/33982639/neo4j-how-to-delete-unused-property-keys-from-browser>', type: 'message', }, - id: '72124', + _id: '72124', }, { attributes: { @@ -15969,7 +15969,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello, I have a @NodeEntity Person who owns a `@Relationship Set<Person> children`. With Neo4j browser the relationship are drawn perfectly fine (each "parent" has an arrow pointing to each of his children). But with graphql the relationship are inversed, meaning parent_a is linked to child_a#children or child_b#children. I cannot find a way to have children inside parents instead of parents inside children :stuck_out_tongue_winking_eye:', type: 'message', }, - id: '72307', + _id: '72307', }, { attributes: { @@ -15979,7 +15979,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Does it somehow relates to that ? <https://github.com/neo4j-graphql/neo4j-graphql/issues/136#issuecomment-418612294>', type: 'message', }, - id: '72308', + _id: '72308', }, { attributes: { @@ -15989,7 +15989,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I removed @Relationship and now I can accordingly find the children owned by their parents. Maybe there is a non-deterministic problem during the phase where the graphql schema is being generated from the neo4j graph', type: 'message', }, - id: '72309', + _id: '72309', }, { attributes: { @@ -15999,7 +15999,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@UAW8MEQJC> what version of Neo4j are you using? This should be fixed in Neo4j v3.4.1+', type: 'message', }, - id: '72547', + _id: '72547', }, { attributes: { @@ -16009,7 +16009,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U0975P59N> when I ssh in and call\n> $ neo4j --version\nI get\n> neo4 3.4.1\nI'm using an AMI that <@U7X490V7X> shared with me maybe 2 months ago.", type: 'message', }, - id: '72536', + _id: '72536', }, { attributes: { @@ -16019,7 +16019,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'what is your query?', type: 'message', }, - id: '72541', + _id: '72541', }, { attributes: { @@ -16029,7 +16029,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Anyone know if there's a way to make Application Insights recognize Neo4j as a part of the application map", type: 'message', }, - id: '78923', + _id: '78923', }, { attributes: { @@ -16039,7 +16039,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'An azure thing', type: 'message', }, - id: '78920', + _id: '78920', }, { attributes: { @@ -16049,7 +16049,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "And I don't know - but let me look into it", type: 'message', }, - id: '78921', + _id: '78921', }, { attributes: { @@ -16059,7 +16059,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks, if not, not a big deal :slightly_smiling_face:', type: 'message', }, - id: '78922', + _id: '78922', }, { attributes: { @@ -16069,7 +16069,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'what is Application Insights?', type: 'message', }, - id: '78924', + _id: '78924', }, { attributes: { @@ -16079,7 +16079,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi <@U3MQPRENB> - which driver `Neo4j.Driver` or `Neo4jClient`?', type: 'message', }, - id: '79141', + _id: '79141', }, { attributes: { @@ -16089,7 +16089,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'No feature on that version?', type: 'message', }, - id: '79127', + _id: '79127', }, { attributes: { @@ -16099,7 +16099,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'cskardon: Yes, sorry...I am using Neo4j.Driver 1.0.2', type: 'message', }, - id: '79142', + _id: '79142', }, { attributes: { @@ -16109,7 +16109,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I just created a new local Neo4j project/graph with Neo4j Desktop 1.0.20. Unfortunately, when I attempt to install the APOC plug-in a tooltip pops up when my mouse is over the install button saying "Offline". I haven\'t found anything online explaining how to resolve the "Offline" condition. Any clues anybody?', type: 'message', }, - id: '83383', + _id: '83383', }, { attributes: { @@ -16120,7 +16120,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi <@U08JDKRB6>, I’m having this same issue. In my case, I can’t access <http://icanhazip.com> because it’s blocked by my corporate proxy, but I do have internet connectivity, and in fact neo4j desktop is able to download neo4j images. Any ideas on a workaround? Is it possible to make it check any other site? Thank you!', type: 'message', }, - id: '83346', + _id: '83346', }, { attributes: { @@ -16130,7 +16130,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi Bob!\nDoes this url resolve in your regular web browser: <http://icanhazip.com> ?\nThat's how the app checks the internet connectivity state (amongst others).", type: 'message', }, - id: '83373', + _id: '83373', }, { attributes: { @@ -16140,7 +16140,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Is this the case when you're connected to an unrestricted network <@U9GE3TSFP>?", type: 'message', }, - id: '83374', + _id: '83374', }, { attributes: { @@ -16150,7 +16150,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi, i\'m trying to use the etl gui and am having some strange results. I\'ve added the Neo4j-Desktop package information from <https://neo4j-contrib.github.io/neo4j-etl/> to C:\\Users\\<user.name>\\AppData\\Roaming\\Neo4j Desktop\\Application\\graphApps.json which has correctly downloaded and unpacked into C:\\Users\\<user.name>\\AppData\\Roaming\\Neo4j Desktop\\Application\\graphApps\\neo4j-etl-ui and it now appears in the application section within neo4j desktop. the problem comes when I try to click on the "Add Application" tile that appears next to "Neo4j Browser" tile. It does nothing! - using the developer tools, it looks like it\'s linked to an emptyFunction(). (using Neo4jDesktop 1.0.18) - i have no idea how to fix this :-s', type: 'message', }, - id: '83396', + _id: '83396', }, { attributes: { @@ -16160,7 +16160,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I was told that the next release 1.0.19 will fix and issue with this, should come out today or so.', type: 'message', }, - id: '83398', + _id: '83398', }, { attributes: { @@ -16170,7 +16170,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'brilliant, thank you!', type: 'message', }, - id: '83399', + _id: '83399', }, { attributes: { @@ -16180,7 +16180,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'is it possible to set up an HA cluster in Neo4j desktop? I am trying to but failing after not being able to initiate a second/third instance ...', type: 'message', }, - id: '83449', + _id: '83449', }, { attributes: { @@ -16190,7 +16190,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'why not a causal cluster?\nyou can run only one db at a time in desktop\nit\'s better to do it outside and then create "remote" connection with bolt+routing to that instance', type: 'message', }, - id: '83439', + _id: '83439', }, { attributes: { @@ -16200,7 +16200,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@UFPUACS23> looks like Neo4j is trying to allocate operating system memory that doesn’t exist. How much RAM does your machine have, what are your memory settings, and what operation is provoking this?', type: 'message', }, - id: '84321', + _id: '84321', }, { attributes: { @@ -16210,7 +16210,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Any idea how to update the max direct memory quota ?', type: 'message', }, - id: '84319', + _id: '84319', }, { attributes: { @@ -16220,7 +16220,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U6Z6EE9AM> Have you tried upgrading to latest in your test environment? maybe enable pre-voting in 3.2.x, see <https://github.com/neo4j/neo4j/wiki/Neo4j-3.2-changelog#causal-clustering>', type: 'message', }, - id: '85390', + _id: '85390', }, { attributes: { @@ -16230,7 +16230,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi <@U0ZUW5ZSB> \nWe use the apache aurora mesos framework to deploy our Neo4j CC cluster, we deploy 3 docker components instances.\n At the time of these leader elections we are not seeing any changes in the mesos agents. When the docker components are stopped/restarted by mesos for any reason we can see this in the aurora console and in our logs.', type: 'message', }, - id: '85351', + _id: '85351', }, { attributes: { @@ -16240,7 +16240,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Can you see in the task logs or the aurora logs if Neo4j inside docker decides to stop (and is therefore restarted) or if aurora decides to stop the task?', type: 'message', }, - id: '85352', + _id: '85352', }, { attributes: { @@ -16250,7 +16250,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U0ZUW5ZSB> \nThanks Johannes for your suggestion.\nMesos does not appear to be killing the process.\nOur last deployment on Prod was 13/2 and all nodes are up.\nThe stdout logs from docker don't show any problems with the Neo4j process like out of memory etc.\nIn the Neo4j debug logs I am seeing the below log occurring quite a bit.\nWe are I guess using the default setting for 'causal_clustering.leader_election_timeout' is 7s.\nMaybe it's some latency problem with the raft protocol in our network.\nI wonder is there anything in the Neo4j debug that might indicate the problem?\n\n./0/2018-02-13T175923/debug.log.1:2018-02-22 07:19:33.255+0000 INFO [o.n.c.c.c.RaftMachine] Election timeout triggered\n./0/2018-02-13T175923/debug.log.1:2018-02-23 06:12:16.612+0000 INFO [o.n.c.c.c.RaftMachine] Election timeout triggered\n./0/2018-02-13T175923/debug.log.1:2018-02-23 06:15:52.860+0000 INFO [o.n.c.c.c.RaftMachine] Election timeout triggered\n./0/2018-02-13T175923/debug.log.1:2018-02-24 17:57:41.340+0000 INFO [o.n.c.c.c.RaftMachine] Election timeout triggered\n./0/2018-02-13T175923/debug.log.1:2018-02-24 22:54:15.380+0000 INFO [o.n.c.c.c.RaftMachine] Election timeout triggered\n etc", type: 'message', }, - id: '85353', + _id: '85353', }, { attributes: { @@ -16260,7 +16260,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi...I am trying to bring a 3 member cluster on Linux....2 of them were trying to sync with the first one for 8-9 hours....when I try to stop Neo4j on those 2 I get the message 'Neo4j (pid 18823) took more than 120 seconds to stop.'....", type: 'message', }, - id: '85380', + _id: '85380', }, { attributes: { @@ -16270,7 +16270,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'can you share your logs?', type: 'message', }, - id: '85368', + _id: '85368', }, { attributes: { @@ -16280,7 +16280,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '>>> isnt this a matter of $NEO4J_HOME/run/neo4j.pid exists and contains the reference to 18823 but yet the mistmacth is this process doesnt exist\n\nif the process doesnt exist, rm the neo4j.pid and try again', type: 'message', }, - id: '85369', + _id: '85369', }, { attributes: { @@ -16290,7 +16290,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'How do you deploy your CC cluster in mesos? Do you see the related mesos agent disappear at the same time you recognize a leader election?', type: 'message', }, - id: '85378', + _id: '85378', }, { attributes: { @@ -16300,7 +16300,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Thanks <@U08JH64PM>. We haven't moved to 3.2.x yet but are planning to do that. So it tackles the problems of unnecessary leader elections which is possibly what we are seeing.", type: 'message', }, - id: '85391', + _id: '85391', }, { attributes: { @@ -16310,7 +16310,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U79C041TJ> as far as I can tell the kubernetes model is not to expose the pods to external connections but to do it via a service. If you’re using Neo4j drivers `bolt+routing` then that doesn’t work either as it needs to be able to contact servers individually. If you deploy an application inside Kubernetes then it will be able to contact all the pods', type: 'message', }, - id: '85860', + _id: '85860', }, { attributes: { @@ -16320,7 +16320,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'would it make sense to deploy browser as a helm app too, but pointing to the cluster so that you can access it from the outside via port 80 or 443?', type: 'message', }, - id: '85799', + _id: '85799', }, { attributes: { @@ -16330,7 +16330,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U0E7MMYAW> Is CC and HA only available for EE versions of Neo4j? Are there any plans to make it available to CE?', type: 'message', }, - id: '87176', + _id: '87176', }, { attributes: { @@ -16340,7 +16340,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'm_chaffe: It’s EE only. There are many cases when you can use EE for free, though, (research, not-for-profit, startup, etc) so you should check if you qualify for that. <https://neo4j.com/licensing/>', type: 'message', }, - id: '87177', + _id: '87177', }, { attributes: { @@ -16350,7 +16350,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'We are a start-up and are running on less than 10 employees so that could work! Great! \n\nDo you have to just fill in the online form? Is there a way to upgrade an CE setup to EE? \n\nAlso for a CC setup is it best to load balance it or to put multiple addresses in the client driver?', type: 'message', }, - id: '87178', + _id: '87178', }, { attributes: { @@ -16360,7 +16360,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks <@U0E7MMYAW> !', type: 'message', }, - id: '87179', + _id: '87179', }, { attributes: { @@ -16370,7 +16370,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Reach out to <@U08JMSTGW> for a chat about startup program', type: 'message', }, - id: '87180', + _id: '87180', }, { attributes: { @@ -16380,7 +16380,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'CE => EE should be fine, but you may not be able to go back because of differences in the store format', type: 'message', }, - id: '87181', + _id: '87181', }, { attributes: { @@ -16390,7 +16390,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'You can seed a CC cluster with your CE db: <http://neo4j.com/docs/operations-manual/3.1/clustering/causal-clustering/seed-cluster/>', type: 'message', }, - id: '87182', + _id: '87182', }, { attributes: { @@ -16400,7 +16400,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Use a supported language driver and the load balancing there unless you have some particular requirements not provided for (make sure you let us know what those are if that’s the case). You don’t need multiple URIs for load balancing, the URI provided is for initial discovery, the driver will then discover the cluster topology and maintain a routing table. You can still use multiple URIs if you are concerned that the initial connection and discovery may fail.', type: 'message', }, - id: '87183', + _id: '87183', }, { attributes: { @@ -16410,7 +16410,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks again, I am currently using the neo4j javascript driver, so with that would I reference all of the cluster members or just one of them and then it will discover the others?', type: 'message', }, - id: '87184', + _id: '87184', }, { attributes: { @@ -16420,7 +16420,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Pointing it to a single Core server is enough (Read replicas are not able to provide the cluster topology)', type: 'message', }, - id: '87185', + _id: '87185', }, { attributes: { @@ -16430,7 +16430,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I don’t think it’s possible to pass multiple `bolt+routing` URIs to the driver at the moment but you can loop through a list of URIs until you connect successfully, there should be an example in the developer manual. (I’m sure the driver will handle that for you soon, but as I recall that is not in v.1.1 of the drivers)', type: 'message', }, - id: '87186', + _id: '87186', }, { attributes: { @@ -16440,7 +16440,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Ok great thanks for the information. When I get a chance to chat this over at work I talk them through this and in the mean time try to speak to Kevin to find out if we are eligible.', type: 'message', }, - id: '87187', + _id: '87187', }, { attributes: { @@ -16450,7 +16450,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi <@U9XHW1S6S>, the next release of Neo4j Bloom (due imminently) has a server side option so you can give people direct access to Bloom through their browser (rather than going through Desktop as you do now), this can work well with 'deep links' that allow you to pre-populate the search box of Bloom .. but, it depends on what kind of integration you were imagining as that doesn't work in quite the same was as neovis.jz where you are directly embedding the visualization", type: 'message', }, - id: '88682', + _id: '88682', }, { attributes: { @@ -16461,7 +16461,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi <@UF057V96X>, you'll need a trial license for it - PM me and i can put you in contact with the right person to talk to or alternatively you can use the form here: <https://neo4j.com/bloom/>", type: 'message', }, - id: '88676', + _id: '88676', }, { attributes: { @@ -16471,7 +16471,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Is the server side/browser option available now that Bloom 1.1 is out? If so, how do I enable it on the server?', type: 'message', }, - id: '88679', + _id: '88679', }, { attributes: { @@ -16481,7 +16481,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'ive been running into trouble where a large query will crash my Neo4j server, and then I have to ssh into the ec2 instance to start the server again. is there a way to make it restart automatically if it crashes? also, why does a big query make it crash, and neo4j doesn’t just ignore it or “fail†the query?', type: 'message', }, - id: '89151', + _id: '89151', }, { attributes: { @@ -16491,7 +16491,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'it would be good if you can share the query you are running.', type: 'message', }, - id: '89150', + _id: '89150', }, { attributes: { @@ -16501,7 +16501,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Is there someone I can talk to regarding Neo4j licensing for cloud hosting providers? Or should I get in touch through one of the email addresses listed on the website?', type: 'message', }, - id: '89360', + _id: '89360', }, { attributes: { @@ -16511,7 +16511,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks, <@U08J18KHB>. Connected.', type: 'message', }, - id: '89358', + _id: '89358', }, { attributes: { @@ -16521,7 +16521,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "To clarify my question, I'm not looking for a hosting provider. I'm trying to explore the possible licensing options/agreements between Neo4j and a hosting provider.", type: 'message', }, - id: '89361', + _id: '89361', }, { attributes: { @@ -16531,7 +16531,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'both the contact info, but you can also talk to <@U7AHFNAA0>', type: 'message', }, - id: '89362', + _id: '89362', }, { attributes: { @@ -16541,7 +16541,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "we need to create fulltext index for 32 Million Nodes , for that we tried using Apoc fulltext search but it's been 40 minutes and still the indexes did not get constructed, our RAM is 56gb so is this enough or should we use any other elastic search with Neo4j ? We are using CALL apoc.index.addAllNodes procedure. Please advise", type: 'message', }, - id: '90837', + _id: '90837', }, { attributes: { @@ -16551,7 +16551,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'it should batch it in the background', type: 'message', }, - id: '90845', + _id: '90845', }, { attributes: { @@ -16561,7 +16561,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'it will take a while to write all the data, what kind of disk do you have?', type: 'message', }, - id: '90846', + _id: '90846', }, { attributes: { @@ -16571,7 +16571,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Meetup Neo4j à Lyon le mardi 26 Février : <https://www.meetup.com/fr-FR/graphdb-Lyon/events/247504636/>', type: 'message', }, - id: '97764', + _id: '97764', }, { attributes: { @@ -16581,7 +16581,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Alors autour d'une bière un soir de semaine !", type: 'message', }, - id: '97759', + _id: '97759', }, { attributes: { @@ -16591,7 +16591,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Bien-sûr ! Il ne faut jamais désespérer :slightly_smiling_face: Tu es sur Lyon ?', type: 'message', }, - id: '97761', + _id: '97761', }, { attributes: { @@ -16601,7 +16601,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Pas les mardi justement! :confused:', type: 'message', }, - id: '97762', + _id: '97762', }, { attributes: { @@ -16611,7 +16611,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'un jour on arrivera à se rencontrer...!', type: 'message', }, - id: '97763', + _id: '97763', }, { attributes: { @@ -16621,7 +16621,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Harmony Legal (<http://harmonylegal.com|harmonylegal.com>) is a startup in Sacramento, CA. We are looking for a Neo4j/Nodejs person for query tuning and dev ops. Send a message to <mailto:hello@harmonylegal.com|hello@harmonylegal.com>', type: 'message', }, - id: '98294', + _id: '98294', }, { attributes: { @@ -16631,7 +16631,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Not even close :) Hungary :)', type: 'message', }, - id: '98291', + _id: '98291', }, { attributes: { @@ -16641,7 +16641,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Preferably Local and part time. Are you in the area?', type: 'message', }, - id: '98292', + _id: '98292', }, { attributes: { @@ -16651,7 +16651,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Local/remote, full time/part time', type: 'message', }, - id: '98295', + _id: '98295', }, { attributes: { @@ -16661,7 +16661,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '?', type: 'message', }, - id: '98296', + _id: '98296', }, { attributes: { @@ -16671,7 +16671,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hello everyone ! I'm from France and I recently joined an ongoing fraud's counter project based on Neo4j ! I'm happy this community exists for the useful help I already received from it :blush: Glad to join y'all !", type: 'message', }, - id: '99304', + _id: '99304', }, { attributes: { @@ -16681,7 +16681,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Bonjour et bienvenue!', type: 'message', }, - id: '99131', + _id: '99131', }, { attributes: { @@ -16691,7 +16691,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hello everyone I'm Siraj Munir from Karachi City, Pakistan. By profession I'm data scientist and lecturer. Plus I'm graphDB lover I have been using graphs for different purposes like profiling citizens, Network Analysis etc. This year I have plan to introduce GraphDB specially Neo4j to my graduate students.", type: 'message', }, - id: '99162', + _id: '99162', }, { attributes: { @@ -16701,7 +16701,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome', type: 'message', }, - id: '99150', + _id: '99150', }, { attributes: { @@ -16711,7 +16711,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome <@UTA4JA5CK>', type: 'message', }, - id: '99154', + _id: '99154', }, { attributes: { @@ -16721,7 +16721,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome', type: 'message', }, - id: '99165', + _id: '99165', }, { attributes: { @@ -16731,7 +16731,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'You re very welcome! <@UEZ72JWN9> :slightly_smiling_face:', type: 'message', }, - id: '99167', + _id: '99167', }, { attributes: { @@ -16741,7 +16741,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello there… Neo4j certified, IAM consultant. We use Graphs for Digital Identity and a variety of use-cases…', type: 'message', }, - id: '99555', + _id: '99555', }, { attributes: { @@ -16751,7 +16751,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome Alex rgds', type: 'message', }, - id: '99543', + _id: '99543', }, { attributes: { @@ -16761,7 +16761,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks :slightly_smiling_face:', type: 'message', }, - id: '99548', + _id: '99548', }, { attributes: { @@ -16771,7 +16771,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "hi guys, I am Antonio . I've started studying Neo4j. I am planning to use this tool to build an analytic projects . I hope to learn it soon :slightly_smiling_face:", type: 'message', }, - id: '99623', + _id: '99623', }, { attributes: { @@ -16781,7 +16781,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome', type: 'message', }, - id: '99609', + _id: '99609', }, { attributes: { @@ -16791,7 +16791,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi, I'm Thomas, I work on various things as a developer. Just beginning with Neo4j (what an amazing piece of tech!).", type: 'message', }, - id: '99690', + _id: '99690', }, { attributes: { @@ -16801,7 +16801,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome to Neo4j!', type: 'message', }, - id: '99691', + _id: '99691', }, { attributes: { @@ -16811,7 +16811,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello World! Glad to find this community. I am a Neo4j enthusiast for years, primarily used for pet projects. Working on a new product, we are leaning towards Neo4j as one of the primary data stores. Looking to explore/discuss things like localization of property values and time versioning.', type: 'message', }, - id: '99864', + _id: '99864', }, { attributes: { @@ -16821,7 +16821,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'thanks <@U08J18KHB> going to check that out now -- I saw her slides only.', type: 'message', }, - id: '99825', + _id: '99825', }, { attributes: { @@ -16831,7 +16831,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome William. Good luck with the project!', type: 'message', }, - id: '99839', + _id: '99839', }, { attributes: { @@ -16841,7 +16841,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "See <@UC7KXLGJU>'s talk at NODES for some ideas there.", type: 'message', }, - id: '99840', + _id: '99840', }, { attributes: { @@ -16851,7 +16851,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello! I work as a dev lead in Rakuten at Osaka (Japan). I have been playing around Neo4j for a few months.', type: 'message', }, - id: '100196', + _id: '100196', }, { attributes: { @@ -16861,7 +16861,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@UKTCT84M8> Thank you!', type: 'message', }, - id: '100039', + _id: '100039', }, { attributes: { @@ -16871,7 +16871,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi I am Vasily, I am a Neo4j newbie and going to change it soon :slightly_smiling_face:', type: 'message', }, - id: '100241', + _id: '100241', }, { attributes: { @@ -16881,7 +16881,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome, Vasily!', type: 'message', }, - id: '100048', + _id: '100048', }, { attributes: { @@ -16891,7 +16891,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome, Jimmy!', type: 'message', }, - id: '100055', + _id: '100055', }, { attributes: { @@ -16901,7 +16901,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi! I am Martin Folke Emdal. I am a backend dev for a sportsdata company that uses Neo4j to store some of its sport event data.', type: 'message', }, - id: '100177', + _id: '100177', }, { attributes: { @@ -16911,7 +16911,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome, Martin!', type: 'message', }, - id: '100056', + _id: '100056', }, { attributes: { @@ -16921,7 +16921,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi, I am Rishabh, Certified as Neo4j Professional Developer', type: 'message', }, - id: '100145', + _id: '100145', }, { attributes: { @@ -16931,7 +16931,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome, Rishabh!', type: 'message', }, - id: '100058', + _id: '100058', }, { attributes: { @@ -16941,7 +16941,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08J18KHB> Hi, I am following the graph algorithm training and so far I have been playing with the overlap and the pearson similarity algorithms. However, when I look at their documentation, it seems that both are "experimental and not officially supported".\n\n<https://neo4j.com/docs/graph-algorithms/current/experimental-algorithms/overlap/>\n<https://neo4j.com/docs/graph-algorithms/current/experimental-algorithms/pearson/>\n\nI wonder why using those algorithms in the training?', type: 'message', }, - id: '100126', + _id: '100126', }, { attributes: { @@ -16951,7 +16951,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Because they are still part of the library and offering', type: 'message', }, - id: '100128', + _id: '100128', }, { attributes: { @@ -16961,7 +16961,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'So useful to our users.', type: 'message', }, - id: '100129', + _id: '100129', }, { attributes: { @@ -16971,7 +16971,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Nice, did you know that the germany olympic organization used that approach a while ago? But then they had internal political turmoil and shelved the breitensport project.', type: 'message', }, - id: '100156', + _id: '100156', }, { attributes: { @@ -16981,7 +16981,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'see <https://neo4j.com/?s=dosb>', type: 'message', }, - id: '100157', + _id: '100157', }, { attributes: { @@ -16991,7 +16991,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Great! Let us know how it goes and if you have feedback for either.', type: 'message', }, - id: '100171', + _id: '100171', }, { attributes: { @@ -17001,7 +17001,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Welcome Jimmy, hope you're having fun. Let us know if you want to know something.", type: 'message', }, - id: '100199', + _id: '100199', }, { attributes: { @@ -17011,7 +17011,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08J18KHB> Thank you! I plan to read the Graph Algorithms book and I enrolled for the online training as well, really looking forward to it!', type: 'message', }, - id: '100200', + _id: '100200', }, { attributes: { @@ -17021,7 +17021,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi I am Cristian. I work for Providence and we started a new project with Neo4j', type: 'message', }, - id: '100342', + _id: '100342', }, { attributes: { @@ -17031,7 +17031,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome, Cristian!', type: 'message', }, - id: '100258', + _id: '100258', }, { attributes: { @@ -17041,7 +17041,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi, I am Md Nazmul Islam. I am working in Software Development sector about 6 Years. Using Neo4j about 3 years.', type: 'message', }, - id: '100375', + _id: '100375', }, { attributes: { @@ -17051,7 +17051,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome, Nazmul!', type: 'message', }, - id: '100261', + _id: '100261', }, { attributes: { @@ -17061,7 +17061,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello! I’m Christian Martin from Norway :slightly_smiling_face: I work in a small company that delivers communication systems to schools and kindergartens :slightly_smiling_face: Neo4j looks awesome and I’m looking forward to try it out! I’m a polyglot programmer that works on both side (front and back). I will be testing out the GRAND-stack for now, and I have already made my first pull-request to the neo4j-graphql project to implement multi-tenant by labels (that I hope someone will accept soon)', type: 'message', }, - id: '100415', + _id: '100415', }, { attributes: { @@ -17071,7 +17071,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks!', type: 'message', }, - id: '100371', + _id: '100371', }, { attributes: { @@ -17081,7 +17081,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Christian, if you haven't done already you should also join the community page: <https://community.neo4j.com/>", type: 'message', }, - id: '100385', + _id: '100385', }, { attributes: { @@ -17091,7 +17091,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi Christian! Welcome! Man, are you in for a treat. Neo4j has a little bit of a learning curve but once you really understand, it is world changing. You are really going to love it!\n\nI am very curious about what you mean by "multi-tenant by labels." Could you please explain this in more detail?', type: 'message', }, - id: '100419', + _id: '100419', }, { attributes: { @@ -17101,7 +17101,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'This thread should explain it: <https://github.com/neo4j-graphql/neo4j-graphql-js/issues/237>', type: 'message', }, - id: '100420', + _id: '100420', }, { attributes: { @@ -17111,7 +17111,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks looking forward to learn more about neo4j. It looks very promising!', type: 'message', }, - id: '100421', + _id: '100421', }, { attributes: { @@ -17121,7 +17121,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Just as a heads up, we're going to be delivering richer multi-tenancy solutions with Neo4j 4.0 around the end of the year!", type: 'message', }, - id: '100422', + _id: '100422', }, { attributes: { @@ -17131,7 +17131,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I know, and I read somewhere that it should not be any problem to migrate (to new version of neo4j) if you use additional labels to solve multi-tenancy.', type: 'message', }, - id: '100423', + _id: '100423', }, { attributes: { @@ -17141,7 +17141,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U3RJEUY2Z> Do you know approximately when 4.0 is coming?', type: 'message', }, - id: '100424', + _id: '100424', }, { attributes: { @@ -17151,7 +17151,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "End of the year is the current fuzzy answer, we'll put out something more specific in official announcements as we start closing in", type: 'message', }, - id: '100425', + _id: '100425', }, { attributes: { @@ -17161,7 +17161,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks! Are there any roadmap page which describes all the new features that are coming?', type: 'message', }, - id: '100426', + _id: '100426', }, { attributes: { @@ -17171,7 +17171,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "We don't have much in the way of official announcements yet, though we've disclosed that multi-database is one of the primary new features.\n\nI don't want to get ahead of official announcements at this point.", type: 'message', }, - id: '100427', + _id: '100427', }, { attributes: { @@ -17181,7 +17181,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Ok thanks for the update! :pray: I'm looking forward to use neo4j in our next project! ", type: 'message', }, - id: '100428', + _id: '100428', }, { attributes: { @@ -17191,7 +17191,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'What I really like about neo4j, besides the product, is that it has an awesome community which are willing to help us noobs :slightly_smiling_face:', type: 'message', }, - id: '100429', + _id: '100429', }, { attributes: { @@ -17201,7 +17201,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hey guys my name is Saj, I’m the CTO of Laylo. We use graph technology to identify every music artist’s “super†fans and build tools to grow and monetize their fan base. We’ve been using Neo4j for 2 years now and just raised 1.5M to expand the team. If you’re a Neo4j dev in the Los Angeles area or willing to move, I’d love to chat!!', type: 'message', }, - id: '100579', + _id: '100579', }, { attributes: { @@ -17211,7 +17211,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thank you! Let me know if you’re interested in working with us!', type: 'message', }, - id: '100533', + _id: '100533', }, { attributes: { @@ -17221,7 +17221,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Cool company, success', type: 'message', }, - id: '100542', + _id: '100542', }, { attributes: { @@ -17231,7 +17231,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hello Everyone, I'm here to learn all I can on Neo4j and pass on knowledge whenever I can. I have enjoyed working with Neo4j, it's awesome. :sunglasses:", type: 'message', }, - id: '100646', + _id: '100646', }, { attributes: { @@ -17241,7 +17241,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi, I'm curious on what problem you solved with Neo :slightly_smiling_face:", type: 'message', }, - id: '100632', + _id: '100632', }, { attributes: { @@ -17251,7 +17251,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Well, It's not fully solved as I am building out a product right now using Neo4j. :grin:", type: 'message', }, - id: '100634', + _id: '100634', }, { attributes: { @@ -17261,7 +17261,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'learning as I go', type: 'message', }, - id: '100635', + _id: '100635', }, { attributes: { @@ -17271,7 +17271,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'It has been awesome to work with so far.', type: 'message', }, - id: '100636', + _id: '100636', }, { attributes: { @@ -17281,7 +17281,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'This is David. I just started working on Neo4j where I need to deal with huge amount of data and need to find all possible paths for given Source and Destination', type: 'message', }, - id: '100816', + _id: '100816', }, { attributes: { @@ -17291,7 +17291,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Cypher is designed for this sort of query. You may want to use `cypher-shell` though for streaming a large result set, as the Neo4j Browser can run into issues for containing and rendering a large result set.', type: 'message', }, - id: '100824', + _id: '100824', }, { attributes: { @@ -17301,7 +17301,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<https://neo4j.com/docs/operations-manual/current/tools/cypher-shell/>', type: 'message', }, - id: '100825', + _id: '100825', }, { attributes: { @@ -17311,7 +17311,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Also make sure your matches to your source and destination are indexed.', type: 'message', }, - id: '100826', + _id: '100826', }, { attributes: { @@ -17321,7 +17321,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I’m Jendrik of TokenAnalyst (<https://www.tokenanalyst.io/>), my colleague Cesar will talk about how we use Neo4j to load the Bitcoin blockchain in one day. Free webinar starting in 5 minutes: <https://www.meetup.com/Neo4j-Online-Meetup/events/259469439/>', type: 'message', }, - id: '101021', + _id: '101021', }, { attributes: { @@ -17331,7 +17331,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'We just launched a feature build on Neo4j <https://twitter.com/thetokenanalyst/status/1114211142996496384>', type: 'message', }, - id: '101013', + _id: '101013', }, { attributes: { @@ -17341,7 +17341,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi, I am a newly certified Neo4j Professional looking for opportunities to apply my new "graph" mindset. (I see nodes and arrows when I close my eyes, now!)', type: 'message', }, - id: '101114', + _id: '101114', }, { attributes: { @@ -17351,7 +17351,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Good Luck!!', type: 'message', }, - id: '101097', + _id: '101097', }, { attributes: { @@ -17361,7 +17361,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thank you!', type: 'message', }, - id: '101098', + _id: '101098', }, { attributes: { @@ -17371,7 +17371,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Stella did you look at the job postings from Neo?\n<http://neo4j.com/careers|neo4j.com/careers>', type: 'message', }, - id: '101105', + _id: '101105', }, { attributes: { @@ -17381,7 +17381,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'What were you looking for?\nThe certification can be done when you took the online classes. I guess with the things you did already set you up well.', type: 'message', }, - id: '101106', + _id: '101106', }, { attributes: { @@ -17391,7 +17391,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Thanks, Michael. I only saw two positions that could be located anywhere in the U.S., and I don't have enough (recent) development experience for the Consulting Engineer position, so I went ahead and applied to the PM position (what I have been doing for the past 15 years), but I would like to get more hands-on modeling the data and writing Cypher, eventually!", type: 'message', }, - id: '101110', + _id: '101110', }, { attributes: { @@ -17401,7 +17401,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I took the Intro, Graph Data Modeling, and Advanced Cypher Queries classes led by <@U08JH64PM> a couple of weeks ago, and reviewed by reading the two free ebooks available for download from neo4j, but I was stumped by the questions on the latest features on my first attempt since I misunderstood the "Developing with Neo4j" certification topic as "developing with Java", so you may want to familiarize yourself with the latest version of Neo4j desktop and browser before attempting the certification, since the books are a little outdated...', type: 'message', }, - id: '101115', + _id: '101115', }, { attributes: { @@ -17411,7 +17411,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi all, I'm software developper and db admin @ INRA (the french research institute for agriculture) and I'm already working with several databases & related (Postgresql, Elastisearch...). I've played with Neo4j six years ago and missed the occasion to go further with it. Now I can give it a new try with scientific data from plant related domain (genetics, genomics, phenomics, etc.). See you!", type: 'message', }, - id: '101204', + _id: '101204', }, { attributes: { @@ -17421,7 +17421,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Thanks for these resources Michael, I'll take a look carefully!", type: 'message', }, - id: '101135', + _id: '101135', }, { attributes: { @@ -17431,7 +17431,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'check out the information here:\n<https://neo4j.com/blog/neo4j-life-sciences-healthcare-workshop-berlin/>\n<https://neo4j.com/developer/life-sciences-and-healthcare/>\n<https://neo4j.com/blog/navigating-heart-failure-map-with-neo4j/>', type: 'message', }, - id: '101153', + _id: '101153', }, { attributes: { @@ -17441,7 +17441,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Does anyone know if there are there any Neo4j or graph database meetup groups in the PNW (Washington, Oregon, Idaho, etc)?', type: 'message', }, - id: '101205', + _id: '101205', }, { attributes: { @@ -17451,7 +17451,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I think there is one in PDX and one in Seattle too', type: 'message', }, - id: '101154', + _id: '101154', }, { attributes: { @@ -17461,7 +17461,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi there just attending the “Training Graph Data Modelling with Neo4j†in Berlin!', type: 'message', }, - id: '101174', + _id: '101174', }, { attributes: { @@ -17471,7 +17471,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'hope you enjoyed it :)', type: 'message', }, - id: '101156', + _id: '101156', }, { attributes: { @@ -17481,7 +17481,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi, I just finished all the podcasts from Rik, look there or check out the location based community topics in the Neo4j forum Karin wolok can help you with that, or go up to the <http://meetup.com|meetup.com> and look for Neo4j or graph database meetups in the area', type: 'message', }, - id: '101198', + _id: '101198', }, { attributes: { @@ -17491,7 +17491,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hey guys. Nice to meet ya'll. Grad student in Data Science here. Excited to learn about Neo4j and Graph DB's!", type: 'message', }, - id: '101278', + _id: '101278', }, { attributes: { @@ -17501,7 +17501,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome man. Pleasure to have you here. ', type: 'message', }, - id: '101283', + _id: '101283', }, { attributes: { @@ -17511,7 +17511,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi guys! My names Zachary and I'm a developer working in Canada. I'm using exploring using Neo4j to build a skill based dependency program!", type: 'message', }, - id: '101675', + _id: '101675', }, { attributes: { @@ -17521,7 +17521,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi Zachary, I'm in Canada too :slightly_smiling_face: Welcome", type: 'message', }, - id: '101663', + _id: '101663', }, { attributes: { @@ -17531,7 +17531,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I'm Natasha Hurwitz and I work at the National Institutes of Health in Bethesda, Maryland as a data scientist solving management challenges. Neo4j has helped me visualize relationships in our organization using Human Resources data. I mostly code in R, and I am thinking through how I can use Neo4j to provide a new level of understanding for our data.", type: 'message', }, - id: '101682', + _id: '101682', }, { attributes: { @@ -17541,7 +17541,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Yes, I am happy to hear that. Thank you!', type: 'message', }, - id: '101664', + _id: '101664', }, { attributes: { @@ -17551,7 +17551,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome Natasha, then you might be happy to hear that <@U9CCX8Q4V> is working on a new R driver in <http://github.com/neo4j-rstats|github.com/neo4j-rstats>, will be on CRAN soon', type: 'message', }, - id: '101671', + _id: '101671', }, { attributes: { @@ -17561,7 +17561,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello, newbie here to Neo4j, would like to learn about it more.', type: 'message', }, - id: '101761', + _id: '101761', }, { attributes: { @@ -17571,7 +17571,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome!!', type: 'message', }, - id: '101758', + _id: '101758', }, { attributes: { @@ -17581,7 +17581,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi There! This is Preethi Suriamoorthy . I am a Senior DBA at TEP Barnett. We are trying to build a Graph Data Model POC using Neo4j.', type: 'message', }, - id: '102608', + _id: '102608', }, { attributes: { @@ -17591,7 +17591,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Welcome! Good luck with the POC', type: 'message', }, - id: '102541', + _id: '102541', }, { attributes: { @@ -17601,7 +17601,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi all, I am Abhishek. I am new to Graph Databases and Neo4j. I am trying to get Graphileon's InterActor to work with my local neo4j data stores but I am unable to connect. I am aware it is not a direct Neo4j question but if anyone has used this? Or any other tool to be able to quickly edit nodes, relationships or their properties graphically? Writing Cypher each time in the browser for the tiniest of changes gets tiresome.", type: 'message', }, - id: '102813', + _id: '102813', }, { attributes: { @@ -17611,7 +17611,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Thanks Michael, I have written to the Graphileon team but am yet to hear from them.\nI am able to edit using Bloom and it's good enough for now as I am only creating basic models and learning. Also, the query template is pretty useful so thanks for that!", type: 'message', }, - id: '102757', + _id: '102757', }, { attributes: { @@ -17621,7 +17621,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'make sure to talk to <@U0CR081M1> about your feedback.', type: 'message', }, - id: '102769', + _id: '102769', }, { attributes: { @@ -17631,7 +17631,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'You can use Bloom for edits or check out <https://github.com/adadgio/neo4j-js-ng2>', type: 'message', }, - id: '102770', + _id: '102770', }, { attributes: { @@ -17641,7 +17641,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I also wrote a new query template: try `:play query-template` in your browser', type: 'message', }, - id: '102771', + _id: '102771', }, { attributes: { @@ -17651,7 +17651,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hello! I'm a former UN staffer, humanitarian relief worker and a big fan of Neo4j. I'm the organizer behind a new Humanitarian AI <http://meetup.com|meetup.com> group in Cambridge (<https://www.meetup.com/Humanitarian-AI-Meetup/>) with over 100 members. We're super interested in experimenting with databasing aid activity files using Neo4j and seeing if we can train algorithms how to generate Cypher queries to process the data in response to commands issued via Alexa or Siri for example.", type: 'message', }, - id: '102815', + _id: '102815', }, { attributes: { @@ -17661,7 +17661,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "you should definitely talk to <@U08J3F3L3> about the bot/alexa work he's been doing", type: 'message', }, - id: '102772', + _id: '102772', }, { attributes: { @@ -17671,7 +17671,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'there are a number of NGOs already using neo4j, e.g. Action Against Hunger <https://linkurio.us/blog/empowering-ngos-with-graph-technology/>\nData Kind, a lot of investigative journalists', type: 'message', }, - id: '102773', + _id: '102773', }, { attributes: { @@ -17681,7 +17681,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'you should also talk to <@U08LQ7WCW> who used to work in healthcare projects for developing countries before joining neo4j', type: 'message', }, - id: '102774', + _id: '102774', }, { attributes: { @@ -17691,7 +17691,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'feel free to ping me here or <mailto:christophe@graphaware.com|christophe@graphaware.com> ;)', type: 'message', }, - id: '102780', + _id: '102780', }, { attributes: { @@ -17701,7 +17701,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi! Is there any OSS integration between Penthao and Neo4j? I found a product from know-bi but I am wondering is there is a similar open source implementation.', type: 'message', }, - id: '103153', + _id: '103153', }, { attributes: { @@ -17711,7 +17711,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Please ping <@UA1LSSKSS> who recently joined neo4j.', type: 'message', }, - id: '103134', + _id: '103134', }, { attributes: { @@ -17721,7 +17721,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<https://www.know-bi.be/blog/article/easily-load-data-to-neo4j>', type: 'message', }, - id: '103154', + _id: '103154', }, { attributes: { @@ -17731,7 +17731,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'My name is Oliver and I work for Europace AG. We currently evaluating Neo4j as alternative for Oracle DB and Mongo DB. Our Partner repository is build up like a tree with several relations between the nodes. It looks like Neo4j is matching better for our data structure.', type: 'message', }, - id: '104432', + _id: '104432', }, { attributes: { @@ -17741,7 +17741,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U9BJQFY84> Let us know if you have any concrete questions also for data import or migration or modeling. If you can make it next week to Berlin, we're all there on Monday and Tuesday. <http://neo4j.com/graphtour|neo4j.com/graphtour>", type: 'message', }, - id: '104362', + _id: '104362', }, { attributes: { @@ -17751,7 +17751,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I’ll be on Tuesday on the graphtour.', type: 'message', }, - id: '104363', + _id: '104363', }, { attributes: { @@ -17761,7 +17761,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi, I was till date using Neo4j community edition and today I create HA cluster of 3 nodes. How can I migrate data from my community version single node DB to the new cluster?', type: 'message', }, - id: '104438', + _id: '104438', }, { attributes: { @@ -17771,7 +17771,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I further checked the size of the DB in both the cases. The community version shows 356 MB while the cluster one shows 112 KB in the browser.', type: 'message', }, - id: '104413', + _id: '104413', }, { attributes: { @@ -17781,7 +17781,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'best ask in <#C2M5H4RC0|neo4j-clustering> , basically shut down your db cleanly, copy the db directory to all 3 machines and start your cluster', type: 'message', }, - id: '104440', + _id: '104440', }, { attributes: { @@ -17791,7 +17791,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I tried that as well, but it did not work. My older machine has some 31k nodes while in new machine it says 0', type: 'message', }, - id: '104441', + _id: '104441', }, { attributes: { @@ -17801,7 +17801,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'did you copy the correct graph.db folder in the right location?', type: 'message', }, - id: '104442', + _id: '104442', }, { attributes: { @@ -17811,7 +17811,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I created a tar of my older graph.db and then scp it to my new machine. There in the data/datasets folder, I first deleted the graph.db using rm -rf and then untar the older tar file.', type: 'message', }, - id: '104443', + _id: '104443', }, { attributes: { @@ -17821,7 +17821,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I have also set the dbms.directories.data to point to the same location where I am doing untar', type: 'message', }, - id: '104444', + _id: '104444', }, { attributes: { @@ -17831,7 +17831,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'And for the sake of simplicity, I have changed the dbms.mode to SINGLE, so that once the data is available in one machine, I can switch back to cluster easily', type: 'message', }, - id: '104445', + _id: '104445', }, { attributes: { @@ -17841,7 +17841,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '`neo4j 3.2.5` and `Neo4j Graph Algorithms Release 3.3.0.0`', type: 'message', }, - id: '104724', + _id: '104724', }, { attributes: { @@ -17851,7 +17851,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'version conflict?', type: 'message', }, - id: '104626', + _id: '104626', }, { attributes: { @@ -17861,7 +17861,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi, Not sure if this is the right place to ask ... I'm trying to get Neo4j to run in Windows 10 but run into trouble getting the service to start (bin/neo4j.bat console) with admin permissions. The error seems to be one related to the user path: Invoke-Neo4j : An object at the specified path C:\\Users\\XXXX.USERNAME does not exist. where the username is not the same that I run under but a somewhat scrambled version of the name. Any ideas or comments would be very appreciated", type: 'message', }, - id: '104826', + _id: '104826', }, { attributes: { @@ -17871,7 +17871,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks Michael. Just saw your response! I tried this and still run into the problem at Invoke-Neo4jAdmin ... will change thread.', type: 'message', }, - id: '104798', + _id: '104798', }, { attributes: { @@ -17881,7 +17881,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks NirajS!', type: 'message', }, - id: '104799', + _id: '104799', }, { attributes: { @@ -17891,7 +17891,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I have used the neo4j service as a localhost with the following steps : Run powershell as admin\nImport-Module C:\\Neo4j\\bin\\Neo4j-Management.psd1\nInvoke-Neo4j status\nInvoke-Neo4jAdmin\nGet-Command -Module Neo4j-Management\nSet-ExecutionPolicy -ExecutionPolicy ByPass', type: 'message', }, - id: '104828', + _id: '104828', }, { attributes: { @@ -17901,7 +17901,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'from \\bin\nInvoke-Neo4j console', type: 'message', }, - id: '104829', + _id: '104829', }, { attributes: { @@ -17911,7 +17911,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'This should connect you to the graph in C:\\Neo4j\\data\\databases via localhost', type: 'message', }, - id: '104830', + _id: '104830', }, { attributes: { @@ -17921,7 +17921,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'best to ask in <#C08JAM3HB|help-install> or <#C6L0GCM33|neo4j-desktop> if you run neo4j-desktop', type: 'message', }, - id: '104837', + _id: '104837', }, { attributes: { @@ -17931,7 +17931,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello, I just joined the Neo4J slack. I am not sure if this is the right channel to ask this question, but here goes: I have three csv files (users, visits, text). Each is a new data set that we receive every 2-3 weeks from the data source. Every refresh might bring in the same set of columns or different. I want to create a node for each csv file, preferably using `py2neo`. But I want the query to be dynamic to read the csv column headers at runtime. Once I create nodes with each of the csvs, I want to be able to define relationship between the created nodes based on user_id and visit_id. Is this possible? I am using the community edition of Neo4j. Please let me know if you need more information from me. Thank you!', type: 'message', }, - id: '104835', + _id: '104835', }, { attributes: { @@ -17941,7 +17941,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'best ask in <#C08J15J3A|neo4j-python> \n\nbut in general loading csv is pretty straightforward and unrelated to python, there is also <#C08J1B9P0|help-import> , I answer there.', type: 'message', }, - id: '104838', + _id: '104838', }, { attributes: { @@ -17951,7 +17951,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "storage-wise, Neo4j can handle huge datasets w/ billions of nodes; it's usually the import part that requires some fiddling around. there are many ways to approach import (from GraphMLs through CSVs to custom loaders) and for big data sets, you'll need to come up with a solution that scales well", type: 'message', }, - id: '105436', + _id: '105436', }, { attributes: { @@ -17961,7 +17961,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks a lot for these notes, <@U09QAFDD3>', type: 'message', }, - id: '105440', + _id: '105440', }, { attributes: { @@ -17971,7 +17971,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I’m new to Neo4j and have a (presumably) straight forward modeling question. I’m hoping someone can link me to an appropriate analogous model. I am modeling vehicles. Makes have Models, Models have Options. Where I’m getting wrapped around the axle (haha) is how to represent years. Makes have Models in certain years, and Models have Options in certain years. Should years be nodes or embedded in relationships, e.g. Make: Nissan - [made_in[2009,2010,2011…]] - Model: GTR - [has_option_in[2009…]]- Option: Navigation', type: 'message', }, - id: '110904', + _id: '110904', }, { attributes: { @@ -17981,7 +17981,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U09GPF05R> Sorry for delay.. Slack didn’t notify me of your comments. Yes, when I say options I mean things like parking sensors, power steering, etc. So parking sensors could be available in a Fiat 500 in 2014, 2015 but not available in 2013, but available to a Honda Accord in 2010-2017. (I could up the anti even more with options must have vs may have, e.g. a 2016 Honda Accord must have power steering, may have a rear spoiler). It seems like you have to embed this meta data into the relationship..?', type: 'message', }, - id: '110820', + _id: '110820', }, { attributes: { @@ -17991,7 +17991,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'lawjolla: Personally I’d have a node for each year and create a `MADE_IN` relationship from the vehicle. This will make it easier to search.\n\n```MATCH (y:Year {year:2009})<-[:MADE_IN]-(v:Vehicle)\nRETURN y, v```', type: 'message', }, - id: '110905', + _id: '110905', }, { attributes: { @@ -18001,7 +18001,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks <@U09GPF05R> ! That approach makes sense to me too, but it seems to get sticky on Options. Options are available to certain makes with certain years. I don’t see how to use Year as a node for Options unless each Make has its own option nodes, e.g. Navigation for a Taurus is different from Navigation for a Sentra', type: 'message', }, - id: '110906', + _id: '110906', }, { attributes: { @@ -18011,7 +18011,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'When you say options do you mean things like parking sensors, bluetooth, power steering?', type: 'message', }, - id: '110907', + _id: '110907', }, { attributes: { @@ -18021,7 +18021,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Something that more than one manufacturer can have or Fiat 500, Panda etc?', type: 'message', }, - id: '110908', + _id: '110908', }, { attributes: { @@ -18031,7 +18031,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Have year-model nodes, and connect those to both as well as options.', type: 'message', }, - id: '110911', + _id: '110911', }, { attributes: { @@ -18041,7 +18041,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'A 1969 corvette and a 2017 corvette are totally different machines.', type: 'message', }, - id: '110912', + _id: '110912', }, { attributes: { @@ -18051,7 +18051,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'What is the best (most current, best set of features) python library for working with Neo4j. I originally added neo4j.v1 but I see there is a py2neo which I am assuming is version 2.0', type: 'message', }, - id: '119853', + _id: '119853', }, { attributes: { @@ -18061,7 +18061,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'those are two different libraries, one is the official driver\nthe other one that wraps the official one in a nicer API\nthe official one is at version 1.7 (the v1 relates to the protocol version)\npy2neo is at version 4', type: 'message', }, - id: '119856', + _id: '119856', }, { attributes: { @@ -18071,7 +18071,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi, I just downloaded and installed Neo4j Desktop and walked through the guided materials and tutorials integrated as mini-decks. Really cool. However, I also wanted to experiment with Neo4j Bloom. However, Bloom can't be added to Neo4j Desktop. The add Button is disabled. Adding Neo4j Browser worked like a charme. Any ideas. Using Desktop 1.1.8", type: 'message', }, - id: '119993', + _id: '119993', }, { attributes: { @@ -18081,7 +18081,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "It's only available via activation key for enterprise customers/prospects right now. that might change at some point ...", type: 'message', }, - id: '119962', + _id: '119962', }, { attributes: { @@ -18091,7 +18091,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi!, I am newbie in Neo4j. I did a script process using cypher which, first i loaded all indexes and second i loaded all data nodes. Is it correctly, creating index before to creating node?', type: 'message', }, - id: '120095', + _id: '120095', }, { attributes: { @@ -18101,7 +18101,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "If you use `MERGE` for data loading it's wise to have the index before. If you data load consists only of `CREATE` you don't have to care about.", type: 'message', }, - id: '120097', + _id: '120097', }, { attributes: { @@ -18111,7 +18111,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Neo4j is not JSON/document based?', type: 'message', }, - id: '120489', + _id: '120489', }, { attributes: { @@ -18121,7 +18121,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'That is right. But for example, we have some cypher/graphql that we execute to pull out graph data in Json format that we use to display stuff on UI.\nTo verify these queries it is easier to view output as json', type: 'message', }, - id: '120474', + _id: '120474', }, { attributes: { @@ -18131,7 +18131,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'For now, a reasonable workaround is to use the transaction endpoints which gives data back in json', type: 'message', }, - id: '120476', + _id: '120476', }, { attributes: { @@ -18141,7 +18141,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi <@U3RJEUY2Z> I am unable to install the apoc procedures. Initially when I clicked on the Plugins option it was showing me a message: Unable to detect the compatible version of apoc. Then I downloaded the Apoc 3.3.3 jar file as it was said to be the compatible apoc version for Neo4j3.3.5 Desktop. Now I am able to see the plugins but the install and restart button is greyed out and when i hover over it, it says offline.', type: 'message', }, - id: '120748', + _id: '120748', }, { attributes: { @@ -18151,7 +18151,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "it probably thinks you're in offline mode. so try to start desktop with a working online-connection.", type: 'message', }, - id: '120741', + _id: '120741', }, { attributes: { @@ -18161,7 +18161,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi.. Does anyone know how to host Neo4j Enterprise Edition on AWS?', type: 'message', }, - id: '120967', + _id: '120967', }, { attributes: { @@ -18171,7 +18171,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U5K5E6G78> new news! If you’re still around and still want an answer to this, please send me email at <mailto:david.allen@neo4j.com|david.allen@neo4j.com>, we can follow up with more details there. I have a method you might want to try', type: 'message', }, - id: '120959', + _id: '120959', }, { attributes: { @@ -18181,7 +18181,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thank You <@U08J18KHB> and <@U7X490V7X> \nI have deployed Neo4j Enterprise Edition on Aws. If I need some more help then surely I will drop mail to you <@U7X490V7X>.', type: 'message', }, - id: '120961', + _id: '120961', }, { attributes: { @@ -18191,7 +18191,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'you can either use docker or rpm/apt to install it on n-instances', type: 'message', }, - id: '120964', + _id: '120964', }, { attributes: { @@ -18201,7 +18201,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'there are some AWS AMIs that are available. Also what michael says is accurate, you can create a VM and install neo4j as usual. Right now, neo4j is working on creating a better set of defaults so that you will be able to use Amazon quicklaunch to start an enterprise node. Should be ready in some weeks.', type: 'message', }, - id: '120966', + _id: '120966', }, { attributes: { @@ -18211,7 +18211,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi, I'm new to Neo4j (obvi) and I keep getting this error `java.lang.IllegalStateException: Cannot call sendError() after the response has been committed` upon debugging I notice a self-referential node in my relationship and I'm not sure how to resolve it... please help. Will post code snippets below", type: 'message', }, - id: '121094', + _id: '121094', }, { attributes: { @@ -18221,7 +18221,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '```package test.graph.testgraph;\n\nimport org.neo4j.ogm.annotation.*;\n\n@NodeEntity\npublic class Nebula {\n @Id @GeneratedValue private Long id;\n @Relationship(type = "PROPERTY_OF", direction = Relationship.INCOMING)\n private NebulaProperties properties;\n\n public Long getId() {\n return id;\n }\n\n public void setId(Long id) {\n this.id = id;\n }\n\n public NebulaProperties getProperties() {\n return properties;\n }\n\n public void setProperties(NebulaProperties properties) {\n this.properties = properties;\n }\n}```', type: 'message', }, - id: '121095', + _id: '121095', }, { attributes: { @@ -18231,7 +18231,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '```package test.graph.testgraph;\n\nimport org.neo4j.ogm.annotation.GeneratedValue;\nimport org.neo4j.ogm.annotation.Id;\nimport org.neo4j.ogm.annotation.NodeEntity;\nimport org.neo4j.ogm.annotation.Relationship;\n\n@NodeEntity\npublic class NebulaProperties {\n @Id @GeneratedValue private Long id;\n private String name;\n\n @Relationship(type = "PROPERTY_OF")\n private PropertyOf propertyOfNebula;\n\n public Long getId() {\n return id;\n }\n\n public void setId(Long id) {\n this.id = id;\n }\n\n public String getName() {\n return name;\n }\n\n public void setName(String name) {\n this.name = name;\n }\n\n public PropertyOf getPropertyOfNebula() {\n return propertyOfNebula;\n }\n\n public void setPropertyOfNebula(PropertyOf propertyOfNebula) {\n this.propertyOfNebula = propertyOfNebula;\n }\n}\n```', type: 'message', }, - id: '121096', + _id: '121096', }, { attributes: { @@ -18241,7 +18241,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '```package test.graph.testgraph;\n\nimport org.neo4j.ogm.annotation.*;\n\n@RelationshipEntity(type = "PROPERTY_OF")\npublic class PropertyOf {\n @Id @GeneratedValue private Long id;\n @StartNode NebulaProperties properties;\n @EndNode Nebula nebula;\n\n public Long getId() {\n return id;\n }\n\n public void setId(Long id) {\n this.id = id;\n }\n\n public NebulaProperties getProperties() {\n return properties;\n }\n\n public void setProperties(NebulaProperties properties) {\n this.properties = properties;\n }\n\n public Nebula getNebula() {\n return nebula;\n }\n\n public void setNebula(Nebula nebula) {\n this.nebula = nebula;\n }\n}\n```', type: 'message', }, - id: '121097', + _id: '121097', }, { attributes: { @@ -18251,7 +18251,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'any help sorting out the proper way to relate properties to the nebula would be much appreciated :slightly_smiling_face:', type: 'message', }, - id: '121098', + _id: '121098', }, { attributes: { @@ -18261,7 +18261,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'But to answer your question, yes you can delete all the nodes and relationships you want IF you are using Neo4j Enterprise edition which will reuse the deleted objects. But if you are using Community Edition you will fragment your graph and have lots of empty space.', type: 'message', }, - id: '124093', + _id: '124093', }, { attributes: { @@ -18271,7 +18271,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello <@U08JH64PM>. Can you elaborate a little on the Community edition fragmentation? What causes this issue? NODE and REL deletions? Does a neo4j restart cause a defrag?', type: 'message', }, - id: '124035', + _id: '124035', }, { attributes: { @@ -18281,7 +18281,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'When a node gets deleted in Community, it gets a "Deleted" flag (bit gets flipped in record) and it is ignored, but it\'s still there. The space doesn\'t get reclaimed.', type: 'message', }, - id: '124036', + _id: '124036', }, { attributes: { @@ -18291,7 +18291,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Only way to defrag is to use Enterprise or use MH's tool", type: 'message', }, - id: '124037', + _id: '124037', }, { attributes: { @@ -18301,7 +18301,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Which full version of Neo4j are you using (3.4.x, where x is the patch version...what's that x)? This sounds like a bug that was previously fixed", type: 'message', }, - id: '132498', + _id: '132498', }, { attributes: { @@ -18311,7 +18311,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Looks like I am on 3.4.0 (no patch).\nIt would be great to know some details about the bug, like if it has any work around, in which patch did it get fixed and so on.\n\nIn the mean time, I will get started with the upgrade procedure. Since this will need downtime, I will have to plan it.', type: 'message', }, - id: '132500', + _id: '132500', }, { attributes: { @@ -18321,7 +18321,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Yeah definitely upgrade. In general, try not to stay on .0 releases for any longer than necessary, those are when new features are first introduced, and that usually correlates with more bugs than usual', type: 'message', }, - id: '132501', + _id: '132501', }, { attributes: { @@ -18331,7 +18331,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "We're up to 3.4.17 on the 3.4.x branch, at the very least upgrade to that, if you're not going to jump to 3.5.x.", type: 'message', }, - id: '132502', + _id: '132502', }, { attributes: { @@ -18341,7 +18341,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I believe the bug in question is related to COMPILED runtime (this is shown in your query plan). You can test if it's the case by prefixing your cypher query with: `CYPHER runtime=SLOTTED`. If you see expected behavior instead of buggy behavior, then it's the compiled runtime bug I'm thinking of", type: 'message', }, - id: '132503', + _id: '132503', }, { attributes: { @@ -18351,7 +18351,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'And if so that bug was fixed in version 3.4.5:\n<https://github.com/neo4j/neo4j/wiki/Neo4j-3.4-changelog#345>\n\n> Compiled `ExpandInto` respects relationship type', type: 'message', }, - id: '132504', + _id: '132504', }, { attributes: { @@ -18361,7 +18361,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks a lot for your responses <@U3RJEUY2Z> I will surely upgrade to 3.4.17 first and move to 3.5.x soon.\n\nWill also check the runtime=SLOTTED and see if that changes anything. Will report back.\n\nAppreciate all the help.', type: 'message', }, - id: '132506', + _id: '132506', }, { attributes: { @@ -18371,7 +18371,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "runtime=SLOTTED definitely works and I get correct result.\n\nHowever, I am still puzzled to see 'CartesianProduct' operation in the profile output for the query, whereas with rel2 I don't see cartesian product operation.\n\nAny idea why the planner would do this when I am querying for different relation types between the same two nodes?", type: 'message', }, - id: '132507', + _id: '132507', }, { attributes: { @@ -18381,7 +18381,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Cartesian product operations are not necessarily wrong, especially if you’re looking up two unique nodes. Please add the query again and the profile plan', type: 'message', }, - id: '132508', + _id: '132508', }, { attributes: { @@ -18391,7 +18391,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U9Z6GJ96E> or use Kettle which has Kafka and Neo4j connector ', type: 'message', }, - id: '132995', + _id: '132995', }, { attributes: { @@ -18401,7 +18401,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<https://neo4j.com/news/neo4j-data-integration-with-pentaho-kettle/>', type: 'message', }, - id: '132996', + _id: '132996', }, { attributes: { @@ -18411,7 +18411,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Is this are you referring', type: 'message', }, - id: '132997', + _id: '132997', }, { attributes: { @@ -18421,7 +18421,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I’ll find a better link for you', type: 'message', }, - id: '133003', + _id: '133003', }, { attributes: { @@ -18431,7 +18431,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U4YRHQA2Y> what version of Neo? presuming you are using neo4j-admin backup be sure to set environment variable HEAP_SIZE, for example export HEAP_SIZE=2G; bin/neo4j-admin backup .... ..... ...... As to how much to configure I think its a matter of how much RAM is left over after subtracting consumed RAM by the running Neo4j database process. If you have total RAM at 64G and your Neo4j database consumes 52G (i.e. though 12G assigned to HEAP and 40G assigned to pagecache) then backup could get at most the remaining 12G left over. Though I'd still leave 1-2G for general OS operations, and thus backup at most should be allocated no more than 10G. ./neo4j-admin backup will need to be configured with its own heap (i.e. environment variable HEAP_SIZE) and its own pagecache. depending on what version of Neo setting the pagecache for backup is different", type: 'message', }, - id: '133862', + _id: '133862', }, { attributes: { @@ -18441,7 +18441,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi <@U0DNS24SZ>!\n\nI am using the newest enterprise version (3.3.1 if I am not mistaken).\n\nI don’t have much memory left, that’s the main reason of my question. Since I have to run it on the same server, I am considering reducing the memory available for my database a bit to make sure I can run my backup.\n\nBut I am not sure on how to measure the page_cache or heap_size for the backup process.', type: 'message', }, - id: '133863', + _id: '133863', }, { attributes: { @@ -18451,7 +18451,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'for 3.2.9 / 3.3.1 pagecahce can be configured on cmd line through --pagecache=XXXX , thus bin/ne4j-admin backup --backup-dir=/tmp --name=graph.db --pagecache=1G ( <https://github.com/neo4j/neo4j/pull/10463> )', type: 'message', }, - id: '133864', + _id: '133864', }, { attributes: { @@ -18461,7 +18461,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'unfotunately i dont know how to measure whether would u configure is undersized/oversized. i think its a matter of trying it and being sure to not overconsume total RAM', type: 'message', }, - id: '133865', + _id: '133865', }, { attributes: { @@ -18471,7 +18471,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Yes, I was trying to avoid the trial and error approach.', type: 'message', }, - id: '133866', + _id: '133866', }, { attributes: { @@ -18481,7 +18481,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Even if it is just a guess like “the backup need half of the main database heap or page cacheâ€', type: 'message', }, - id: '133867', + _id: '133867', }, { attributes: { @@ -18491,7 +18491,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'i think thats an over agressive config for backup... from the GH link above u see pagecahce defaults to 8M which is small but maybe its that small since backups usage is not the same as the running Neo db. as per my exampe above if u only had 10G free i might set heap to 4G and pagecahce to 4G as well', type: 'message', }, - id: '133868', + _id: '133868', }, { attributes: { @@ -18501,7 +18501,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'if u only had 2GB free for example, of which one might suggest that this machine is really maxed out (regardless of any backup activity) then id set heap and pagecahce to 1G each', type: 'message', }, - id: '133869', + _id: '133869', }, { attributes: { @@ -18511,7 +18511,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I agree with you regarding the page cache <@U0DNS24SZ> but that was just an example.\n\nIs there any “reference†for the values that you area aware of?', type: 'message', }, - id: '133870', + _id: '133870', }, { attributes: { @@ -18521,7 +18521,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'no reference but in further discussion the reason for config a heap and pagecache is because backup will under the covers start up its own neo db to perform the backup. it start its on neo it needs a heap and pagecahce. if u do not explicitly define then it will use what is configured in the neo4j.conf which if your current neo is using 80%+ of available RAM then by starting up this under the covers instance will read the neof4.conf and then consume all RAM . but backup doesnt really need a pagecache but if u dont define one then its going to create one as big as the running neo instance, which is thus overkill. so if u have 2GB of free ram and want to start the backup, define a --pagecache=8M and the rest can go to HEAP', type: 'message', }, - id: '133871', + _id: '133871', }, { attributes: { @@ -18531,7 +18531,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I understand it is important setting them, but they (page cache and heap) must have a minimum to run and a desirible maximum, otherwise they wouldn’t have parameters for that :wink:\n\nI will leave the pagecache to a minimum (8M) and try with a 1 GB heap. Hopefully this would not degrade the performance too much and the backup will run on a desireable time frame.', type: 'message', }, - id: '133872', + _id: '133872', }, { attributes: { @@ -18541,7 +18541,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi Neo4j team, I have a question for you guys: in our KG, we have 6,238,640,278 nodes and 12,224,562,210 relationships. The Louvain query shown below will get the top 10 communities (the clusters of Content_Tag) shared by Visitor (from Audience segment '20-25 male' ) (in Parallel loading - 34 cpu cores). However, I waited for 2 days and the code never finished running. I suspect that our graph database is too big? Do you have any suggestions for solving this issue? Thank you! (please see below my code)", type: 'message', }, - id: '137156', + _id: '137156', }, { attributes: { @@ -18551,7 +18551,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'hey this is a really cool question, because slack makes it so hard to answer can you please cross-post it to <https://community.neo4j.com/c/neo4j-graph-platform/graph-algorithms/73> and let me know?', type: 'message', }, - id: '137116', + _id: '137116', }, { attributes: { @@ -18561,7 +18561,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Quick tip, can you try and run the two cypher queries independently to see how they behave, best with `PROFILE`', type: 'message', }, - id: '137117', + _id: '137117', }, { attributes: { @@ -18571,7 +18571,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Neo4j is all about index free adjacency... we don't use relationship indexes... what is your model and what are you trying to do?", type: 'message', }, - id: '143587', + _id: '143587', }, { attributes: { @@ -18581,7 +18581,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I am inserting/updating data in neo4j. where I want to update relations property based on some criteria and i am running these queries \n``` UNWIND {props} as props Match (s:Node1 {idx : props.idx}), (d:Node2 {sId : props.sId}) MERGE (s)-[r:RECOMMEND {recommendationType : props.recommendationType}]->(d) ON CREATE SET r = {recommendationType : props.recommendationType, rank : props.rank,lastIndexed : props.lastIndexed} ON MATCH SET r += {recommendationType : props.recommendationType, rank : props.rank,lastIndexed : props.lastIndexed} ```', type: 'message', }, - id: '143588', + _id: '143588', }, { attributes: { @@ -18591,7 +18591,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'After doing profiles, I found that ```(s)-[r:RECOMMEND]->(d) ``` is hitting db 108 times even when i have created index on it', type: 'message', }, - id: '143589', + _id: '143589', }, { attributes: { @@ -18601,7 +18601,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "we don't use indexes the way RDBMs use indexes... only for starting points.", type: 'message', }, - id: '143590', + _id: '143590', }, { attributes: { @@ -18611,7 +18611,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U08JH64PM> So there is no advantage of creating indexes on relation's property. Want to know if there may be any other optimization in above query. I have 400 M relations to be updated/inserted. Or any other suggestion for ingesting this data", type: 'message', }, - id: '143591', + _id: '143591', }, { attributes: { @@ -18621,7 +18621,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Has anyone used the Neo4j Spark Connector??', type: 'message', }, - id: '160036', + _id: '160036', }, { attributes: { @@ -18631,7 +18631,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'have you tried <#C0N7LHVS9|neo4j-spark> ?', type: 'message', }, - id: '160044', + _id: '160044', }, { attributes: { @@ -18641,7 +18641,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'How many people are using .NET client apps (desktop/mobile/server) to access Neo4j?', type: 'message', }, - id: '160529', + _id: '160529', }, { attributes: { @@ -18651,7 +18651,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I am :slightly_smiling_face:', type: 'message', }, - id: '160545', + _id: '160545', }, { attributes: { @@ -18661,7 +18661,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi everyone! I'm a Data Science Graduate Student from university of Cincinnati. I have been working on a project with Neo4j. I needed resources on building relationships on huge data using Python and utilizing Graph Analysis tools in Neo4j ", type: 'message', }, - id: '161043', + _id: '161043', }, { attributes: { @@ -18671,7 +18671,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'First thing: have you looked into the official `neo4j-driver`? Then, have you looked at `py2neo`?', type: 'message', }, - id: '161055', + _id: '161055', }, { attributes: { @@ -18681,7 +18681,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Yes, I did. But I'd like to access full range of commands and syntax required to perform all the functions. Which one is the best and where can I find resources?", type: 'message', }, - id: '161062', + _id: '161062', }, { attributes: { @@ -18691,7 +18691,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '`py2neo` has a lot of features for OGM and is built on the `neo4j-driver`. It depends on how abstract you want to be. Google the Python packages and the docs should be the first result', type: 'message', }, - id: '161067', + _id: '161067', }, { attributes: { @@ -18701,7 +18701,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'For graph analytics check out the graph algorithms in <http://github.com/neo4j-contrib/neo4j-graph-algorithms|github.com/neo4j-contrib/neo4j-graph-algorithms>', type: 'message', }, - id: '161093', + _id: '161093', }, { attributes: { @@ -18711,7 +18711,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'You need to ask concrete questions, not generic ones', type: 'message', }, - id: '161094', + _id: '161094', }, { attributes: { @@ -18721,7 +18721,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I have installed Neo4j community edition 3.2.9 on a CentOS server. I am accessing the Neo4j server on local system using Chrome / Safari and I tend to struggle a lot in creating multivariate relationships amount 60k nodes with 2K other notes. I'm using Merge query on Cypher to create relationships. Am I missing anything very vital here? As browser shutdowns due to memory issues after a while", type: 'message', }, - id: '161064', + _id: '161064', }, { attributes: { @@ -18731,7 +18731,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'yes, you cannot return 60k nodes or such to a JS implementation.\nPlease share your concrete queries / questions either in <#C08J11DC6|help-cypher> or <#C5C4JRFK7|neo4j-graph-algorithm>', type: 'message', }, - id: '161097', + _id: '161097', }, { attributes: { @@ -18741,7 +18741,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Is there any utility to export Neo4j database to MySQL?', type: 'message', }, - id: '161388', + _id: '161388', }, { attributes: { @@ -18752,7 +18752,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Your database would be slow as shit with relations and foreign keys everywhere', type: 'message', }, - id: '161389', + _id: '161389', }, { attributes: { @@ -18762,7 +18762,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I understand but is there any such utility to dump/export the database?', type: 'message', }, - id: '161391', + _id: '161391', }, { attributes: { @@ -18772,7 +18772,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'you can export it to csv', type: 'message', }, - id: '161393', + _id: '161393', }, { attributes: { @@ -18782,7 +18782,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'How do I go about exporting individual vertices and edges as json and as csv in Neo4j? Thanks', type: 'message', }, - id: '161827', + _id: '161827', }, { attributes: { @@ -18792,7 +18792,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'depends on the size, you could save the JSON fromt he browser otherwise: <https://neo4j.com/blog/export-csv-from-neo4j-curl-cypher-jq/>', type: 'message', }, - id: '161856', + _id: '161856', }, { attributes: { @@ -18802,7 +18802,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi, how do you drop unused properties from Neo4j without dropping all the data in `data/graph.db/*`', type: 'message', }, - id: '162413', + _id: '162413', }, { attributes: { @@ -18812,7 +18812,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'the tokens are kept around unless you either create a new store e.g. with <http://github.com/jexp/store-utils|github.com/jexp/store-utils>', type: 'message', }, - id: '162417', + _id: '162417', }, { attributes: { @@ -18822,7 +18822,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'just thinking about if we could add a token rename procedure to apoc that uses the internal APIs', type: 'message', }, - id: '162418', + _id: '162418', }, { attributes: { @@ -18832,7 +18832,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'truly deleting them should only be possible for the last token id', type: 'message', }, - id: '162419', + _id: '162419', }, { attributes: { @@ -18842,7 +18842,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Where can I get more info on backup and restore on Neo4j enterprise version. any documentation on this? Thanks', type: 'message', }, - id: '162473', + _id: '162473', }, { attributes: { @@ -18852,7 +18852,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'did you check the docs (operations-manual?) also ask in <#C08JCLMV3|help-enterprise>', type: 'message', }, - id: '162495', + _id: '162495', }, { attributes: { @@ -18862,7 +18862,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Struggling to find the constraints on Neo4j datatypes', type: 'message', }, - id: '162707', + _id: '162707', }, { attributes: { @@ -18872,7 +18872,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'currently there are no data type constraints yet', type: 'message', }, - id: '162725', + _id: '162725', }, { attributes: { @@ -18882,7 +18882,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'very strange, so im going from 2.3 neo4j to 3.4, allowing upgrade on the server doesnt work for some reason as the service keeps restarting over and over until it times out. but using the same graph.db files on Neo4j Desktop it immediately migrates over', type: 'message', }, - id: '163069', + _id: '163069', }, { attributes: { @@ -18892,7 +18892,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'did you try neo4j-admin import --mode database ?', type: 'message', }, - id: '163085', + _id: '163085', }, { attributes: { @@ -18902,7 +18902,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'in Neo4j can write Stored Procedures ? like in relational databases ?', type: 'message', }, - id: '163124', + _id: '163124', }, { attributes: { @@ -18912,7 +18912,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'you can write your own procedures in Java -> <https://neo4j.com/docs/developer-manual/current/extending-neo4j/procedures/>', type: 'message', }, - id: '163125', + _id: '163125', }, { attributes: { @@ -18922,7 +18922,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi Everyone. I would like to know more about Neo4j bloom. Can anybody direct me to some interesting reads or videos? Also please let me know if there is any community edition for that as well for learning purpose', type: 'message', }, - id: '163205', + _id: '163205', }, { attributes: { @@ -18932,7 +18932,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'there is a demo at the GC video and the blog posts from Rik and Jeff.', type: 'message', }, - id: '163218', + _id: '163218', }, { attributes: { @@ -18942,7 +18942,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'How do I find out what guides are available for exploring Neo4j? I went to <http://guides.neo4j.com/> expecting to see a list of all the guides available, but it is not a helpful page.', type: 'message', }, - id: '163227', + _id: '163227', }, { attributes: { @@ -18952,7 +18952,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Are you looking <http://neo4j.com/developer/get-started|neo4j.com/developer/get-started>? Or which guides are you referring to?', type: 'message', }, - id: '163233', + _id: '163233', }, { attributes: { @@ -18962,7 +18962,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I think you might be looking for this? <https://neo4j.com/developer/guide-neo4j-browser/>', type: 'message', }, - id: '163269', + _id: '163269', }, { attributes: { @@ -18972,7 +18972,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Under the Built-in Guides section', type: 'message', }, - id: '163270', + _id: '163270', }, { attributes: { @@ -18982,7 +18982,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U3RJEUY2Z> / <@U08J18KHB>: I'm bit concerned by stats showing number of commits and number of contributors to the project is consistently declining ( ref: <https://www.openhub.net/p/neo4j-graphdb> ). Any assurances for the future of Neo4j?", type: 'message', }, - id: '163387', + _id: '163387', }, { attributes: { @@ -18992,7 +18992,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Don't worry about it, since I joined in 2010 the company grew from 10 to over 250 people.\n\n1. we have more than 60 full-time developers working on Neo4j\n2. many of the external contributors joined the company\n3. we've moved bunch of things out of the main repo like docs and packaging. Those areas used to have many commits.", type: 'message', }, - id: '163391', + _id: '163391', }, { attributes: { @@ -19002,7 +19002,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Also almost all of the code locations in openhub are outdated', type: 'message', }, - id: '163392', + _id: '163392', }, { attributes: { @@ -19012,7 +19012,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'It also seems that openhub is broken, at least I cannot add or remove code-locations, there are only a lot of javascript errors.', type: 'message', }, - id: '163393', + _id: '163393', }, { attributes: { @@ -19022,7 +19022,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks Michael.. feeling good now :slightly_smiling_face:', type: 'message', }, - id: '163394', + _id: '163394', }, { attributes: { @@ -19032,7 +19032,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Anyone know what AWS instance types does Neo4j perform best on? We are looking at storage optimized currently. Any recommendations based on experience would be appreciated.', type: 'message', }, - id: '163454', + _id: '163454', }, { attributes: { @@ -19042,7 +19042,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Perhaps <@U7AHFNAA0> could help you to get set up with neo4j cloud?', type: 'message', }, - id: '163459', + _id: '163459', }, { attributes: { @@ -19052,7 +19052,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Thanks Michael but unfortunately, Neo4j needs to live inside our Canadian Central Amazon VPC, in one of our private subnets. We can't have any 3rd party managed systems in other networks", type: 'message', }, - id: '163464', + _id: '163464', }, { attributes: { @@ -19062,7 +19062,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello Everyone, I am facing issues while importing my Mysql database to Neo4j using ETL Tool. Problem is my data contain special characters like quotes, back and forward slashes. Neo4j etl tool is not escaping those characters. Here is the link of full detailed discussion and necessary code. [<https://github.com/neo4j-contrib/neo4j-etl/issues/20>]. I have also created a dummy database with 2 rows to reproduce the issue.', type: 'message', }, - id: '163620', + _id: '163620', }, { attributes: { @@ -19072,7 +19072,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '-> <#CAZBECC7P|neo4j-etl>', type: 'message', }, - id: '163644', + _id: '163644', }, { attributes: { @@ -19082,7 +19082,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi, I was wondering if anyone is using Neo4j on genomics data? Please, drop me a line! Thanks.', type: 'message', }, - id: '163716', + _id: '163716', }, { attributes: { @@ -19092,7 +19092,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'checkout <#C5X7EJEH3|neo4j-life-sciences> there is a lot of stuff happening <https://neo4j.com/developer/life-sciences-and-healthcare/?ref=blog>\nthere is \nalso a neo4j-biotech google group and e.g. these workshop proceedings: <https://neo4j.com/blog/neo4j-life-sciences-healthcare-workshop-berlin/>', type: 'message', }, - id: '163718', + _id: '163718', }, { attributes: { @@ -19102,7 +19102,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'How do I install Neo4j Desktop and use it to create graphs ?', type: 'message', }, - id: '163750', + _id: '163750', }, { attributes: { @@ -19112,7 +19112,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'see: <https://medium.com/neo4j/neo4j-get-off-the-ground-in-30min-or-less-3a226a0d48b1>', type: 'message', }, - id: '163759', + _id: '163759', }, { attributes: { @@ -19122,7 +19122,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U0975P59N> Btw, are you tomorrow in Amsterdam, Neo4jGraphtour?', type: 'message', }, - id: '164105', + _id: '164105', }, { attributes: { @@ -19132,7 +19132,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U9TEEBYKH> I am :)', type: 'message', }, - id: '164114', + _id: '164114', }, { attributes: { @@ -19142,7 +19142,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'so i just downloaded the latest GRANDstack starter package and have it up and running...So that is a success. I am comfortable with Neo4j and have been using it for some time. I have an idea of how I want to use this start app to get me going. However, the part I am getting hung up on while I study the different components is to understand how this connects and pulls in the Neo4j data. Which file or location should I focus on when understanding how the Neo4j data is imported into the application? I plan to work backwards from there to modify the app to fit the data I had in mind', type: 'message', }, - id: '164237', + _id: '164237', }, { attributes: { @@ -19152,7 +19152,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I may have found the rabbit hole...in "graphql-schema.js"...', type: 'message', }, - id: '164238', + _id: '164238', }, { attributes: { @@ -19162,7 +19162,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "exactly. it's all about the graphql schema. The neo4j datamodel is inferred from the graphql schema and using the graphql schema the graphql requests are translated to Cypher. that bit is handled by the neo4j-graphql-js library. There's some more info here: <https://grandstack.io/docs/neo4j-graphql-js.html>", type: 'message', }, - id: '164239', + _id: '164239', }, { attributes: { @@ -19173,7 +19173,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'so then this is the file I need to focus on (along with the App.js and UserList.js files) as I work to use my own data? Are there any other files I should keep in mind?', type: 'message', }, - id: '164240', + _id: '164240', }, { attributes: { @@ -19183,7 +19183,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Changing the graphql schema is the first place to start. that will change the datamodel and the Cypher queries that are generated. you can experiment with the graphql api using graphql playground. then once you have the graphql api updated userlist.js and the other frontend stuff can be updated to use that graphql api', type: 'message', }, - id: '164241', + _id: '164241', }, { attributes: { @@ -19193,7 +19193,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'graphql playground?', type: 'message', }, - id: '164242', + _id: '164242', }, { attributes: { @@ -19203,7 +19203,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'once you have the api app running go to localhost:4000 in the browser. that will open graphql playground which is an interactive way to query and explore the graphql api (like postman)', type: 'message', }, - id: '164243', + _id: '164243', }, { attributes: { @@ -19213,7 +19213,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'this thing: <https://github.com/prisma/graphql-playground>', type: 'message', }, - id: '164244', + _id: '164244', }, { attributes: { @@ -19223,7 +19223,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'oh ok.\nand then i can also import my data through the Neo4j browser and change the graphql schema to incorporate it into the app (before doing the other front end stuff)?', type: 'message', }, - id: '164245', + _id: '164245', }, { attributes: { @@ -19233,7 +19233,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "yes, that'll work. there are also mutation operations generated that allow you to load data via graphql", type: 'message', }, - id: '164246', + _id: '164246', }, { attributes: { @@ -19243,7 +19243,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'also see these examples: <https://medium.freecodecamp.org/building-the-2018-world-cup-graphql-api-fab40ccecb9e>', type: 'message', }, - id: '164247', + _id: '164247', }, { attributes: { @@ -19253,7 +19253,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<https://blog.grandstack.io/graphql-apis-for-developer-communities-64ec1b4c0e18>', type: 'message', }, - id: '164248', + _id: '164248', }, { attributes: { @@ -19263,7 +19263,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08J18KHB> Thank you!', type: 'message', }, - id: '164252', + _id: '164252', }, { attributes: { @@ -19273,7 +19273,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'So I have been digging deeper and I was able to create a BusinessList pretty much copying over the UserList. While I understand how the ```avgStars``` and ```numStars``` are pulled in, I am a bit confused about how to handle the items like "friends" and "reviews" under UserList, and "reviews" and "categories" in graphql-schema.js\n\nWhat is the key when wanting to use these items?', type: 'message', }, - id: '164254', + _id: '164254', }, { attributes: { @@ -19283,7 +19283,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Are those just descriptors of the relationships associated with that node?', type: 'message', }, - id: '164255', + _id: '164255', }, { attributes: { @@ -19293,7 +19293,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "any link to a custom mutation for neo4j-graphql-js?... I would like to write back to Neo4j, but keep getting permission error if I run a query. That's why I would like to try a mutation, but can't find anything in official docs", type: 'message', }, - id: '164451', + _id: '164451', }, { attributes: { @@ -19303,7 +19303,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'What’s the error you’re seeing?', type: 'message', }, - id: '164452', + _id: '164452', }, { attributes: { @@ -19313,7 +19313,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "it doesn't allow me to write back to Neo4j", type: 'message', }, - id: '164453', + _id: '164453', }, { attributes: { @@ -19323,7 +19323,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'read operations work just fine', type: 'message', }, - id: '164454', + _id: '164454', }, { attributes: { @@ -19333,7 +19333,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'did you put it in the mutation type?', type: 'message', }, - id: '164456', + _id: '164456', }, { attributes: { @@ -19343,7 +19343,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I get this error message: `Resolve function for \\"_Neo4jTime.formatted\\" returned undefined`', type: 'message', }, - id: '164499', + _id: '164499', }, { attributes: { @@ -19353,7 +19353,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'So you want to implement the resolver yourself and not use the auto generated temporal types?', type: 'message', }, - id: '164500', + _id: '164500', }, { attributes: { @@ -19363,7 +19363,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'For this 1 case I have to create the resolver myself (since it is not reading the data from a neo4j base).', type: 'message', }, - id: '164501', + _id: '164501', }, { attributes: { @@ -19373,7 +19373,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I suppose I need to create the Time object myself and add hours, minutes, seconds and formated properties myself.', type: 'message', }, - id: '164502', + _id: '164502', }, { attributes: { @@ -19383,7 +19383,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'yeah exactly', type: 'message', }, - id: '164503', + _id: '164503', }, { attributes: { @@ -19393,7 +19393,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'you’d need to implement the field level resolvers for that type', type: 'message', }, - id: '164504', + _id: '164504', }, { attributes: { @@ -19403,7 +19403,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Do you know of any good examples that I can have a look at?', type: 'message', }, - id: '164505', + _id: '164505', }, { attributes: { @@ -19413,7 +19413,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'not for that specific case no, I can try to put together a codesandbox for it', type: 'message', }, - id: '164506', + _id: '164506', }, { attributes: { @@ -19423,7 +19423,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I got it working', type: 'message', }, - id: '164507', + _id: '164507', }, { attributes: { @@ -19433,7 +19433,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks for guidance and for pointing me to the right direction', type: 'message', }, - id: '164508', + _id: '164508', }, { attributes: { @@ -19443,7 +19443,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "``` TimeTest: {\n hour(parent: any, args: any, context: any, info: any) {\n return format(parent, 'HH');\n },\n minute(parent: any, args: any, context: any, info: any) {\n return format(parent, 'MM');\n },\n second(parent: any, args: any, context: any, info: any) {\n return format(parent, 'ss');\n },\n formatted(parent: any, args: any, context: any, info: any) {\n return format(parent, 'HH:MM:ss') + 'Z';\n },\n },```", type: 'message', }, - id: '164509', + _id: '164509', }, { attributes: { @@ -19453,7 +19453,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Here is my TimeTest resolver', type: 'message', }, - id: '164510', + _id: '164510', }, { attributes: { @@ -19463,7 +19463,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'great!', type: 'message', }, - id: '164511', + _id: '164511', }, { attributes: { @@ -19473,7 +19473,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I have an existing graph in Neo4j that I’d like to expose via GraphQL, and it seems like there are multiple ways to do so. My one goal is to make it as generated/introspection driven as possible, so I don’t have to write and maintain a bunch of little handlers to update whenever I add to the schema. So the plugin looks easy. But I need to have an access control mechanism, with some basic filtering logic (e.g. each user is constrained to their view of the data). I’m curious - which mechanisms do people use in production? Or do I need to give in and write tons of little handlers with access control logic?', type: 'message', }, - id: '164534', + _id: '164534', }, { attributes: { @@ -19483,7 +19483,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'In terms of generating a GraphQL API from an existing neo4j database, see this example: <https://blog.grandstack.io/inferring-graphql-type-definitions-from-an-existing-neo4j-database-dadca2138b25>', type: 'message', }, - id: '164535', + _id: '164535', }, { attributes: { @@ -19493,7 +19493,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'For authorization rules, there are a few options depending on your requirements. If your auth rules can be expressed in terms of roles and scopes, see this example: <https://blog.grandstack.io/authorization-in-graphql-using-custom-schema-directives-eafa6f5b4658>', type: 'message', }, - id: '164536', + _id: '164536', }, { attributes: { @@ -19503,7 +19503,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'See this docs page which outlines some other options, such as injecting Cypher parameters from the request and middleware support for enforcing more custom auth rules: <https://grandstack.io/docs/neo4j-graphql-js-middleware-authorization.html>', type: 'message', }, - id: '164537', + _id: '164537', }, { attributes: { @@ -19513,7 +19513,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks <@U0975P59N> for the references. Reading!', type: 'message', }, - id: '164547', + _id: '164547', }, { attributes: { @@ -19524,7 +19524,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hey, this is a really useful feature - I'm trying to use it to delete all the schema definitions I'd be maintaining by hand :sob: .\n\nThe only schema definitions that I should need to write myself are fields that use the `@cypher` directive, right?\n\nHow do I do this? I expect that I want to extend the type definition and pass the inferred schema and my extended types into the `makeAugmentedSchema` , but I can't seem to get my extended types working.", type: 'message', }, - id: '164552', + _id: '164552', }, { attributes: { @@ -19534,7 +19534,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Currently have a big set of data being stored in Google Datastore. I would like to write a Python script to migrate this data into Neo4j. Does anyone have any ideas on how to go about doing this?', type: 'message', }, - id: '185185', + _id: '185185', }, { attributes: { @@ -19544,7 +19544,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08J18KHB> <@U08JH64PM>', type: 'message', }, - id: '185228', + _id: '185228', }, { attributes: { @@ -19554,7 +19554,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Google Datastore spits out Json dumps right?', type: 'message', }, - id: '185229', + _id: '185229', }, { attributes: { @@ -19564,7 +19564,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Have you looked at <http://www.markhneedham.com/blog/2015/07/23/neo4j-loading-json-documents-with-cypher/> for inspiration?', type: 'message', }, - id: '185230', + _id: '185230', }, { attributes: { @@ -19574,7 +19574,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'As far as I know, Datastore does not use Json', type: 'message', }, - id: '185231', + _id: '185231', }, { attributes: { @@ -19584,7 +19584,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08JH64PM>', type: 'message', }, - id: '185232', + _id: '185232', }, { attributes: { @@ -19594,7 +19594,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Any ideas <@U08J18KHB> or <@U08JH64PM> ?', type: 'message', }, - id: '185233', + _id: '185233', }, { attributes: { @@ -19604,7 +19604,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Ok, then what does it output in? Can you convert it to CSV files?', type: 'message', }, - id: '185234', + _id: '185234', }, { attributes: { @@ -19614,7 +19614,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'What APIs does the datastore have? In python you can use the offical driver or py2neo to import the data.', type: 'message', }, - id: '185262', + _id: '185262', }, { attributes: { @@ -19624,7 +19624,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U08JH64PM> it doesn't really output to anything. It is a NoSQL database", type: 'message', }, - id: '185316', + _id: '185316', }, { attributes: { @@ -19634,7 +19634,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08J18KHB> <https://cloud.google.com/datastore/docs/apis>', type: 'message', }, - id: '185317', + _id: '185317', }, { attributes: { @@ -19644,7 +19644,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "There is an API but I don't fully get your question", type: 'message', }, - id: '185318', + _id: '185318', }, { attributes: { @@ -19654,7 +19654,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'if it has an api, when you query it youget back a response right? csv? json? xml? whatever it is just needs to be parsed and fed into neo', type: 'message', }, - id: '185319', + _id: '185319', }, { attributes: { @@ -19664,7 +19664,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I'll have to look into that further", type: 'message', }, - id: '185383', + _id: '185383', }, { attributes: { @@ -19674,7 +19674,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'When I start Neo4j I receive the message "Starting Neo4j failed: Component \'org.neo4j.server.database.LifecycleManagingDatabase@35d521bf\' was successfully initialized, but failed to start." Have you ever seen this ?', type: 'message', }, - id: '189044', + _id: '189044', }, { attributes: { @@ -19684,7 +19684,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'clara: Do you read log file?', type: 'message', }, - id: '189056', + _id: '189056', }, { attributes: { @@ -19694,7 +19694,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U4KR9HK6G> Neo seems to be fairly relaxed about it, in that they want businesses using Neo4j for commercial use who can afford the enterprise version to get a commercial license. You can chat with a Neo representative here if you want to discuss your specific case. Otherwise, there's really no TECHNICAL limitation for getting and using the enterprise version, you should be able to download it and use it without any blockers.", type: 'message', }, - id: '189081', + _id: '189081', }, { attributes: { @@ -19704,7 +19704,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'andrew.bowman: haha, thank you! I can actually solve it by making the DB in a read only state after we finish put data into it. It is for a presentation', type: 'message', }, - id: '189086', + _id: '189086', }, { attributes: { @@ -19714,7 +19714,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Great, that's a good solution!", type: 'message', }, - id: '189093', + _id: '189093', }, { attributes: { @@ -19724,7 +19724,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'maybe you are running 1 more instance on the same port', type: 'message', }, - id: '189135', + _id: '189135', }, { attributes: { @@ -19734,7 +19734,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U4K9GEM99> use <http://pastebin.com/> and share log file', type: 'message', }, - id: '189307', + _id: '189307', }, { attributes: { @@ -19744,7 +19744,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U59PZLVKL> Hello there. If you're using the Neo4j browser ... it does show a message like `Started streaming 6 records after 2 ms and completed after 3 ms.` for every query. Is that what you are looking for ?", type: 'message', }, - id: '194549', + _id: '194549', }, { attributes: { @@ -19754,7 +19754,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'tom.geudens: HI Tom. I dont see it. how to show it?', type: 'message', }, - id: '194551', + _id: '194551', }, { attributes: { @@ -19764,7 +19764,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Execute the query, then select the rows, text or code tab.', type: 'message', }, - id: '194552', + _id: '194552', }, { attributes: { @@ -19774,7 +19774,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I see it. Thank you', type: 'message', }, - id: '194553', + _id: '194553', }, { attributes: { @@ -19784,7 +19784,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'that command works for me in the Neo4j browser', type: 'message', }, - id: '195536', + _id: '195536', }, { attributes: { @@ -19794,7 +19794,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'nevermind - I found out that the GrapheneDB through Heroku Addons uses 3.1.2, where the docs I was reading was for 3.2 :confused:', type: 'message', }, - id: '195540', + _id: '195540', }, { attributes: { @@ -19804,7 +19804,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'that being said, in an attempt to build a schema, anyone know how to create composite (multiple property) indexes using NodeJS and `neo4j-driver`', type: 'message', }, - id: '195541', + _id: '195541', }, { attributes: { @@ -19814,7 +19814,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Need help on how to use Neo4j with elasticsearch', type: 'message', }, - id: '196517', + _id: '196517', }, { attributes: { @@ -19824,7 +19824,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'manu.bansal87: email my friend <mailto:maitiu.ociarain@cognitiox.io|maitiu.ociarain@cognitiox.io>', type: 'message', }, - id: '196522', + _id: '196522', }, { attributes: { @@ -19834,7 +19834,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'And as a starting point, there is this page : <https://neo4j.com/developer/elastic-search/>', type: 'message', }, - id: '196523', + _id: '196523', }, { attributes: { @@ -19844,7 +19844,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U4XTARYLD> email ?', type: 'message', }, - id: '196525', + _id: '196525', }, { attributes: { @@ -19854,7 +19854,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U5V5JCTDX> <mailto:maitiu.ociarain@cognitiox.io|maitiu.ociarain@cognitiox.io>', type: 'message', }, - id: '196526', + _id: '196526', }, { attributes: { @@ -19864,7 +19864,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<@U08N07MQB> -> i didn't find it useful", type: 'message', }, - id: '196527', + _id: '196527', }, { attributes: { @@ -19874,7 +19874,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'my data is in elasticsearch', type: 'message', }, - id: '196528', + _id: '196528', }, { attributes: { @@ -19884,7 +19884,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'i want to visualize relationships present in my elasticsearch data using Neo4j', type: 'message', }, - id: '196529', + _id: '196529', }, { attributes: { @@ -19894,7 +19894,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U4XTARYLD> Mail delivery failed', type: 'message', }, - id: '196530', + _id: '196530', }, { attributes: { @@ -19904,7 +19904,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U5V5JCTDX> <mailto:maitiu.ociarain@cognitionx.io|maitiu.ociarain@cognitionx.io>', type: 'message', }, - id: '196533', + _id: '196533', }, { attributes: { @@ -19914,7 +19914,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'i was missing an “n†on cognitionx :slightly_smiling_face:', type: 'message', }, - id: '196534', + _id: '196534', }, { attributes: { @@ -19924,7 +19924,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U4XTARYLD> : Done.. Thanks !!', type: 'message', }, - id: '196535', + _id: '196535', }, { attributes: { @@ -19934,7 +19934,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: ':+1:', type: 'message', }, - id: '196536', + _id: '196536', }, { attributes: { @@ -19944,7 +19944,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U4XTARYLD> : I am also having the same scenario, how i can index the relationship among object in Elastic Search ?', type: 'message', }, - id: '196631', + _id: '196631', }, { attributes: { @@ -19954,7 +19954,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "You shouldn't be using the `START` clause after Neo4j 2.3.x", type: 'message', }, - id: '196936', + _id: '196936', }, { attributes: { @@ -19964,7 +19964,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'maxdemarzi: I clear database\n/var/lib/neo4j/data/databases/graph.db\nand everything works again', type: 'message', }, - id: '196945', + _id: '196945', }, { attributes: { @@ -19974,7 +19974,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'What do end users do with Neo4j? I have a graph: it works. If I give the URL to an end user, do they open their browser, load the graph, then copy/paste queries into the browser window?', type: 'message', }, - id: '200225', + _id: '200225', }, { attributes: { @@ -19984,7 +19984,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "It depends upon how you want to expose it. The kind of open access you mentioned doesn't sound very secure, this is like having a relational db and then providing public access to everyone to query", type: 'message', }, - id: '200355', + _id: '200355', }, { attributes: { @@ -19994,7 +19994,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Often neo4j is used like any other db, where the server is the only one directly interacting, with some API being called from the actual application which hits the db as needed with the relevant queries', type: 'message', }, - id: '200356', + _id: '200356', }, { attributes: { @@ -20004,7 +20004,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Or you could have some front end that interacts closer to neo4j, like some kind of visualizer, which may be able to feed (read-only) queries directly to the db', type: 'message', }, - id: '200357', + _id: '200357', }, { attributes: { @@ -20014,7 +20014,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "hey guys i've loaded the NASA doctopics database from <https://github.com/davidmeza1/doctopics/tree/master/neo4jdb/RNeo4jDB> ..... set dbms.allow_format_migration=true and upgrade the data files ok ... but the node labels don't seem to have come through correctly ....", type: 'message', }, - id: '203980', + _id: '203980', }, { attributes: { @@ -20024,7 +20024,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'can you check if the indexes are available with ":schema"', type: 'message', }, - id: '203994', + _id: '203994', }, { attributes: { @@ -20034,7 +20034,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'can you send us a zipped version of your backup to investitage?', type: 'message', }, - id: '203995', + _id: '203995', }, { attributes: { @@ -20044,7 +20044,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'indexes are rebuilt at restart so you could just delete the schema and index directories.', type: 'message', }, - id: '203996', + _id: '203996', }, { attributes: { @@ -20054,7 +20054,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Why does adding Gson to my Extension cause Neo4j to crash?', type: 'message', }, - id: '207292', + _id: '207292', }, { attributes: { @@ -20064,7 +20064,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'is there something in the logs ?', type: 'message', }, - id: '207293', + _id: '207293', }, { attributes: { @@ -20074,7 +20074,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Yes "Multiple Exceptions"', type: 'message', }, - id: '207294', + _id: '207294', }, { attributes: { @@ -20084,7 +20084,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'can you share them ?', type: 'message', }, - id: '207295', + _id: '207295', }, { attributes: { @@ -20094,7 +20094,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '2017-11-03 09:39:02.836+0000 ERROR [o.n.s.CommunityNeoServer] Failed to start Neo4j on 127.0.0.1:7474: Multiple exceptions', type: 'message', }, - id: '207296', + _id: '207296', }, { attributes: { @@ -20104,7 +20104,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'is it the `debug.log` file ?', type: 'message', }, - id: '207297', + _id: '207297', }, { attributes: { @@ -20114,7 +20114,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'neo4j.log', type: 'message', }, - id: '207298', + _id: '207298', }, { attributes: { @@ -20124,7 +20124,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'can you take a look at the `debug.log` file ?', type: 'message', }, - id: '207299', + _id: '207299', }, { attributes: { @@ -20134,7 +20134,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'you should see some stacktrace', type: 'message', }, - id: '207300', + _id: '207300', }, { attributes: { @@ -20144,7 +20144,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'where is it located?', type: 'message', }, - id: '207301', + _id: '207301', }, { attributes: { @@ -20154,7 +20154,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'you are on windows ?', type: 'message', }, - id: '207302', + _id: '207302', }, { attributes: { @@ -20164,7 +20164,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'yes', type: 'message', }, - id: '207303', + _id: '207303', }, { attributes: { @@ -20174,7 +20174,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '10', type: 'message', }, - id: '207304', + _id: '207304', }, { attributes: { @@ -20184,7 +20184,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "from what I remember it's into your `graph.db` folder, something like `graph.db/logs/debug.log`", type: 'message', }, - id: '207305', + _id: '207305', }, { attributes: { @@ -20194,7 +20194,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Found it, what am i looking for?', type: 'message', }, - id: '207306', + _id: '207306', }, { attributes: { @@ -20204,7 +20204,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'to some java stack trace :slightly_smiling_face:', type: 'message', }, - id: '207307', + _id: '207307', }, { attributes: { @@ -20214,7 +20214,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'skimming through it, nothing in the debug log is recent', type: 'message', }, - id: '207308', + _id: '207308', }, { attributes: { @@ -20224,7 +20224,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'last entry is from yesterday', type: 'message', }, - id: '207309', + _id: '207309', }, { attributes: { @@ -20234,7 +20234,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Okey ammendment. found the appropriate debug log', type: 'message', }, - id: '207310', + _id: '207310', }, { attributes: { @@ -20244,7 +20244,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "OK, let's do it on another way: what version of gson have you added ?", type: 'message', }, - id: '207311', + _id: '207311', }, { attributes: { @@ -20254,7 +20254,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "however i can't find any errors in teh debug log, at least no obvious ones", type: 'message', }, - id: '207312', + _id: '207312', }, { attributes: { @@ -20264,7 +20264,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'have you added the same version as Neo4j ?', type: 'message', }, - id: '207313', + _id: '207313', }, { attributes: { @@ -20274,7 +20274,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '2.9.2', type: 'message', }, - id: '207314', + _id: '207314', }, { attributes: { @@ -20284,7 +20284,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '2.8.2*', type: 'message', }, - id: '207315', + _id: '207315', }, { attributes: { @@ -20294,7 +20294,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<https://github.com/neo4j/neo4j/blob/13515c716d91210e8fa2a00d4c623f69198beaf1/pom.xml#L865-L869>', type: 'message', }, - id: '207317', + _id: '207317', }, { attributes: { @@ -20304,7 +20304,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Neo4j is using the `2.2.4`, and I think they are not compatible', type: 'message', }, - id: '207318', + _id: '207318', }, { attributes: { @@ -20314,7 +20314,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'still same error', type: 'message', }, - id: '207319', + _id: '207319', }, { attributes: { @@ -20324,7 +20324,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Starting Neo4j failed: Component \'org.neo4j.server.AbstractNeoServer$ServerComponentsLifecycleAdapter@c566d3c\' was successfully initialized, but failed to start. Please see the attached cause exception "com.google.gson.Gson".', type: 'message', }, - id: '207320', + _id: '207320', }, { attributes: { @@ -20334,7 +20334,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "you have a stacktrace somewhere, and normally it's in the `debug.log`. But it's a progress, you don't have anymore the \"Multiple exception\" :slightly_smiling_face:", type: 'message', }, - id: '207324', + _id: '207324', }, { attributes: { @@ -20344,7 +20344,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Not that i can find', type: 'message', }, - id: '207326', + _id: '207326', }, { attributes: { @@ -20354,7 +20354,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'do you have a `debug.log`into `%APPDATA%\\Neo4j Community Edition\\logs\\` ?', type: 'message', }, - id: '207333', + _id: '207333', }, { attributes: { @@ -20364,7 +20364,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'No only a neo4j.log file', type: 'message', }, - id: '207334', + _id: '207334', }, { attributes: { @@ -20374,7 +20374,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "humm, I don't know what to do now ... without the stack I can't figure what is the error, and so I can't find a solution", type: 'message', }, - id: '207336', + _id: '207336', }, { attributes: { @@ -20384,7 +20384,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Gonna patch the server to a newer version. see if that helps', type: 'message', }, - id: '207337', + _id: '207337', }, { attributes: { @@ -20394,7 +20394,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'what version are you using ?', type: 'message', }, - id: '207338', + _id: '207338', }, { attributes: { @@ -20404,7 +20404,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '3.2.5', type: 'message', }, - id: '207339', + _id: '207339', }, { attributes: { @@ -20414,7 +20414,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'You still there?', type: 'message', }, - id: '207346', + _id: '207346', }, { attributes: { @@ -20424,7 +20424,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I ran it in 3.3.0 and got a proper stack trace', type: 'message', }, - id: '207347', + _id: '207347', }, { attributes: { @@ -20434,7 +20434,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'FAILED o.e.j.s.ServletContextHandler@271a140c{/examples/unmanaged,null,STARTING}: java.lang.NoClassDefFoundError: Lcom/google/gson/Gson; Lcom/google/gson/Gson;\njava.lang.NoClassDefFoundError: Lcom/google/gson/Gson;', type: 'message', }, - id: '207348', + _id: '207348', }, { attributes: { @@ -20444,7 +20444,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'a class not found exception ...', type: 'message', }, - id: '207351', + _id: '207351', }, { attributes: { @@ -20454,7 +20454,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Does that help narrow down the issue?', type: 'message', }, - id: '207352', + _id: '207352', }, { attributes: { @@ -20464,7 +20464,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'is your project open-source ? (ie. can I see the code ?)', type: 'message', }, - id: '207353', + _id: '207353', }, { attributes: { @@ -20474,7 +20474,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'its not open-source', type: 'message', }, - id: '207354', + _id: '207354', }, { attributes: { @@ -20484,7 +20484,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I would have to involve my boss to expose the project', type: 'message', }, - id: '207355', + _id: '207355', }, { attributes: { @@ -20494,7 +20494,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'can you give me your pom.xml file ?', type: 'message', }, - id: '207356', + _id: '207356', }, { attributes: { @@ -20504,7 +20504,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'that i can', type: 'message', }, - id: '207357', + _id: '207357', }, { attributes: { @@ -20514,7 +20514,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<dependency>\n <groupId>org.neo4j.3rdparty.javax.ws.rs</groupId>\n <artifactId>jsr311-api</artifactId>\n <version>1.1.2.r612</version>\n <scope>provided</scope>\n </dependency>\n <dependency>\n <groupId>org.neo4j</groupId>\n <artifactId>neo4j</artifactId>\n <version>3.3.0-alpha07</version>\n <scope>provided</scope>\n </dependency>\n <dependency>\n <groupId>org.codehaus.jackson</groupId>\n <artifactId>jackson-mapper-asl</artifactId>\n <version>1.9.13</version>\n </dependency>\n <dependency>\n <groupId>com.google.code.gson</groupId>\n <artifactId>gson</artifactId>\n <version>2.2.4</version>\n </dependency>', type: 'message', }, - id: '207358', + _id: '207358', }, { attributes: { @@ -20524,7 +20524,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I need to see also how you package your lib', type: 'message', }, - id: '207359', + _id: '207359', }, { attributes: { @@ -20534,7 +20534,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'jar', type: 'message', }, - id: '207360', + _id: '207360', }, { attributes: { @@ -20544,7 +20544,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'are you using assembly / shade plugin ?', type: 'message', }, - id: '207361', + _id: '207361', }, { attributes: { @@ -20554,7 +20554,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'not sure what Netbeans use to be honest', type: 'message', }, - id: '207364', + _id: '207364', }, { attributes: { @@ -20564,7 +20564,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'you should have something like that in your pom.xml \n```\n<build>\n <plugins>\n <plugin>\n <artifactId>maven-shade-plugin</artifactId>\n <version>2.4.3</version>\n <executions>\n <execution>\n <phase>package</phase>\n <goals>\n <goal>shade</goal>\n </goals>\n </execution>\n </executions>\n </plugin>\n </plugins>\n </build>\n```', type: 'message', }, - id: '207367', + _id: '207367', }, { attributes: { @@ -20574,7 +20574,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<?xml version="1.0" encoding="UTF-8"?>\n<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\n <modelVersion>4.0.0</modelVersion>\n <groupId>{Redacted}</groupId>\n <artifactId>{Redacted}</artifactId>\n <version>{Redacted}</version>\n <packaging>jar</packaging>\n \n <dependencies>\n <!-- <dependency>\n <groupId>javax</groupId>\n <artifactId>javaee-web-api</artifactId>\n <version>8.0</version>\n <scope>provided</scope>\n </dependency>-->\n<!-- <dependency>\n \n <groupId>com.graphaware.neo4j</groupId>\n <artifactId></artifactId>\n \n </dependency>-->\n<!-- <dependency>\n <groupId>com.fasterxml.jackson.jaxrs</groupId>\n <artifactId>jackson-jaxrs-json-provider</artifactId>\n <version>2.9.2</version>\n </dependency>-->\n <dependency>\n <groupId>org.neo4j.3rdparty.javax.ws.rs</groupId>\n <artifactId>jsr311-api</artifactId>\n <version>1.1.2.r612</version>\n <scope>provided</scope>\n </dependency>\n <dependency>\n <groupId>org.neo4j</groupId>\n <artifactId>neo4j</artifactId>\n <version>3.3.0-alpha07</version>\n <scope>provided</scope>\n </dependency>\n <dependency>\n <groupId>org.codehaus.jackson</groupId>\n <artifactId>jackson-mapper-asl</artifactId>\n <version>1.9.13</version>\n </dependency>\n <dependency>\n <groupId>com.google.code.gson</groupId>\n <artifactId>gson</artifactId>\n <version>2.2.4</version>\n </dependency>\n \n </dependencies>\n \n \n <properties>\n <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\n <maven.compiler.source>1.8</maven.compiler.source>\n <maven.compiler.target>1.8</maven.compiler.target>\n </properties>\n</project', type: 'message', }, - id: '207368', + _id: '207368', }, { attributes: { @@ -20584,7 +20584,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Adding that seems to have done the trick', type: 'message', }, - id: '207369', + _id: '207369', }, { attributes: { @@ -20594,7 +20594,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'so now when you create your jar, all its deps are included in it', type: 'message', }, - id: '207370', + _id: '207370', }, { attributes: { @@ -20604,7 +20604,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Neo4j starts without any exceptions now', type: 'message', }, - id: '207371', + _id: '207371', }, { attributes: { @@ -20614,7 +20614,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'cool !', type: 'message', }, - id: '207372', + _id: '207372', }, { attributes: { @@ -20624,7 +20624,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks for the help', type: 'message', }, - id: '207373', + _id: '207373', }, { attributes: { @@ -20634,7 +20634,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "you're welcome", type: 'message', }, - id: '207374', + _id: '207374', }, { attributes: { @@ -20644,7 +20644,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I looked everywhere for any information related to why this didn't work. Maybe add this information to the help page?", type: 'message', }, - id: '207375', + _id: '207375', }, { attributes: { @@ -20654,7 +20654,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "for unmanaged extensions. It might be common knowledge, but i sure didn't know it", type: 'message', }, - id: '207376', + _id: '207376', }, { attributes: { @@ -20664,7 +20664,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'and just a stupid question : why are you creating an unmanaged extension ?', type: 'message', }, - id: '207377', + _id: '207377', }, { attributes: { @@ -20674,7 +20674,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Rest api', type: 'message', }, - id: '207378', + _id: '207378', }, { attributes: { @@ -20684,7 +20684,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "you can't access to Neo4j via bolt ?", type: 'message', }, - id: '207379', + _id: '207379', }, { attributes: { @@ -20694,7 +20694,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'we probably can', type: 'message', }, - id: '207380', + _id: '207380', }, { attributes: { @@ -20704,7 +20704,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'was not my decision', type: 'message', }, - id: '207381', + _id: '207381', }, { attributes: { @@ -20714,7 +20714,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'well thanks for the help', type: 'message', }, - id: '207382', + _id: '207382', }, { attributes: { @@ -20724,7 +20724,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'FYI : we only use unmanaged extension for specific case now. The main way now when you need to have access to the java graph api, is to create some procedures', type: 'message', }, - id: '207383', + _id: '207383', }, { attributes: { @@ -20734,7 +20734,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hmm. I'll look into that, see if it serves us better", type: 'message', }, - id: '207384', + _id: '207384', }, { attributes: { @@ -20744,7 +20744,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'do you have a URL for information on how to go about it?', type: 'message', }, - id: '207385', + _id: '207385', }, { attributes: { @@ -20754,7 +20754,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'we have interns here that are learning, so as basic as possible would be best', type: 'message', }, - id: '207386', + _id: '207386', }, { attributes: { @@ -20764,7 +20764,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "if you need to have REST API, you can simply create a web application (with play!, spring boot or whatever) witch is connected to Neo4j via our driver (or you can use sping data neo4j). So you see it's the same as a usual database project :slightly_smiling_face:", type: 'message', }, - id: '207393', + _id: '207393', }, { attributes: { @@ -20774,7 +20774,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08J5DPMG> thanks for reply, I noticed you mentioned document DB - for Mongo DB, our data is just like financial data just numbers that are pulled down from APIs and then we make some quick bidding decisions and send it back (from Neo4j we can get some more decisions/recommendations that originate from big data using Neo4j algorithms, should this quiry fail we will have Mongo DB just execute based on their info). Having that in mind that Mongo DB will be handling simple nr decisions on VPS does it still sound like the best choice or would you fully do everything on Neo4j or have 2 Neo4j instances.', type: 'message', }, - id: '207429', + _id: '207429', }, { attributes: { @@ -20784,7 +20784,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I’ll go with neo4j only, but we should deepdive a bit more on the requirements', type: 'message', }, - id: '207433', + _id: '207433', }, { attributes: { @@ -20794,7 +20794,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks for help I will PM you', type: 'message', }, - id: '207435', + _id: '207435', }, { attributes: { @@ -20804,7 +20804,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'hello everyone ,I’m working on a customized project which need to show graph visualization,Which tool should I use to achieve it ? D3.js ? Neo4j native api or something else? #NEED HELP#', type: 'message', }, - id: '208013', + _id: '208013', }, { attributes: { @@ -20814,7 +20814,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'this is a good starting point: <https://github.com/johnymontana/neovis.js>', type: 'message', }, - id: '208017', + _id: '208017', }, { attributes: { @@ -20824,7 +20824,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: ':stuck_out_tongue_closed_eyes: <@U08J18KHB> thhhhhhhhhhhanks', type: 'message', }, - id: '208019', + _id: '208019', }, { attributes: { @@ -20834,7 +20834,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U6A2D93DF> If you have the plugin APOC, you can use `call apoc.gephi.add()` command. More details:\nFirst make sure that the ‘graph streaming’ plugin in Gephi is installed\nThen add the following to neo4j.conf\n```\ndbms.security.procedures.unrestricted=apoc.*\napoc.import.file.enabled=true\n```\nThen in Gephi click on ‘streaming’, then right click on ‘Master Server’, then on start\nThen add the following in neo4j (for example):\n```\nMATCH path = (n)--()\nwith collect(path) as paths\ncall apoc.gephi.add(null,"workspace1",paths) yield nodes, relationships\nreturn nodes, relationships;\n```\nThen you should see the graph populating in Gephi', type: 'message', }, - id: '208038', + _id: '208038', }, { attributes: { @@ -20844,7 +20844,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U7XQCB9R9> Take a look at part 1 and 2 of <https://maxdemarzi.com/2017/03/30/building-a-twitter-clone-with-neo4j-part-one/> and you can see how to build your own API directly on Neo4j ala micro-service.', type: 'message', }, - id: '208090', + _id: '208090', }, { attributes: { @@ -20854,7 +20854,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Wow, this is an absolute gold mine. I think I’ll be digging in deep here.\n\nAfter combing through parts 1-4 or so I still have these questions (maybe I just overlooked their answers):\n\n(1) Where does the user session management happen on the backend? Like in Rails, managing the session cookie and such.\n\n(2) Maybe related: how do these Java classes (like for the User API) snap into whatever web server they’re running under? (I’m inferring that Neo4J _is_ the web server and that these classes are extensions that handle the custom routes you’ve defined, but I don’t see where the hookup part is that actually makes your classes runnable as a web service).', type: 'message', }, - id: '208110', + _id: '208110', }, { attributes: { @@ -20864,7 +20864,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "2) They hook into Neo4j's web server since we have our own REST API, it just extends that.", type: 'message', }, - id: '208111', + _id: '208111', }, { attributes: { @@ -20874,7 +20874,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '1) it doesn\'t. It\'s just a stateless "micro service".', type: 'message', }, - id: '208112', + _id: '208112', }, { attributes: { @@ -20884,7 +20884,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Ok, I haven’t used micro services before. So it must authenticate on every call and send with each call whatever inputs are required. Right?', type: 'message', }, - id: '208113', + _id: '208113', }, { attributes: { @@ -20894,7 +20894,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '(Inputs: meaning, like a pure function, it doesn’t depend on any state and expects no side effects)', type: 'message', }, - id: '208114', + _id: '208114', }, { attributes: { @@ -20904,7 +20904,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "So I lied, it looks like we can use the session within extensions. I've just never done it. ( <https://www.geekmj.org/jersey/working-with-request-cookie-in-jersey-jax-rs-guide-313/> )", type: 'message', }, - id: '208115', + _id: '208115', }, { attributes: { @@ -20914,7 +20914,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Oh, well, anyway, it just occurs to me that I\'m probably confusing the normal Rails MVC pattern where you have a SessionController and a totally REST API, which would involve authentication with each call. After all, the "S" is for stateless...\n\nI think this gets me far enough along down this path for now. Thanks so much for your help!', type: 'message', }, - id: '208117', + _id: '208117', }, { attributes: { @@ -20924,7 +20924,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I really do think that as I build out my app model and such, I'll be referencing your blog series a lot. Thanks so much for that.", type: 'message', }, - id: '208118', + _id: '208118', }, { attributes: { @@ -20934,7 +20934,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I have done it but not able to integrate this with Neo4j AppImage', type: 'message', }, - id: '208823', + _id: '208823', }, { attributes: { @@ -20944,7 +20944,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'neo4j desktop ? is a standalone download which allows you to install different versions of Neo4j', type: 'message', }, - id: '208827', + _id: '208827', }, { attributes: { @@ -20954,7 +20954,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'And it has a "Plugins" tab that allows you to install APOC', type: 'message', }, - id: '208828', + _id: '208828', }, { attributes: { @@ -20964,7 +20964,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello <@U08J18KHB>: I just saw yor message and I am not getting any "pluggins" tab.', type: 'message', }, - id: '208829', + _id: '208829', }, { attributes: { @@ -20974,7 +20974,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Yes Neo4j Desktop 1.0.4.', type: 'message', }, - id: '208831', + _id: '208831', }, { attributes: { @@ -20984,7 +20984,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'If you have a database there is "Manage"', type: 'message', }, - id: '208833', + _id: '208833', }, { attributes: { @@ -20994,7 +20994,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'and then there are `Details Logs Terminal Settings Plugins Upgrade`', type: 'message', }, - id: '208834', + _id: '208834', }, { attributes: { @@ -21004,7 +21004,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks', type: 'message', }, - id: '208835', + _id: '208835', }, { attributes: { @@ -21014,7 +21014,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Got it', type: 'message', }, - id: '208836', + _id: '208836', }, { attributes: { @@ -21024,7 +21024,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hello all. I am trying to find a way to do Machine Learning using the data in the Neo4j Database. Couldn't find any direct way to do so. Currently, we are reading the data using Spark and then use MLlib in Spark to achieve the same result. Can someone suggest a better way?", type: 'message', }, - id: '207244', + _id: '207244', }, { attributes: { @@ -21034,7 +21034,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi Ankit. We are also investigating ML + graphs. Would be good to share any findings. I've found these: <https://github.com/neo4j-contrib/neo4j-ml-procedures> and there are several examples of decision engines, <https://www.youtube.com/watch?v=jiE3wsrVUQs>", type: 'message', }, - id: '208983', + _id: '208983', }, { attributes: { @@ -21044,7 +21044,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hey, I am having an issue (127.0.0.1 refused to connect) connecting to <http://127.0.0.1:7474/browser/> I am running Neo4j as a docker container in a VS 2017 project', type: 'message', }, - id: '209160', + _id: '209160', }, { attributes: { @@ -21054,7 +21054,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'did you expose your ports? `-p 7474:7474`', type: 'message', }, - id: '209169', + _id: '209169', }, { attributes: { @@ -21064,7 +21064,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I should have also mentioned you'll need to expose the `7687` port as well since the browser will want to use that for the bolt protocol.", type: 'message', }, - id: '209205', + _id: '209205', }, { attributes: { @@ -21074,7 +21074,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'yes they are exposed. This happened when I put in my parameters to get the latest Neo4j version. I went back to the version I was using before 3.2.1 and it worked fine', type: 'message', }, - id: '209283', + _id: '209283', }, { attributes: { @@ -21084,7 +21084,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I am not sure if it's some instability in the latest version", type: 'message', }, - id: '209284', + _id: '209284', }, { attributes: { @@ -21094,7 +21094,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "This is probably a broad question. But would love to hear ideas of how to achieve this: what's the best way to scoring and term weighting the search results in Neo4j?", type: 'message', }, - id: '209522', + _id: '209522', }, { attributes: { @@ -21104,7 +21104,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'we have a full course on that for realtime recommendations, some of it is also in the recommendations sandbox.', type: 'message', }, - id: '209524', + _id: '209524', }, { attributes: { @@ -21114,7 +21114,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'bascially you dou different matches for collab-filtering, content-similarity, other similarities, location, preferences etc.', type: 'message', }, - id: '209525', + _id: '209525', }, { attributes: { @@ -21124,7 +21124,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'and then combine the scores in the end', type: 'message', }, - id: '209526', + _id: '209526', }, { attributes: { @@ -21134,7 +21134,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '`:play <http://guides.neo4j.com/reco>`', type: 'message', }, - id: '209527', + _id: '209527', }, { attributes: { @@ -21144,7 +21144,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'So from my modest understanding: in order to score, I need to use legacy indexing and use lucene query language to order by score. From this article (<https://github.com/neo4jrb/neo4j/wiki/Indexing-VS-Legacy-Indexing> ), I understood that this is not supported by Neo4j anymore. And that I am better off integrating some elasticSearch tool if I want full text search capabilities. Is my conclusion correct?', type: 'message', }, - id: '209676', + _id: '209676', }, { attributes: { @@ -21154,7 +21154,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "it's still supported, e.g. with the explicit index procedures that were just released in 3.3", type: 'message', }, - id: '209816', + _id: '209816', }, { attributes: { @@ -21164,7 +21164,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi! I am looking for recent example/demo of using Neo4j with python or java. I have looked in github but the example on neo4j-examples repositories seems to be from the last version. Do you know where I could find that? Thanks', type: 'message', }, - id: '209845', + _id: '209845', }, { attributes: { @@ -21174,7 +21174,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'did you look at the bolt version?', type: 'message', }, - id: '209884', + _id: '209884', }, { attributes: { @@ -21184,7 +21184,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hello. Is it possible to unit test Neo4j when using the java driver?', type: 'message', }, - id: '210168', + _id: '210168', }, { attributes: { @@ -21194,7 +21194,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'yes, see: neo4j-harness in the docs: <http://neo4j.com/docs/developer-manual/current/extending-neo4j/procedures/#_set_up_a_new_project>', type: 'message', }, - id: '210248', + _id: '210248', }, { attributes: { @@ -21204,7 +21204,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi guys, a teaching manual has been prepared with Neo4j 3.01 community edition version, window installer (.exe). Seems the link I had on the manual does not lead to the download of this particular version exe file. And I don't have much time now to upgrade the manual to reflect the current installation process of the new Desktop version. Can anyone lead me to a link that can download Neo4j 3.01 or any other .exe file?", type: 'message', }, - id: '210270', + _id: '210270', }, { attributes: { @@ -21214,7 +21214,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'can you explain this in simpler words?\nyou can download neo4j 3.3.x desktop', type: 'message', }, - id: '210291', + _id: '210291', }, { attributes: { @@ -21224,7 +21224,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'or do you mean the old community edition UI ?', type: 'message', }, - id: '210292', + _id: '210292', }, { attributes: { @@ -21234,7 +21234,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi All, Can anyone please share 'JDBC-URL' and 'Driver Source'(executable JDBC driver file) to be used for importing data from Teradata to Neo4j. I have successfully did the connection for MySQL database with Neo4j. Stuck up here for Teradata. Thanks in advance!", type: 'message', }, - id: '210402', + _id: '210402', }, { attributes: { @@ -21244,7 +21244,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'You probably have to google it/find it in the teradata jdbc docs.', type: 'message', }, - id: '210459', + _id: '210459', }, { attributes: { @@ -21254,7 +21254,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'okay...just wanted to confirm. Thank you for the response!! :slightly_smiling_face:', type: 'message', }, - id: '210467', + _id: '210467', }, { attributes: { @@ -21264,7 +21264,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi everyone, I’m looking for a way to edit Neo4j databases visually. I have tried the demo/community versions of both Graphileon and Linkurious, but neither were very convincing. Does anyone on here know of other tools, or have any recommendations? many thanks', type: 'message', }, - id: '210485', + _id: '210485', }, { attributes: { @@ -21274,7 +21274,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U7YC1MQGY> there is graffeine which allows that. <https://github.com/julianbrowne/graffeine>', type: 'message', }, - id: '210493', + _id: '210493', }, { attributes: { @@ -21284,7 +21284,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'This one is more recent and looks quite nice: <https://github.com/adadgio/neo4j-js-ng2>', type: 'message', }, - id: '210495', + _id: '210495', }, { attributes: { @@ -21294,7 +21294,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08J18KHB> These look great, Thank you!', type: 'message', }, - id: '210530', + _id: '210530', }, { attributes: { @@ -21304,7 +21304,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi, I just downloaded Neo4j 3.3.1 Desktop edition, and I have a question. I see it is easy to install a new database in a project. I have an existing Neo4j database. How do I add the exiting database to a project?', type: 'message', }, - id: '210603', + _id: '210603', }, { attributes: { @@ -21314,7 +21314,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Either open the folder via the button and copy your graph.db folder into data/databases/graph.db', type: 'message', }, - id: '210614', + _id: '210614', }, { attributes: { @@ -21324,7 +21324,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'it should also work to run in `Manage`, in the `Terminal` tab to run `bin/neo4j-admin import --mode=database --from=/path/to/graph.db`', type: 'message', }, - id: '210615', + _id: '210615', }, { attributes: { @@ -21334,7 +21334,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hello. Running into Caused by: java.lang.ClassNotFoundException: org.springframework.data.neo4j.template.Neo4jTemplate which I believe is because I'm running Spring Boot 1.5.9 and Spring Data ReleaseTrain Kay-SR2 which resolves to spring-data-neo4j 5.0.2. I found a post (<https://github.com/spring-projects/spring-boot/issues/8687>) that says this is because Neo4jTemplate was removed in 5+. Anybody have any idea's on how I can resolve this or if I'll need to wait on 5.0 until I upgrade to Spring Boot 2.0?", type: 'message', }, - id: '210762', + _id: '210762', }, { attributes: { @@ -21344,7 +21344,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'please ask in <#C08J16K8X|neo4j-sdn-ogm>', type: 'message', }, - id: '210775', + _id: '210775', }, { attributes: { @@ -21354,7 +21354,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'We are receiving the error message `WebSocket connection failure. Due to security constraints in your web browser, the reason for the failure is not available to this Neo4j Driver. Please use your browsers development console to determine the root cause of the failure. Common reasons include the database being unavailable, using the wrong connection URL or temporary network problems. If you have enabled encryption, ensure your browser is configured to trust the certificate Neo4j is configured to use. WebSocket readyState is: 0`', type: 'message', }, - id: '211187', + _id: '211187', }, { attributes: { @@ -21364,7 +21364,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'how do you connect to neo4j?', type: 'message', }, - id: '211238', + _id: '211238', }, { attributes: { @@ -21374,7 +21374,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'best ask in <#C08J2BNPP|neo4j-javascript>', type: 'message', }, - id: '211239', + _id: '211239', }, { attributes: { @@ -21384,7 +21384,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U65UANCG2> which version of Neo4j, which os and which browser flavour ?', type: 'message', }, - id: '211574', + _id: '211574', }, { attributes: { @@ -21394,7 +21394,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U58A5L1AR> Mac, Neo4j Desktop\n1.0.10, when I use the button “open browser†-> it opens with Safari and there is no “button†`run` I can’t see. But I tried just copy/paste to Chrome a link with a browser and it works, I can see button “run†and I can run queries. It seems like Neo4j Desktop don’t work with Safari nicely?', type: 'message', }, - id: '211581', + _id: '211581', }, { attributes: { @@ -21404,7 +21404,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Hi, I was just wondering how I can specify a node's default value in the graph view in the Neo4j Browser (3.1.1) ...", type: 'message', }, - id: '212057', + _id: '212057', }, { attributes: { @@ -21414,7 +21414,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'do you mean the caption property?', type: 'message', }, - id: '212090', + _id: '212090', }, { attributes: { @@ -21424,7 +21424,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi guys, I have a requirement to load/insert Spanish translation words into Neo4j database. Words which has special characters are not inserting as it is. . Some character conversion is happening. For example, Años,DÃas ..etc . Can someone help on this ?', type: 'message', }, - id: '212226', + _id: '212226', }, { attributes: { @@ -21434,7 +21434,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'How are you doing the inserts, and how are you reading them back?', type: 'message', }, - id: '212227', + _id: '212227', }, { attributes: { @@ -21444,7 +21444,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Neo4j community storage limit is 34B nodes, 34B rels, 68B properties... Neo4j Enterprise comes with a second storage option with some crazy number for the limit', type: 'message', }, - id: '212446', + _id: '212446', }, { attributes: { @@ -21455,7 +21455,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks !', type: 'message', }, - id: '212564', + _id: '212564', }, { attributes: { @@ -21465,7 +21465,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi , a question about transactions of large bulks -> I have a custom etl process (that uses the community neo4jclient ) . Each time i schedule it , it collects ~13M nodes and ~25M rels and ingests them neo4j in 50K bulks ( using the unwind trick ). Recently i was asked to supprt deletions ( meaning , if the new batch of data ive collected doesnt contain a node/rel already in the DB , i need to delete it). The way i tackled this was opening a transaction that starts with each collection cycle , delete all nodes and rels within the transaction context , collect and ingest all the data and only then Commit the tx. The thing is that sometimes this explodes my heap. My Neo4j community is installed on a host with 64Gb ram and 4 cpus. I assign 35gb to heap and 15 to page cache. Still it seems it isnt enough for the tx. Any suggestions or a better approach to handle deletes? ', type: 'message', }, - id: '212743', + _id: '212743', }, { attributes: { @@ -21475,7 +21475,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'also batch deletes the same way you do with inserts', type: 'message', }, - id: '212753', + _id: '212753', }, { attributes: { @@ -21485,7 +21485,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '10x.. thats kind of what i do... but i end up with a huge transaction that holds all the deletes and new data (30M deletes of nodes and rels and 30M of node and rel merge statements). I notice that according to the db directory the data (*store.db*) sums to 25Gb. So i guess i run into heap issues because the tx requires at least that. But even with 30gb i still got memory errors. do u think theres a better way to handle deletions without having users see outdated / incorrect data and without downtime to the db?', type: 'message', }, - id: '212755', + _id: '212755', }, { attributes: { @@ -21495,7 +21495,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'In Neo4j Deskto you can just create different databases', type: 'message', }, - id: '213094', + _id: '213094', }, { attributes: { @@ -21505,7 +21505,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'How? Please tell', type: 'message', }, - id: '213095', + _id: '213095', }, { attributes: { @@ -21515,7 +21515,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U08J18KHB>', type: 'message', }, - id: '213097', + _id: '213097', }, { attributes: { @@ -21525,7 +21525,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi everyone, I am using Neo4j JDBC Driver with cluster mode, and I would like to know if there is a way to get the JDBC url of the master without using something like HA Proxy. If not possible, what do you recommend to handle failover if HA Proxy falls down. Thanks by advance.', type: 'message', }, - id: '213114', + _id: '213114', }, { attributes: { @@ -21535,7 +21535,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi Eric, we’re currently developing BOLT+ROUTING protocol, but will be in the next release…\nIf you wanna point to the master directly, it’s sufficient to put the master IP address in the URL (assuming it’s exposed)…', type: 'message', }, - id: '213122', + _id: '213122', }, { attributes: { @@ -21545,7 +21545,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Ok. But I guess if a new master is elected after the original falls down, then I will be pointing to the wrong one, am I right ? Will JDBC Driver next release support automatic routing ? Thanks a lot in advance.', type: 'message', }, - id: '213124', + _id: '213124', }, { attributes: { @@ -21555,7 +21555,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'You’re right…', type: 'message', }, - id: '213125', + _id: '213125', }, { attributes: { @@ -21565,7 +21565,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Yes, we’re working on automatic routing and more in general to support Causal Clustering', type: 'message', }, - id: '213126', + _id: '213126', }, { attributes: { @@ -21575,7 +21575,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'For a customer we inquiry the neo4j cluster apis to understand each node’s role and then we open the connection to the right one according to the operation we need to do (read or writes) and this is something we wanna embed into the driver…', type: 'message', }, - id: '213127', + _id: '213127', }, { attributes: { @@ -21585,7 +21585,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Actually, I am currently using Highly Available cluster mode, not Causal one. Is there a good reason to move to Causal ? Do you mean the next release will contain facilities to connect to master node only for Causal cluster ? When approximatively is expected next release ? Thanks a lot again !', type: 'message', }, - id: '213134', + _id: '213134', }, { attributes: { @@ -21595,7 +21595,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Is it possible to use Neo4j for handling auth? like could i swap out postgres in my django app and use Neo4j?', type: 'message', }, - id: '213143', + _id: '213143', }, { attributes: { @@ -21605,7 +21605,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'there is auth for neo4j users', type: 'message', }, - id: '213149', + _id: '213149', }, { attributes: { @@ -21615,7 +21615,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "for django you can check out <https://github.com/neo4j-contrib/django-neomodel>\nwe'd love some feedback on that", type: 'message', }, - id: '213150', + _id: '213150', }, { attributes: { @@ -21625,7 +21625,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'thank you!', type: 'message', }, - id: '213190', + _id: '213190', }, { attributes: { @@ -21635,7 +21635,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'hello there.. just had to wipe hard drive and whereas things were working fine before, for some reason I cannot connect to Neo4j (desktop) via python bolt protocol…. it gives me an invalid ip address, yet, (7686) ….. tried searching for the issue but cant find anything.. anyone point me to the right place?', type: 'message', }, - id: '213337', + _id: '213337', }, { attributes: { @@ -21645,7 +21645,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'okay. solved it by trail and error… seems replacing localhost:7687 with 127.0.0.1:7687 worked..', type: 'message', }, - id: '213338', + _id: '213338', }, { attributes: { @@ -21655,7 +21655,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hi everyone. From Neo4j latest documentation : "A Routing driver is created via a bolt+routing URI, for example: <bolt+routing://graph.example.com:7687>. The address in the URI must be that of a core server. This kind of driver uses the Bolt Routing Protocol and works in tandem with the cluster to route transactions to available cluster members." My question is : what happens if the core server that you supply the URI falls down ? Is failover handled by the driver ? Thanks by advance.', type: 'message', }, - id: '213475', + _id: '213475', }, { attributes: { @@ -21665,7 +21665,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'if your question is what happens if the instance core instance at <http://graph.example.com|graph.example.com> is down/not-reachable, then you will get a connection refused. you would need a load balancer in front of the instances to redirect to the available/reachable instance', type: 'message', }, - id: '213490', + _id: '213490', }, { attributes: { @@ -21675,7 +21675,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Hey Everybody, do you know whats the best workflow for exporting data from Postgre SQL to Neo4j?', type: 'message', }, - id: '213728', + _id: '213728', }, { attributes: { @@ -21685,7 +21685,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Look into the JDBC connector\n<https://neo4j.com/developer/kb/how-do-i-use-cypher-to-connect-to-a-rbms-using-jdbc>', type: 'message', }, - id: '213729', + _id: '213729', }, { attributes: { @@ -21695,7 +21695,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "<#C6L0GCM33|neo4j-desktop> #windows From the terminal I navigate to /bin and do command: neo4j restart and I get an error that the service cannot be found? I find this curious because everything from the desktop GUI functions. I'm trying to learn more about working from the command line. \"Invoke-Neo4j : Cannot find any service with service name 'neo4j'.\" Ultimately I'm trying to get the neo4j-shell-tools installed which unzipping and placing in the /lib folder isn't working", type: 'message', }, - id: '213723', + _id: '213723', }, { attributes: { @@ -21705,7 +21705,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U9373KH61> if you want to start Neo4j the way desktop does it - use `neo4j.bat console`', type: 'message', }, - id: '213735', + _id: '213735', }, { attributes: { @@ -21715,7 +21715,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "bin>neo4j.bat restart\nWARNING: This command does not appear to be running with\nadministrative rights. Some commands may fail e.g. Start/Stop\nInvoke-Neo4j : Cannot find any service with service name\n'neo4j'.\nAt line:1 char:421\n+ ... llation-3.3.2\\bin\\Neo4j-Management.psd1'; Exit\n(Invoke-Neo4j restart)\n+\n~~~~~~~~~~~~~~~~~~~~\n + CategoryInfo : NotSpecified: (:) [Write-Error],\n WriteErrorException\n + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.Wr\n iteErrorException,Invoke-Neo4j", type: 'message', }, - id: '213736', + _id: '213736', }, { attributes: { @@ -21725,7 +21725,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thanks for the suggestion, I tried it and I still get an error :disappointed:', type: 'message', }, - id: '213737', + _id: '213737', }, { attributes: { @@ -21735,7 +21735,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: '<@U9373KH61> are these logs the correct ones? Because they show the result of command that is different from the one I have suggested :slightly_smiling_face: use `neo4j.bat console` as this command does not create any Windows services.', type: 'message', }, - id: '213754', + _id: '213754', }, { attributes: { @@ -21745,7 +21745,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Yes, currently RNeo4j is the go-to driver for that', type: 'message', }, - id: '214942', + _id: '214942', }, { attributes: { @@ -21756,7 +21756,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Thank you, I am trying to connect to Neo4j Desktop 3.1.4 but I don\'t know how to use startGraph. \n\n```neo4j <- startGraph("<bolt://localhost:7687>")``` \n\nError in curl::curl_fetch_memory(url, handle = handle) : \n Protocol "bolt" not supported or disabled in libcurl', type: 'message', }, - id: '214959', + _id: '214959', }, { attributes: { @@ -21766,7 +21766,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'it uses the http api, so use <http://localhost:7474>', type: 'message', }, - id: '214973', + _id: '214973', }, { attributes: { @@ -21776,7 +21776,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "That doesn't sound right. Is this via the Desktop app, or which Neo4j install?", type: 'message', }, - id: '215015', + _id: '215015', }, { attributes: { @@ -21786,7 +21786,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'I have installed using the tar file that I received in the email. neo4j enterprise 3.3.0', type: 'message', }, - id: '215019', + _id: '215019', }, { attributes: { @@ -21796,7 +21796,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'If your instance is stopped, does the browser continue to load? (checking for a separate Neo4j instance possibly running behind the scenes)', type: 'message', }, - id: '215020', + _id: '215020', }, { attributes: { @@ -21806,7 +21806,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "No. When I shutdown using `bin/neo4j stop`, browser doesn't load.", type: 'message', }, - id: '215022', + _id: '215022', }, { attributes: { @@ -21816,7 +21816,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Is there another browser app you can try? Could be it's attempting to use cached credentials, you could try looking in the relevant browser settings", type: 'message', }, - id: '215023', + _id: '215023', }, { attributes: { @@ -21826,7 +21826,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "It says, site can't be reached. Which seems to be an expected behaviour", type: 'message', }, - id: '215024', + _id: '215024', }, { attributes: { @@ -21836,7 +21836,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "Right, so there's no separate Neo4j instance. We'll move on", type: 'message', }, - id: '215025', + _id: '215025', }, { attributes: { @@ -21846,7 +21846,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Okay. Let me try another browser app. Give me a minute', type: 'message', }, - id: '215026', + _id: '215026', }, { attributes: { @@ -21856,7 +21856,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Unfortunately, same error on Mozilla.', type: 'message', }, - id: '215027', + _id: '215027', }, { attributes: { @@ -21866,7 +21866,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: 'Are you able to try on later versions? Usually .0 installs land with their share of bugs. Our latest is 3.3.3 I think', type: 'message', }, - id: '215028', + _id: '215028', }, { attributes: { @@ -21876,7 +21876,7 @@ export const slackReplyToThreadedMessageWithNeo4jQueryResultPayload: GraphQueryR text: "I'm on neo4j 3.3.0. Do you want me to try 3.3.3?", type: 'message', }, - id: '215029', + _id: '215029', }, ], }, diff --git a/libs/shared/lib/querybuilder/pills/customFlowPills/relationpill/QueryRelationPill.tsx b/libs/shared/lib/querybuilder/pills/customFlowPills/relationpill/QueryRelationPill.tsx index 9747cd305..bd0a4a332 100644 --- a/libs/shared/lib/querybuilder/pills/customFlowPills/relationpill/QueryRelationPill.tsx +++ b/libs/shared/lib/querybuilder/pills/customFlowPills/relationpill/QueryRelationPill.tsx @@ -88,7 +88,7 @@ export const QueryRelationPill = memo((node: SchemaReactflowRelationNode) => { <RelationPill title={ <div className="flex flex-row w-full"> - <span className="flex-grow">{data?.name}</span> + <span className="flex-grow text-justify truncate">{data?.name}</span> <span className="pr-1"> <span> [</span> <input diff --git a/libs/shared/lib/querybuilder/pills/pilldropdown/PillDropdown.tsx b/libs/shared/lib/querybuilder/pills/pilldropdown/PillDropdown.tsx index 156337cd6..75cb652b6 100644 --- a/libs/shared/lib/querybuilder/pills/pilldropdown/PillDropdown.tsx +++ b/libs/shared/lib/querybuilder/pills/pilldropdown/PillDropdown.tsx @@ -28,7 +28,7 @@ const IconMap: IconMapType = { }; export const PillDropdown = (props: PillDropdownProps) => { - const forceOpen = true; + const forceOpen = false; const openNumbers: number[] = useMemo(() => { if (forceOpen || props.hovered) return props.attributes.map((_, i) => i); diff --git a/libs/shared/lib/vis/visualizations/nodelinkvis/components/utils.tsx b/libs/shared/lib/vis/visualizations/nodelinkvis/components/utils.tsx index 6fa1fb119..a4f4899cc 100644 --- a/libs/shared/lib/vis/visualizations/nodelinkvis/components/utils.tsx +++ b/libs/shared/lib/vis/visualizations/nodelinkvis/components/utils.tsx @@ -10,7 +10,7 @@ export function nodeColor(num: number) { // num = num % 4; // const col = '#000000'; let entityColors = Object.values(visualizationColors.GPSeq.colors[9]); - const col = visualizationColors.GPCat.colors[14][(num % (visualizationColors.GPCat.colors[14].length - 1)) - 1]; + const col = visualizationColors.GPCat.colors[14][num % visualizationColors.GPCat.colors[14].length]; return binaryColor(col); } diff --git a/libs/shared/lib/vis/visualizations/paohvis/paohvis.stories.tsx b/libs/shared/lib/vis/visualizations/paohvis/paohvis.stories.tsx index b22021f6a..e28bb916f 100644 --- a/libs/shared/lib/vis/visualizations/paohvis/paohvis.stories.tsx +++ b/libs/shared/lib/vis/visualizations/paohvis/paohvis.stories.tsx @@ -48,15 +48,15 @@ export const TestWithData = { args: { data: graphQueryBackend2graphQuery({ nodes: [ - { id: '1/a', label: 'a', attributes: { a: 's1' } }, - { id: '1/b1', label: 'b1', attributes: { a: 's1' } }, - { id: '1/b2', label: 'b2', attributes: { a: 's1' } }, - { id: '1/b3', label: 'b3', attributes: { a: 's1' } }, + { _id: '1/a', label: 'a', attributes: { a: 's1' } }, + { _id: '1/b1', label: 'b1', attributes: { a: 's1' } }, + { _id: '1/b2', label: 'b2', attributes: { a: 's1' } }, + { _id: '1/b3', label: 'b3', attributes: { a: 's1' } }, ], edges: [ - { id: '1c/z1', label: 'z1', from: '1/b1', to: '1/a', attributes: { a: 's1' } }, - { id: '1c/z2', label: 'z2', from: '1/a', to: '1/b1', attributes: { a: 's1' } }, - { id: '1c/z3', label: 'z3', from: '1/b2', to: '1/b3', attributes: { a: 's2' } }, + { _id: '1c/z1', label: 'z1', from: '1/b1', to: '1/a', attributes: { a: 's1' } }, + { _id: '1c/z2', label: 'z2', from: '1/a', to: '1/b1', attributes: { a: 's1' } }, + { _id: '1c/z3', label: 'z3', from: '1/b2', to: '1/b3', attributes: { a: 's2' } }, ], }), schema: SchemaUtils.schemaBackend2Graphology({ diff --git a/libs/shared/lib/vis/visualizations/semanticsubstratesvis/components/utils.ts b/libs/shared/lib/vis/visualizations/semanticsubstratesvis/components/utils.ts index 151aa8095..bf8a250c2 100644 --- a/libs/shared/lib/vis/visualizations/semanticsubstratesvis/components/utils.ts +++ b/libs/shared/lib/vis/visualizations/semanticsubstratesvis/components/utils.ts @@ -207,7 +207,7 @@ export function calcTextWidth(textArray: string | string[], maxLengthAllowed: nu const truncatedLabels: string[] = []; labels.forEach((rowLabel, index) => { - let truncatedText = rowLabel; + let truncatedText = rowLabel || ''; let truncatedWidth = 0; while (truncatedText.length > 0) { -- GitLab