Implement GraphQL & Flutter
问题 Is there a way to implement GraphQL in flutter? I was trying making the API call with the query and variables objects in a JSON object. type '_InternalLinkedHashMap' is not a subtype of type 'String' in type cast 回答1: I have been using graphql_flutter package for a few weeks now and it seems to work well enough. Here is an example: import 'package:graphql_flutter/graphql_flutter.dart' show Client, InMemoryCache; ... Future<dynamic> post( String body, { Map<String, dynamic> variables, }) async