input ```proto message User { // Required. int64 id = 1 [graphql.field.name = "databaseId"]; } ``` output ```ts export const User = objectType({ name: "User", definition(t) { t.field.("databaseId", { type: nonNull("Int"), resolve(root) { return root.getId() } }); } }); ``` - [ ] object - [x] field - [ ] union - [ ] enum - [ ] enum value