Add a feature that convert GraphQL [Type System Definition](https://facebook.github.io/graphql/#sec-Type-System-Definition): ``` interface Character { id: String! name: String friends: [Character] appearsIn: [Episode] } ``` to config yaml file: ``` yaml Character: type: interface config: fields: id: type: "String!" name: type: "String" friends: type: "[Character]" appearsIn: type: "[Episode]" ```