Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我成功地使用了neography gem,但有一个小问题。我似乎无法指定我想要的节点类型。我正在使用的 API 是:
@neo.create_node({doors: 4, brand: 'ford', model: 'fiesta'})
我希望能够做相当于:
CREATE (c:Car {doors: 4, brand: 'ford', model: 'fiesta'})
查看源代码这似乎是不可能的,至少不是通过create_node。在此先感谢您的帮助!