ent
ent copied to clipboard
https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c * convert an example and see what it takes. started with `ent-rsvp/backend` @ https://github.com/lolopinto/ent/tree/example-esm * need to remove all `requires` e.g. when loading schema * confirm `npm run codegen`...
e.g. an edge that's shared across different types probably implemented with pattern support in edges and a way to reuse the same edge across things
there should be a `tsent init` command which will help create db, tsconfig.json, .gitignore maybe generate schema etc It can effectively do what https://github.com/lolopinto/ent-starter does
adding a field `prefs2` and trying to write to it complains because ts comes with a different version of the fields to be written. we need to pass the actual...
for example, indexing createdTime field in pattern
e.g. src/schema/foo.ts src/schema/blah/blah.ts, src/schema/blah/blah2.ts or support schemaGlob that are checked?
if you have a pattern that's used in multiple ents that has shared privacy, it's annoying to have to write that policy everywhere. maybe this is configurable? e.g. ```ts import...
map(), filter() etc added to queries e.g. https://github.com/lolopinto/ent/blob/fix-476-part2/examples/simple/src/ent/user.ts#L50-L53 from https://github.com/lolopinto/ent/pull/683 should be doable in the same query e.g. ```ts // async function const contactInfos = await this.queryContacts().queryEnts().asyncMap((contact)=> queryPlusEmails())); ``` vs...
I have a use case where I have a very low-level pattern to be used with multiple other patterns, but the API doesn't support it. There would only be a...