@piiano/vault-client
Version:
Piiano Vault generated typescript client
14 lines • 415 B
TypeScript
/**
* The `like` query operator allows you to match a property value against a search pattern.
*
* Each key in the map is a property name, and the value is the pattern to match.
*
* The SQL equivalent of this query is:
*
* ```sql
* SELECT * FROM objects WHERE property1 LIKE pattern1 AND property2 LIKE pattern2;
* ```
*
*/
export type LikeMap = Record<string, any>;
//# sourceMappingURL=LikeMap.d.ts.map