OBJECT
ActionDefinition
link GraphQL Schema definition
- type ActionDefinition implements Node {
- # unique identifier for action definition
- String! :
- # action type is required to choose the invocation method
- ActionType! :
- # localized action description
- LocalizedString :
- # localized action name
- LocalizedString! :
- # hyper link to RESOURCE_HYPERLINK action type to perform action from user
- HyperLink :
- # Node-compatible opaque global identifier
- ID! :
- # JSON input argument schema to invoke the action
- JSON :
- # List of user roles who can access this action definition
- String!] : [
- # List of validation failures for this action definition, if there are any the
- # action cannot be performed.
- ActionDefinitionValidationFailureType!]! : [
- }