Ben Boeckel

Results 538 comments of Ben Boeckel
trafficstars

If there's another issue to reconcile the internal dissonance here: > Your code must be hosted on GitHub, BitBucket, or GitLab and: > Gitlab support coming very soon! sure, closing...

The other issue with fragments is when they aren't used as a complete type: ```graphql query { ...SomeFragment anotherField } ``` Due to `serde(flatten)`, a `From` wouldn't work here. I'm...

Having now used fragments, I see that the way the code is generated, dumping fragments to the module space also is wanted. The `serde(flatten)` bit isn't important for this; each...

Well, fragments are always going to be in the *query* side, so how could they clash when sharing a schema namespace?

I'd recommend a milestone to help track things a bit more concretely :) .

Yeah, in [my usage](https://gitlab.kitware.com/utils/rust-ghostflow/blob/master/ghostflow-github/src/queries.rs) all structures are used (the only "unused" bit is `GraphQLQuery` not being used hence the `unused_import` suppression for the module, but that seems more an issue...

Note that schema element usage is tracked due to #116. The same could be done for the query side as well.