ent icon indicating copy to clipboard operation
ent copied to clipboard

Results 109 ent issues
Sort by recently updated
recently updated
newest added

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`...

v0.2

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

formation

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

enhancement
schema
future

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...

hi-pri
future

for example, indexing createdTime field in pattern

future

e.g. src/schema/foo.ts src/schema/blah/blah.ts, src/schema/blah/blah2.ts or support schemaGlob that are checked?

future

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...

future

### Discussed in https://github.com/lolopinto/ent/discussions/586

future

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...

ent-query
future

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...

pattern
future