Igor Borges
Igor Borges
Hey @micimize! Actually the decision to make Artemis use synthetic lib input rather than iterating over each file was done exactly for grouped files parsing, I just didn't had the...
I have a [WIP branch for processors](https://github.com/comigor/artemis/tree/middlewares) (just pushed it), but it may take some time to land. `build` limits a lot what a builder can do, specially when referencing...
Sorry, I didn't have time to focus on it yet.
Hey @danilolr, @amadeu01 That was the breaking change introduced in `1.0.0`. Before that, it was possible to generate mutiple files just by using a query glob. However, since `1.0.0`, I've...
I'm gonna mark this as a possible enhancement to the library: to be able to have ouput globs again.
Oh yeah, [people already gave me the idea](https://github.com/comigor/artemis/issues/18) of namespacing each query, like in this example, where we have two queries with a common type (`Customer`), with different fields. ```...
This should already be implemented just by enabling `add_query_prefix` on `schema_mapping`: ``` schema_mapping: - schema: rygapp.schema.json queries_glob: graphql/**.query.graphql output: lib/graphql/consultas.dart add_query_prefix: true ``` Could you test this approach and report...
Hello @edwjusti, thanks! Hmm I see. It may be related to https://github.com/comigor/artemis/issues/30, which was fixed by this PR https://github.com/comigor/artemis/pull/46. I bet that's the same issue with Enums, so I'll open...
Hello @micimize, how you doing? >Is there a way to generate classes from the base types of a schema? Is this planned? You mean generate all types from all the...
So you're developing another generator (for Moor) that uses Artemis? Could you point me to the repo? Are you depending on it as a library or as a `build` dependency?...