We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34f5b7b commit 45d0225Copy full SHA for 45d0225
api/graph.py
@@ -28,7 +28,7 @@ def get_repos() -> List[str]:
28
password=os.getenv('FALKORDB_PASSWORD', None))
29
30
graphs = db.list_graphs()
31
- graphs = [g for g in graphs if not g.endswith('_git')]
+ graphs = [g for g in graphs if not (g.endswith('_git') or g.endswith('_schema'))]
32
return graphs
33
34
class Graph():
0 commit comments