Langchain_community: Fix issue with missing backticks in arango client (#29110)

- **Description:** Adds backticks to generate_schema function in the
arango graph client
- **Issue:** We experienced an issue with the generate schema function
when talking to our arango database where these backticks were missing
    - **Dependencies:** none
    - **Twitter handle:** @anangelofgrace
This commit is contained in:
Joshua Campbell 2025-01-09 16:00:10 +01:00 committed by GitHub
parent fa6f08faa1
commit 00dcc44739
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,7 +86,7 @@ class ArangoGraph:
limit_amount = ceil(sample_ratio * col_size) or 1
aql = f"""
FOR doc in {col_name}
FOR doc in `{col_name}`
LIMIT {limit_amount}
RETURN doc
"""