Skip to content

Commit

Permalink
[fix] id should be quoted (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
aquamatthias authored Mar 14, 2024
1 parent 2301910 commit bfb6986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixbackend/inventory/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ async def get_node_history(
) -> StreamingResponse:
result = await inventory().client.search_history(
graph_db,
query=f"id({node_id}) sort /changed_at desc limit {limit}",
query=f'id("{node_id}") sort /changed_at desc limit {limit}',
before=before,
after=after,
change=changes,
Expand Down

0 comments on commit bfb6986

Please sign in to comment.