I am creating a hasura action, where output can be an array of object but object can have any key value pair hence I want to keep the output of hasura action as "any" can you please help?
Asked
Active
Viewed 140 times
1 Answers
0
Your action should be able to return the type json
type Mutation {
action(arg1: String!): json!
}

Arjun Yelamanchili
- 577
- 1
- 3
- 16