neo4dart:使用Neo4j简化您的生活的Dart库
新Dart Neo4dart是一个库,充当的驱动程序。特征基本的CRUD操作安装将Neo4dart添加到项目的pubspec.yaml文件中并运行pub get: dependencies: neo4dart: '0.0.5'习俗如果你想使用驱动程序,你所要做的就是采用以下约定:一个节点必须用@Node()注释,它的属性用@Data()并且它应该有一个int id公共字段。 @Node () class Person { int id; @Data () String name; @Data () String address; }可以通过注解@Relationship()添加关系@Node () class Person { ... @Relationship ( "works with" ) List < Pe
文件列表
neo4dart-master.zip
(预估有个70文件)
neo4dart-master
.gitignore
80B
pubspec.yaml
439B
LICENSE
1KB
README.md
2KB
lib
src
neo4dart
client
get
暂无评论