Skip to content

Commit 2212ece

Browse files
committed
limit-to-500
1 parent c8ec9a4 commit 2212ece

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/index.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ def graph_entities():
6464
# Initialize the graph with the provided repo and credentials
6565
g = Graph(repo)
6666

67-
# Retrieve a sub-graph of up to 100 entities
68-
sub_graph = g.get_sub_graph(100)
67+
# Retrieve a sub-graph of up to 500 entities
68+
sub_graph = g.get_sub_graph(500)
6969

7070
logging.info(f"Successfully retrieved sub-graph for repo: {repo}")
7171
response = {

0 commit comments

Comments
 (0)