2016-09-26 09:28:47 +00:00
|
|
|
|
|
|
|
var Operation = require ('./operation');
|
|
|
|
|
2015-01-23 13:09:30 +00:00
|
|
|
/**
|
|
|
|
* The equivalent of a SQL operation.
|
|
|
|
**/
|
2016-09-26 09:28:47 +00:00
|
|
|
module.exports = new Class
|
2015-01-23 13:09:30 +00:00
|
|
|
({
|
2016-09-26 09:28:47 +00:00
|
|
|
Extends: Operation
|
2015-01-23 13:09:30 +00:00
|
|
|
,Tag: 'sql-filter-item'
|
2015-11-17 10:34:33 +00:00
|
|
|
,Properties:
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
2015-11-19 13:57:23 +00:00
|
|
|
primary:
|
|
|
|
{
|
|
|
|
type: Boolean
|
2015-11-17 10:34:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 13:57:23 +00:00
|
|
|
,primary: true
|
2015-01-23 13:09:30 +00:00
|
|
|
});
|