OBJECT
ActionRequest
link GraphQL Schema definition
- type ActionRequest implements Node {
- # Action Definition of the action perfomed
- ActionDefinition! :
- # Specific JSON input used for this action encode as a String, this will confirm
- # to the Actions' Input JSON Schema
- String :
- # Unique Action Request Id
- String! :
- # Current status of the action request
- ActionRequestStatus! :
- # Datetime stamp from when this Action Request was initiated
- DateTime! :
- # Action was performed on this entity
- Entity! :
- # List of events asscoatied with this Action Request
- ActionRequestEvent!]! : [
- # node-compatible opaque globally unique id
- ID! :
- # User that initiated this request
- String! :
- # Datetime stamp from when this Action Request was last updated
- DateTime! :
- }