Skip to content

Instantly share code, notes, and snippets.

@OkayX6
OkayX6 / HowToUse.fs
Last active January 23, 2016 16:08
Neo4j simplified query AST in F# - Prototype - Non compileable!!
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(
@OkayX6
OkayX6 / CodingGuidelines.md
Last active October 26, 2017 09:02
Workflow

Coding style

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.