Results 4 issues of Ashley Xue

## Setup I have AInput that contains an inner BInput field that I want to setup like this: ``` @gqlInputObjectType() export class AInput { @gqlField({ class: "AInput", type: "BInput", })...

For example, I want to use the generated input type of the graphql create action for an ent, but I don't want to surface the create mutation itself. My current...

Setup is like this: ``` UserSchema: ... fields: { foodID: UUIDType({ fieldEdge: { schema: "Food", inverseEdge: "users" }, }), ... FoodSchema: ... edges: [ { name: "users", schemaName: "User", },...

I'm seeing the above error when running a mutation. It's just this specific case where I see this, most basic mutations work fine. The model setup looks like this: ```...