graphql_client_codegen 0.16.0

Utility crate for graphql_client
Documentation
schema {
  query: Query
  mutation: Mutation
}

directive @defer on FIELD

type Query {
  fooBars: Self
}

type Self {
  fooBars: Result
}

union Result = Foo | Bar | FooBar

type Foo {
  fooField: String!
}

type Bar {
  barField: String!
}

type FooBar {
  fooBarField: String!
}