Skip to content

Commit

Permalink
Merge pull request #74 from wey-gu/show_schema_limit_1000
Browse files Browse the repository at this point in the history
feat: increase sample for schema as 10000
  • Loading branch information
wey-gu authored Aug 16, 2024
2 parents 17d8a96 + a402c77 commit f17465b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ngql/magic.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""
)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="jupyter_nebulagraph",
version="0.14.2",
version="0.14.3",
author="Wey Gu",
author_email="[email protected]",
description="Jupyter extension for NebulaGraph",
Expand Down
2 changes: 1 addition & 1 deletion setup_ipython.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ipython-ngql",
version="0.14.2",
version="0.14.3",
author="Wey Gu",
author_email="[email protected]",
description="Jupyter extension for NebulaGraph",
Expand Down

0 comments on commit f17465b

Please sign in to comment.