# GENERATED CODE - DO NOT MODIFY BY HAND. ANY MODIFICATION WILL BE LOST ON NEXT GENERATION
# Generated by Retrofit Graphql For Dart
# GitHub: https://github.com/Oualitsen/retrofit-Graphql-For-Dart/
# Site: https://graphlink.dev
# Pub.dev https://pub.dev/packages/graphlink

schema {
   query: Query
   subscription: Subscription
}



type Person {
   id: ID!
   name: String!
   age: Int!
}
type Query {
   persons: [Person!]!
}
type Subscription {
   personAdded: Person!
}




