Cristian Ospina

Results 8 comments of Cristian Ospina

Yes, please. Tired of duplicating enums for DB and for GrpahQL types. Already found some some inconsistencies.

Sorry for the delay @lpil, for now is hard to know how to reproduce. Tried to isolate some things but the problem still persist. With one workaround in the article...

Sure: [mix.exs](https://gist.github.com/CristianOspina/b46d689f4ffe4570f6ec309447eecf92) [application.ex](https://gist.github.com/CristianOspina/182f7806bb4b7605ae4b460513678103)

[Here](https://gist.github.com/CristianOspina/f86a084a0687f8237074b7aafaab7f9c)

Hey @dyyce, in your `mix.exs` (example [here](https://gist.github.com/CristianOspina/b46d689f4ffe4570f6ec309447eecf92)) add this to _project_: `preferred_cli_env: ["test.once": :test]`. Then in _aliases_ duplicate the `test` alias, comment the original and replace the name in the...

Any progress on this? @benwilson512 @maartenvanvliet

I also had to deal with this problem. Putting together what the others have mentioned, I ended up with this: ```elixir # user_factory.ex def user_factory do %User{ first_name: Faker.Person.En.first_name(), last_name:...