Home Reference Source

core/datastore/operations/operation-type.js

/**
 * @private
 */
export const OperationType = {
  Create: 'create',
  Read: 'read',
  ReadById: 'readById',
  Update: 'update',
  Delete: 'delete',
  DeleteById: 'deleteById',
  Count: 'count',
  Clear: 'clear',
  Group: 'group'
};