skip to Main Content

How to parse through large JSONL data Node js – Shopify

I am trying to read through a large JSONL, maybe couple hundreds up to thousands or possibly million line, below is sample of of the data. {"id":"gid://shopify/Product/1921569226808"} {"id":"gid://shopify/ProductVariant/19435458986040","__parentId":"gid://shopify/Product/1921569226808"} {"id":"gid://shopify/Product/1921569259576"} {"id":"gid://shopify/ProductVariant/19435459018808","__parentId":"gid://shopify/Product/1921569259576"} {"id":"gid://shopify/Product/1921569292344"} {"id":"gid://shopify/ProductVariant/19435459051576","__parentId":"gid://shopify/Product/1921569292344"} {"id":"gid://shopify/Product/1921569325112"} {"id":"gid://shopify/ProductVariant/19435459084344","__parentId":"gid://shopify/Product/1921569325112"} {"id":"gid://shopify/Product/1921569357880"} {"id":"gid://shopify/ProductVariant/19435459117112","__parentId":"gid://shopify/Product/1921569357880"} {"id":"gid://shopify/ProductVariant/19435458986123","__parentId":"gid://shopify/Product/1921569226808"} So each line…

VIEW QUESTION
Back To Top
Search