(no title)
robbiejs | 1 year ago
I like the chain able queries, like:
``` const cats = await manifest .from('cats') .where('breed = siamese') .andWhere('active = true') .andWhere('birthDate > 2020-01-01') .find() ```
What is it inspired by?
robbiejs | 1 year ago
I like the chain able queries, like:
``` const cats = await manifest .from('cats') .where('breed = siamese') .andWhere('active = true') .andWhere('birthDate > 2020-01-01') .find() ```
What is it inspired by?
brunaxLorax|1 year ago
I also like the idea of transposing ORM-style queries in the browser to abstract the whole API response-request part.
morbicer|1 year ago