From 2212ece5a67bd28492abb185f9baf6176a0e2a50 Mon Sep 17 00:00:00 2001 From: Gal Shubeli Date: Tue, 14 Jan 2025 15:37:23 +0200 Subject: [PATCH] limit-to-500 --- api/index.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/index.py b/api/index.py index 79598a3..06e3b96 100644 --- a/api/index.py +++ b/api/index.py @@ -64,8 +64,8 @@ def graph_entities(): # Initialize the graph with the provided repo and credentials g = Graph(repo) - # Retrieve a sub-graph of up to 100 entities - sub_graph = g.get_sub_graph(100) + # Retrieve a sub-graph of up to 500 entities + sub_graph = g.get_sub_graph(500) logging.info(f"Successfully retrieved sub-graph for repo: {repo}") response = {