Query Extensions
Creating an Extension
wire.data.select = function () {
let self = select.apply(null, arguments);
self.myMethod = function(){
///
}
}Methods
wire.data.select = function () {
...
self.category = function(value){
return self.eq("category", value);
}
}Custom Property
Last updated
Was this helpful?