Skip to content

Commit 45d0225

Browse files
committed
filter _schema graphs
1 parent 34f5b7b commit 45d0225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_repos() -> List[str]:
2828
password=os.getenv('FALKORDB_PASSWORD', None))
2929

3030
graphs = db.list_graphs()
31-
graphs = [g for g in graphs if not g.endswith('_git')]
31+
graphs = [g for g in graphs if not (g.endswith('_git') or g.endswith('_schema'))]
3232
return graphs
3333

3434
class Graph():

0 commit comments

Comments
 (0)