Skip to content

Commit

Permalink
Merge pull request #246 from vmasdani/master
Browse files Browse the repository at this point in the history
  • Loading branch information
eveningkid authored Apr 26, 2021
2 parents f111578 + 370e117 commit 0133dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/query-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { FieldAlias, FieldValue, Values } from "./data-types.ts";
import { Model, ModelDefaults, ModelFields, ModelSchema } from "./model.ts";

export type Query = string;
export type Operator = ">" | ">=" | "<" | "<=" | "=";
export type Operator = ">" | ">=" | "<" | "<=" | "=" | "like";
export type OrderDirection = "desc" | "asc";
export type QueryType =
| "create"
Expand Down

0 comments on commit 0133dee

Please sign in to comment.