Writing queries directly in Jupyter notebook cells
%load_ext jsoniqmagic%%jsoniq
{"foobar":1} Change the behavior to output DataFrames
%%jsoniq -pdf
for $i in 1 to 10000000
return { "foobar" : $i}%%jsoniq -df
for $i in 1 to 10000000
return { "foobar" : $i}Last updated