Unverified Commit 883bce0b authored by Vasili Novikov's avatar Vasili Novikov
Browse files

Fix edge properties strictness

parent 279e21f3
Showing with 2 additions and 0 deletions
+2 -0
......@@ -63,6 +63,7 @@ lazy_static! {
pub static ref TEXT_COLUMNS: HashSet<String> = {
let mut result = get_columns_of_type(SchemaPropertyType::Text);
result.insert("_type".to_string());
result.insert("edgeLabel".to_string());
result
};
}
......@@ -73,6 +74,7 @@ lazy_static! {
result.insert("version".to_string());
result.insert("_source".to_string());
result.insert("_target".to_string());
result.insert("sequence".to_string());
result
};
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment