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 067390b commit eb858b5Copy full SHA for eb858b5
src/neo4j_graphrag/schema.py
@@ -342,7 +342,7 @@ def _format_property(prop: Dict[str, Any]) -> Optional[str]:
342
or None if the property should be skipped (e.g., large lists).
343
"""
344
if prop["type"] == "STRING" and prop.get("values"):
345
- if prop.get("distinct_count", 11) > DISTINCT_VALUE_LIMIT:
+ if prop.get("distinct_count", DISTINCT_VALUE_LIMIT+1) > DISTINCT_VALUE_LIMIT:
346
return f'Example: "{_clean_string_values(prop["values"][0])}"'
347
else:
348
return (
0 commit comments