LittlerDataTracker
Updated 2023-10-14
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with data as (
select
livequery.live.udf_api('https://ipfs.io/ipfs/bafybeihaese4z7ac46p5gr6pruufyohsjfyzgkv3isjnnvhxevqx3chk34') as response
),
moving as (
select
response
,value as object
from data
,lateral flatten (input => response)
--:"Campo")
),
campo as (
select
object
--,value
from moving
where object[0] ilike '%Campo%'
--,lateral flatten (input => object)
),
value as (
select
object
,value
from campo
,lateral flatten (input => object)
),
Run a query to Download Data