graphql_codegen 0.0.1 copy "graphql_codegen: ^0.0.1" to clipboard
graphql_codegen: ^0.0.1 copied to clipboard

outdated

Simple, opinionated, codegen library for GraphQL

Use this package as a library

Depend on it

Run this command:

With Dart:

 $ dart pub add graphql_codegen

This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):

dependencies:
  graphql_codegen: ^0.0.1

Alternatively, your editor might support dart pub get. Check the docs for your editor to learn more.

Import it

Now in your Dart code, you can use:

import 'package:graphql_codegen/builder.dart';
import 'package:graphql_codegen/context.dart';
import 'package:graphql_codegen/errors.dart';
import 'package:graphql_codegen/generator.dart';
import 'package:graphql_codegen/printer/clients/graphql.dart';
import 'package:graphql_codegen/printer/clients/graphql_flutter.dart';
import 'package:graphql_codegen/printer/context.dart';
import 'package:graphql_codegen/printer/keywords.dart';
import 'package:graphql_codegen/printer/printer.dart';
import 'package:graphql_codegen/printer/utils.dart';
import 'package:graphql_codegen/visitor/context_visitor.dart';