mirror of
https://github.com/kharonsec/br-acc
synced 2026-04-26 01:25:06 +02:00
8 lines
180 B
Plaintext
8 lines
180 B
Plaintext
CREATE (u:User {
|
|
id: $id,
|
|
email: $email,
|
|
password_hash: $password_hash,
|
|
created_at: datetime()
|
|
})
|
|
RETURN u.id AS id, u.email AS email, toString(u.created_at) AS created_at
|