Hi, I am just going to ask: is it possible to put @lambdaOnMutate on an interface and let it cascade to the implementing Type?
For example:
interface Audit @lambdaOnMutate {
...
createdBy: User!
timestamp: DateTime
}
type Work implements Audit {
...
job: String!
}
So when I add a new Work type with just the job field, Lambda would automatically create the other fields for me?