One of my application requires Graphql schema that can have fields added & resolved on the fly based on the data. for example need something like
type Data {
email: [String]!
col1 :[Int]!
col2: [Int]!
...col3:
}
where col1 == nameOfColumnOne
, col2=nameOfColumnTwo
etc will & be added based on the data and possibly set on the fly.
I am kind of stuck on this and will appreciate some help on this one please.