Neptune
NeptuneAnalyticsGraphStore #
Bases: NeptuneBaseGraphStore
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics.py
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
|
query #
query(query: str, params: dict = {}) -> Dict[str, Any]
Query Neptune Analytics graph.
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
NeptuneAnalyticsPropertyGraphStore #
Bases: NeptuneBasePropertyGraph
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics_property_graph.py
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
|
structured_query #
structured_query(query: str, param_map: Dict[str, Any] = None) -> Any
Run the structured query.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
The query to run |
required |
param_map
|
Dict[str, Any] | None
|
A dictionary of query parameters. Defaults to None. |
None
|
Raises:
Type | Description |
---|---|
NeptuneQueryException
|
An exception from Neptune with details |
Returns:
Name | Type | Description |
---|---|---|
Any |
Any
|
The results of the query |
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics_property_graph.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
|
vector_query #
vector_query(query: VectorStoreQuery, **kwargs: Any) -> Tuple[List[Any]]
Query the graph store with a vector store query.
Returns:
Type | Description |
---|---|
(nodes, score)
|
The nodes and their associated score |
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics_property_graph.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
|
upsert_nodes #
upsert_nodes(nodes: List[LabelledNode]) -> None
Upsert the nodes in the graph.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nodes
|
List[LabelledNode]
|
The list of nodes to upsert |
required |
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics_property_graph.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
|
NeptuneDatabaseGraphStore #
Bases: NeptuneBaseGraphStore
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/database.py
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
query #
query(query: str, params: dict = {}) -> Dict[str, Any]
Query Neptune database.
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/database.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
NeptuneDatabasePropertyGraphStore #
Bases: NeptuneBasePropertyGraph
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/database_property_graph.py
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
|
structured_query #
structured_query(query: str, param_map: Dict[str, Any] = None) -> Any
Run the structured query.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
The query to run |
required |
param_map
|
Dict[str, Any] | None
|
A dictionary of query parameters. Defaults to None. |
None
|
Raises:
Type | Description |
---|---|
NeptuneQueryException
|
An exception from Neptune with details |
Returns:
Name | Type | Description |
---|---|---|
Any |
Any
|
The results of the query |
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/database_property_graph.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
|
vector_query #
vector_query(query: VectorStoreQuery, **kwargs: Any) -> Tuple[List[Any]]
NOT SUPPORTED.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
VectorStoreQuery
|
description |
required |
Raises:
Type | Description |
---|---|
NotImplementedError
|
description |
Returns:
Type | Description |
---|---|
Tuple[List[Any]]
|
Tuple[List[LabelledNode] | List[float]]: description |
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/database_property_graph.py
79 80 81 82 83 84 85 86 87 88 89 90 91 |
|
upsert_nodes #
upsert_nodes(nodes: List[LabelledNode]) -> None
Upsert the nodes in the graph.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nodes
|
List[LabelledNode]
|
The list of nodes to upsert |
required |
Source code in llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/database_property_graph.py
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
|