(path: str, request: Request)
| 553 | |
| 554 | @router.get("/graph/{path:path}") |
| 555 | def get_graph(path: str, request: Request) -> JSONResponse: |
| 556 | return _proxy("GET", f"/api/plugins/graph/{path}", request, None) |
| 557 | |
| 558 | |
| 559 | @router.post("/graph/{path:path}") |