graphql_codegen 1.1.0 graphql_codegen: ^1.1.0 copied to clipboard
Simple, opinionated, codegen library for GraphQL. It allows you to generate serializers and client helpers to easily call and parse your data.
import 'package:graphql/client.dart';
import 'main.graphql.dart';
void main() async {
final client = GraphQLClient(
link: HttpLink("https://example.com"),
cache: GraphQLCache(store: InMemoryStore()),
);
final result = await client.query$FetchPerson(
Options$Query$FetchPerson(
variables: Variables$Query$FetchPerson(
id: "id1",
),
),
);
final parased = result.parsedData;
print(parased?.fetchPerson?.name);
}