graphql-to-dart icon indicating copy to clipboard operation
graphql-to-dart copied to clipboard

generate dart classes and respective JsonSerializable transcoders

Results 10 graphql-to-dart issues
Sort by recently updated
recently updated
newest added

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.4.1 to 6.5.3. Commits 8647803 6.5.3 856fe4d signature: prevent malleability and overflows 6048941 6.5.2 9984964 package: bump dependencies ec735ed utils: leak less information in getNAF() 71e4e8e 6.5.1...

dependencies

Bumps [apollo-server-express](https://github.com/apollographql/apollo-server) from 2.4.8 to 2.14.2. Changelog Sourced from apollo-server-express's changelog. v2.14.2 Note: This release is is related to a GitHub Security Advisory published by the Apollo Server team. Please...

dependencies

```dart final testInput = CreateTestInput(fkID: '123', color: 'red'); print('${createTestInput.toJson()}'); // This prints { fkID: 123, color: red, otherAttr: null, id: null, ...} ``` This becomes a problem when trying to...

https://stackoverflow.com/questions/47523725/dart-map-to-class If a fromJson() constructor is added to the classes, it would increase operability with https://github.com/zino-app/graphql-flutter : ```dart final customer = Customer.fromJson(myQueryResult.data); ```

If we model the schema types completely, and treat selection sets __only__ as projections, we can avoid the trade off created with `mergedLeftWith /

closes #21 This is a pretty breaking change, right on the heals of the last one. It makes all classes `@immutable` in order to extend `Equatable`, thereby rendering many helpers...

If you create the gql right into the class (similar to apollo-angular), you would not need to import the gql files during runtime and also just bake the fragments into...

https://medium.com/dartlang/darts-built-value-for-immutable-object-models-83e2497922d4#.48dyezxcl

On the document that's using the fragment, the generated dart creates the get/set methods howeveer they throw an error. For example... > 'SendMomentMessageCreateMomentMessage.readReceipts=' ('void Function(List)') isn't a valid override of...

I can already tell that we're going to need/want more "value-based" equivalence helpers