0

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?

ps_123
  • 1
  • 3

1 Answers1

0

Your action should be able to return the type json

type Mutation {
  action(arg1: String!): json!
}
Arjun Yelamanchili
  • 577
  • 1
  • 3
  • 16