()
| 29 | } |
| 30 | |
| 31 | toString(): string { |
| 32 | return JSONbig.stringify({ |
| 33 | method: this.method, |
| 34 | attribute: this.attribute, |
| 35 | values: this.values, |
| 36 | }); |
| 37 | } |
| 38 | |
| 39 | static equal = (attribute: string, value: QueryTypes): string => |
| 40 | new Query("equal", attribute, value).toString(); |