We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This causes issues later during type conversion.
Specifically the following line:
https://github.com/dukefirehawk/angel/blob/9b85007072fdcd19bd79237ba2e3bf4e23c8021f/packages/framework/lib/src/core/map_service.dart#L87
If you amend the line to remove the serialization to an ISO 8601 string, then everything works as it should:
var now = DateTime.now(); //.toIso8601String();
Similarly the following lines would also need amending.
in the modify method: https://github.com/dukefirehawk/angel/blob/9b85007072fdcd19bd79237ba2e3bf4e23c8021f/packages/framework/lib/src/core/map_service.dart#L117
and in the update method: https://github.com/dukefirehawk/angel/blob/9b85007072fdcd19bd79237ba2e3bf4e23c8021f/packages/framework/lib/src/core/map_service.dart#L146
I raised an issue over at dart-backend/belatuk-examples#3 which highlights the problem in the graphql example.
I'm happy to make the changes to the MapService class and push a merge request if you like.
The text was updated successfully, but these errors were encountered:
Actually I'm having other issues now, as soon as I query nested objects. I'll investigate further and get back to this issue.
Sorry, something went wrong.
PR is always welcome.
No branches or pull requests
This causes issues later during type conversion.
Specifically the following line:
https://github.com/dukefirehawk/angel/blob/9b85007072fdcd19bd79237ba2e3bf4e23c8021f/packages/framework/lib/src/core/map_service.dart#L87
If you amend the line to remove the serialization to an ISO 8601 string, then everything works as it should:
Similarly the following lines would also need amending.
in the modify method:
https://github.com/dukefirehawk/angel/blob/9b85007072fdcd19bd79237ba2e3bf4e23c8021f/packages/framework/lib/src/core/map_service.dart#L117
and in the update method:
https://github.com/dukefirehawk/angel/blob/9b85007072fdcd19bd79237ba2e3bf4e23c8021f/packages/framework/lib/src/core/map_service.dart#L146
I raised an issue over at dart-backend/belatuk-examples#3 which highlights the problem in the graphql example.
I'm happy to make the changes to the MapService class and push a merge request if you like.
The text was updated successfully, but these errors were encountered: