Ola Okelola
Ola Okelola
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...
after https://github.com/lolopinto/ent/pull/718 and really https://github.com/lolopinto/ent/pull/629, may not need it anymore
followup from https://github.com/lolopinto/ent/issues/610
non-important cleanup from https://github.com/lolopinto/ent/pull/739: * Share same struct across types * collapse TSTypeWithActionFields, TSWithSubFields, TSWithSubFields all into CustomTypeInfo * Cleanup ListWrapperType|NullableArrayListType|ArrayListType * checkUnionType, checkFooType in generate_ts_code.go or schema.go * JSON...
requires operators in postgres to get list of operators ```sql SELECT am.amname AS index_method, opc.opcname AS opclass_name, opc.opcintype::regtype AS indexed_type, opc.opcdefault AS is_default FROM pg_am am, pg_opclass opc WHERE opc.opcmethod...