I'm having a bit of a problem with a custom serializer in flutter ferry graphql package:
I have used exactly the example from the ferry docs: https://ferrygraphql.com/docs/custom-scalars/#create-a-custom-serializer
But I always get the following message when running the builder_runner:
[SEVERE] built_value_generator:built_value on lib/schema.schema.gql.dart:
Error in BuiltValueGenerator for abstract class GDailyForecastInput implements Built<GDailyForecastInput, dynamic>.
Please make the following changes to use BuiltValue:
1. Make field dateStart have non-dynamic type. If you are already specifying a type, please make sure the type is correctly imported.
2. Make field dateEnd have non-dynamic type. If you are already specifying a type, please make sure the type is correctly imported.
[SEVERE] built_value_generator:built_value on lib/schema.schema.gql.dart:
Error in BuiltValueGenerator for abstract class GHourlyForecastInput implements Built<GHourlyForecastInput, dynamic>.
Please make the following changes to use BuiltValue:
1. Make field dateStart have non-dynamic type. If you are already specifying a type, please make sure the type is correctly imported.
2. Make field dateEnd have non-dynamic type. If you are already specifying a type, please make sure the type is correctly imported.
dateStart and dateEnd are query input values of type Date This is my type overwrite: type_overrides: Date: name: Date Does anyone one why this error happens? I really can't find out what the problem is
Date is define das a scalar in my schema.graphql file:
"""A date string with format `Y-m-d`, e.g. `2011-05-23`."""
scalar Date
Here is my build.yaml file:
targets:
$default:
builders:
gql_build|schema_builder:
enabled: true
options:
type_overrides:
Date:
name: Date
gql_build|ast_builder:
enabled: true
options:
type_overrides:
Date:
name: Date
gql_build|data_builder:
enabled: true
options:
type_overrides:
Date:
name: Date
schema: appdemo|lib/schema.graphql
gql_build|var_builder:
enabled: true
options:
type_overrides:
Date:
name: Date
schema: appdemo|lib/schema.graphql
gql_build|serializer_builder:
enabled: true
options:
schema: appdemo|lib/schema.graphql
custom_serializers:
- import: './serializers/date_serializer.dart'
name: DateSerializer
ferry_generator|req_builder:
enabled: true
options:
type_overrides:
Date:
name: Date
schema: appdemo|lib/schema.graphql
I tried debugging already. If I rename my scalar to DateTime
everything works fine.
(I also have a scalar DateTime
in my schema.graphql
file.)
It's only if I use the name Date
that I get this error.
Am I missing something?
Do I need to create additionally to the code in the documention a dart Date
class and link it or so?
Make sure you also include type_overrides for data_builder, var_builder, and req_builder.
For example:
Let's say I have two custom scalar, a primitive and a non-primitive type,
schema.graphql
:date_serializer.dart
:metadata_serializer.dart
:build.yaml
:After build you should now have both scalar overridden,
test.dart
:output
: