This repository was archived by the owner on Oct 10, 2025. It is now read-only.
CREATE NODE when NODE TABLE has LIST, MAP properties in C++ api? #5430
Unanswered
dlawnsgh95
asked this question in
Q&A
Replies: 1 comment 3 replies
-
|
Hi @dlawnsgh95, The following works fine for me. Let me know if you have further questions.
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
for example, I create node table like
'''
int main(){
SystemConfig systemConfig;
auto database = make_unique("test", systemConfig);
connection->query(
"CREATE NODE TABLE User (name STRING, age INT64, tags STRING[],
test_property MAP(STRING,STRING[])")
)
}
'''
then how to add User NODE with query in c++ api?
Beta Was this translation helpful? Give feedback.
All reactions