Calista
01/23/2025, 7:33 AMCong Guo
01/27/2025, 8:39 AMChris Long
01/28/2025, 3:49 AMVinith Reddy
01/29/2025, 11:11 PMVinith Reddy
01/29/2025, 11:11 PMVinith Reddy
01/29/2025, 11:40 PMJulius Kiesian
01/30/2025, 1:19 PMJulius Kiesian
01/30/2025, 1:21 PMJulius Kiesian
01/30/2025, 1:21 PMElchin Gasimov
01/31/2025, 3:57 PMMarcos Pinedo
02/06/2025, 5:46 AMVinith Reddy
02/06/2025, 5:13 PMHannah Pollard
02/14/2025, 11:43 AMHannah Pollard
02/14/2025, 11:55 AMCalista
02/21/2025, 3:56 AMHanh Kiều Văn
02/21/2025, 9:54 AMDi B
02/22/2025, 11:16 PMClem
03/13/2025, 1:49 AMKirolos Tadrous
04/02/2025, 7:35 AMDi B
04/07/2025, 2:22 PMAdrian Ibañez
04/09/2025, 1:35 PMCarl
04/14/2025, 10:41 PMCarl
04/22/2025, 9:13 PMCarl
04/22/2025, 9:16 PMCarl
04/22/2025, 9:18 PMCarl
04/23/2025, 4:24 PMCarl
04/27/2025, 7:53 AMupsert_nodes
File "/Users/carl/external/miniconda3/envs/dev/lib/python3.10/site-packages/llama_index/graph_stores/nebula/nebula_property_graph.py", line 272, in upsert_nodes
self.structured_query(
File "/Users/carl/external/miniconda3/envs/dev/lib/python3.10/site-packages/llama_index/graph_stores/nebula/nebula_property_graph.py", line 550, in structured_query
raise Exception(
Exception: ('NebulaGraph query failed:', "SemanticError: No schema found for `Entity__'", 'Statement:', 'INSERT VERTEX `Entity__` (`name`) VALUES "1":($entity_0),"0":($entity_1),"1":($entity_2),"0":($entity_3),"1":($entity_4),"0":($entity_5),"1":($entity_6),"0":($entity_7),"1":($entity_8),"0":($entity_9),"1":($entity_10),"0":($entity_11),"1":($entity_12),"0":($entity_13),"1":($entity_14),"0":($entity_15),"1":($entity_16),"0":($entity_17),"1":($entity_18),"0":($entity_19),"1":($entity_20),"0":($entity_21),"1":($entity_22),"0":($entity_23),"1":($entity_24),"0":($entity_25),"1":($entity_26),"0":($entity_27),"1":($entity
.............. *clipped for brevity* ..............
my insert statement looks like this
graph_store.upsert_nodes(nodes)
and my graph store looks like this
graph_store = NebulaPropertyGraphStore(space=space_name, props_schema=", ".join(props_schema))
i am manually adding my schema tags and edge types in a separate codeblock. That seems to not matter as when i look at the source, the issue appears to be coming from some forced default nebula syntax entry within llama_index
Is it required that I copy the syntax used and manually add it to my schema? i'm confused on the correct way to work around this errorCarl
04/27/2025, 8:37 AMDDL
s and as such utilize the template at the top of that same source page, so ill have to implement the parts of it i need i guess? Im not sure what the "right" way to do this isCarl
04/27/2025, 10:14 PMCarl
04/27/2025, 10:15 PMException: ('NebulaGraph query failed:', "SemanticError: Unknown column `src_process_image_path' in schema", 'Statement:', 'INSERT VERTEX Props__......
and the props_schema string starts with
`src_process_image_path` STRING....