OBJECT

ActionRequest

link GraphQL Schema definition

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