storage-mutation-executeaction.gql 233 B

123456789101112
  1. mutation($targetKey: String!, $handler: String!) {
  2. storage {
  3. executeAction(targetKey: $targetKey, handler: $handler) {
  4. responseResult {
  5. succeeded
  6. errorCode
  7. slug
  8. message
  9. }
  10. }
  11. }
  12. }