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 a174b12 commit c3f9fa2Copy full SHA for c3f9fa2
app/api/repo/[graph]/neighbors/route.ts
@@ -4,9 +4,8 @@ export async function POST(request: NextRequest, { params }: { params: { graph:
4
5
const nodeIds = (await request.json()).nodeIds.map((id: string) => Number(id));
6
const graphId = params.graph;
7
+
8
try {
- console.log(nodeIds, graphId);
9
-
10
const result = await fetch(`${process.env.BACKEND_URL}/get_neighbors`, {
11
method: 'POST',
12
body: JSON.stringify({ node_ids: nodeIds, repo: graphId }),
0 commit comments