From a402c77ce0cbc10f1da1130e63a56f1380dd4055 Mon Sep 17 00:00:00 2001 From: Wey Gu Date: Fri, 16 Aug 2024 17:49:51 +0800 Subject: [PATCH] feat: increase sample for schema as 1000 --- ngql/magic.py | 2 +- setup.py | 2 +- setup_ipython.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ngql/magic.py b/ngql/magic.py index 45fc09e..c34b6f4 100644 --- a/ngql/magic.py +++ b/ngql/magic.py @@ -35,7 +35,7 @@ rel_query_sample_edge = Template( """ MATCH ()-[e:`{{ edge_type }}`]->() -RETURN [src(e), dst(e)] AS sample_edge LIMIT 10 +RETURN [src(e), dst(e)] AS sample_edge LIMIT 10000 """ ) diff --git a/setup.py b/setup.py index e3c3752..1077579 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="jupyter_nebulagraph", - version="0.14.2", + version="0.14.3", author="Wey Gu", author_email="weyl.gu@gmail.com", description="Jupyter extension for NebulaGraph", diff --git a/setup_ipython.py b/setup_ipython.py index b73a26e..fb2eed4 100644 --- a/setup_ipython.py +++ b/setup_ipython.py @@ -5,7 +5,7 @@ setuptools.setup( name="ipython-ngql", - version="0.14.2", + version="0.14.3", author="Wey Gu", author_email="weyl.gu@gmail.com", description="Jupyter extension for NebulaGraph",