We currently perform primary key constraint checks, but it would be useful to have arbitrary properties subject to a NOT NULL constraint (similar to DuckDB or Postgres).
Example usage:
CREATE NODE TABLE Person(
id UINT64,
name STRING NOT NULL,
birthDate DATE NOT NULL,
PRIMARY KEY(id)
)