/**
This query is not recomended.
@example [['name', 'contains', 'Boo']] // Case sensitive
*/
export type QContains = [string, Contains, string];
*/
export type QFullText = [string, FullText, string];
/**
*/
export type QNear = [string, DoesNotMatchKeyInQuery, any[]];
/**
*/
export type QWithinKilometers = [string, DoesNotMatchKeyInQuery, any[]];
/**