Igor Borges

Results 53 comments of Igor Borges

But you'd have to serialize and deserialize it again. `copyWith` would be more performatic.

I've personally never used it, but it seems nice. I liked the future-proof for non-nullables and late variables!

Hey @lazylazyllama! Yeah, that sure would be nice (and we can think of a way of saving it to disk and still benefit from code completion). My only concern with...

Hey @vanelizarov, That's of course a quick way of doing it, but it doesn't solve the authentication problem I've mentioned before. Also, we're working on adding SDL support for schemas...

I previously used [this tool](https://github.com/comigor/artemis/blob/master/tool/fetch_schema.dart), but I'm not if it still works.

Hello @ram231! This was not in the radar until now, but it seems nice. We just need to check if `gql` parses it accordingly.

Hey @nickreynke! I have not, but if you're up to, I can help with guidance if you need!

As far as I understand, that's similar to my [proposal](https://github.com/comigor/artemis/discussions/244) of canonical types generation. The `User` class you're proposing is basically the canonical (1:1 match with schema's class with all...

My issue with shipping a version without considering some cases is to create a huge breaking change. Yesterday I did work on that proposal again and it already changed a...

Hi @GP4cK! In my work, for unit tests, we're doing your second example. Although kinda boring to write, it is surely safer than the first option. One of the teams...