We mainly use the coding conventions from F# Component Design Guidelines.
The formatting style should be consistent as much as possible throughout the code base.
| open Neo4jClient | |
| let client = new GraphClient(Uri("http://localhost:7474/db/data"), "login", "password") | |
| client.Connect() | |
| // Using Neo4jKey attribute to identify Node "primary key" | |
| let getUserNodeUsingPredefinedKey (id: string) = | |
| let userVar = Var.Make<UserNode>(Some "user", id) // This is how to define it | |
| let query = | |
| ReadQuery.Create( |
We mainly use the coding conventions from F# Component Design Guidelines.
The formatting style should be consistent as much as possible throughout the code base.