ent
ent copied to clipboard
should actually fix the issue if possible ala https://github.com/lolopinto/ent/issues/915 but adding documentation to https://ent.dev/docs/advanced-topics/cli#downgrade helpful
broken issue from https://github.com/lolopinto/ent/pull/847
referenced in passing in here https://github.com/lolopinto/ent/issues/38 and needs to be added as an option at some point
* generated `getEdgeInputData` needs a no builder option * generated add|remove edge APIs need a no-builder option
would be nice to have the following work ```ts title= StructType({ foo_list_id: UUIDListType({ fieldEdge: { schema: 'Foo', }, }), bar_id: UUIDType({ fieldEdge: { schema: 'Bar', }, }), }) ``` in...
we currently throw if a custom scalar or enum is referenced directly https://github.com/lolopinto/ent/blob/90db3c9984b4ab14a6342d720464fc18a081b164/ts/src/graphql/graphql.ts#L564-L575 possible that we can be smart and use the imports that we take to map to the...
a smaller step to https://github.com/lolopinto/ent/issues/1224? when ent throws exceptions, it throws an instance of https://github.com/lolopinto/ent/blob/93987f60cd5c5d005945d25bd73afb00f076d0e8/ts/src/core/privacy.ts#L27-L48 which could include the whole ent which has lots of stuff in ent and sometimes...
recently had to manually create the query but it seems like we should generate it the main reason not to is that's it unclear what the source id is ```ts...
we catch errors in observers and do nothing with them. we should provide an opportunity for people to be able to intercept and log the errors https://github.com/lolopinto/ent/pull/1428