Skip to content

Commit

Permalink
add saved-graphs route to python server
Browse files Browse the repository at this point in the history
  • Loading branch information
ricopinazo committed Nov 22, 2024
1 parent 1d47c2a commit 6419f73
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 6 deletions.
39 changes: 36 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ debug = 0

[workspace.dependencies]
#[public-storage]
pometry-storage = { version = ">=0.8.1", path = "pometry-storage" }
# pometry-storage = { version = ">=0.8.1", path = "pometry-storage" }
#[private-storage]
# pometry-storage = { path = "pometry-storage-private", package = "pometry-storage-private" }
pometry-storage = { path = "pometry-storage-private", package = "pometry-storage-private" }
async-graphql = { version = ">=7.0.5, <7.0.8", features = [
"dynamic-schema",
] } # 7.0.8+ is borked, see https://github.com/async-graphql/async-graphql/issues/1586
Expand Down
2 changes: 1 addition & 1 deletion raphtory-graphql/resources/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions raphtory-graphql/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ impl GraphServer {
.at("/", get(ui).post(GraphQL::new(schema)))
.at("/graph", get(ui))
.at("/search", get(ui))
.at("/saved-graphs", get(ui))
.at("/playground", get(ui))
.at("/health", get(health))
.with(CookieJarManager::new())
Expand Down

0 comments on commit 6419f73

Please sign in to comment.