Artur Czemiel
Artur Czemiel
So imagine you have big schema. Some fields have types that should be always the same in this schema, like: ``` people: [Person] _id: String! createdAt: Date! ``` So the...
Each node is required a field to transform to code from Graph. we should rethink node creation inside Graph
Right now we have ActiveField, ActiveInputName etc. Try to refactor it to take less code space
Add `*` field to construct a query with all scalar and enum fields. ```graphql enum Kind{ FISH BIRD } type Animal{ name: String! friends: [Animal!]! age: Int! kind: Kind! }...