ZipponDB/schema/3struct
MrBounty 71e5f6eb1e Started to debug schema with multiple struct and some time keyword
Added NOW already and now debuging some stuff regarding filter and
parsing file of one struct when it should be another

Also moved query test into a seperated test file.
And some fix and changed in docs
2025-01-08 10:09:15 +01:00

24 lines
265 B
Plaintext

User (
name: str,
age: int,
email: str,
bday: date,
friends: []User,
posts: []Post,
comments: []Comment,
)
Post (
text: str,
at: datetime,
from: User,
comments: []Comment,
)
Comment (
text: str,
at: datetime,
from: User,
of: Post,
)