Graphdb cypher
GraphDBCypherReader #
Bases: BaseReader
图形数据库Cypher读取器。
将所有Cypher查询结果组合成LlamaIndex使用的Document类型。
Source code in llama_index/readers/graphdb_cypher/base.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
load_data #
load_data(
query: str, parameters: Optional[Dict] = None
) -> List[Document]
运行带有可选参数的Cypher,并将结果转换为文档。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query |
str
|
图形Cypher查询字符串。 |
required |
parameters |
Optional[Dict]
|
可选的查询参数。 |
None
|
Returns:
Type | Description |
---|---|
List[Document]
|
List[Document]: 文档列表。 |
Source code in llama_index/readers/graphdb_cypher/base.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|