diff --git a/README.md b/README.md index 8b154f5f..bdd3231e 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Excellent. Set up done. Let's write some code! # Connect to Redis with a Client -You connect to Redis using a [*client*](docs/client.md). The `Client` class has methods to open, close, and excute raw commands against Redis. +You connect to Redis using a [*client*](docs/classes/Client.md). The `Client` class has methods to open, close, and excute raw commands against Redis. ```javascript let { Client } = require('redis-om') @@ -149,19 +149,19 @@ If you don't provide a URL, it defaults to `redis://localhost:6379`. # Define an Entity and a Schema -Ok. Let's start doing some object mapping. We'll start by defining an [*entity*](docs/entity.md) and a [*schema*](docs/schema.md). +Ok. Let's start doing some object mapping. We'll start by defining an [*entity*](docs/classes/Entity.md) and a [*schema*](docs/classes/Schema.md). ```javascript import { Entity, Schema } from 'redis-om' ``` -[Entities](docs/entity.md) are the classes that you work with. The thing being created, read, updated, and deleted. Any class that extends `Entity` is an entity. Usually, you'll define an entity with a single line of code: +[Entities](docs/classes/Entity.md) are the classes that you work with. The thing being created, read, updated, and deleted. Any class that extends `Entity` is an entity. Usually, you'll define an entity with a single line of code: ```javascript class Album extends Entity {} ``` -[Schemas](docs/schema.md) define the fields on your entity, their types, and how they are mapped internally to Redis. By default, entities map to Hashes in Redis but you can also use JSON, more on that later.: +[Schemas](docs/classes/Schema.md) define the fields on your entity, their types, and how they are mapped internally to Redis. By default, entities map to Hashes in Redis but you can also use JSON, more on that later.: ```javascript let schema = new Schema(Album, { @@ -175,11 +175,11 @@ let schema = new Schema(Album, { When you create a `Schema`, it modifies the entity you handed it, adding getters and setters for the properties you define. The type those getters and setters accept and return are defined with the type parameter above. Valid values are: `string`, `number`, `boolean`, or `array`. The first three do exactly waht you think they do—they define a property that is a String, Number, or Boolean. `array` specifically defines an array of Strings. -There are several other options available when defining a schema for your entity. Check them out in the [detailed documentation](docs/schema.md) for the `Schema` class. +There are several other options available when defining a schema for your entity. Check them out in the [detailed documentation](docs/classes/Schema.md) for the `Schema` class. # Reading and Writing with Repository -Now that we have a client and a schema we have what we need to make a [*repository*](docs/repository.md). A repository provides the means to read, write, and remove entities. Creating a repository is pretty straightforward: +Now that we have a client and a schema we have what we need to make a [*repository*](docs/classes/Repository.md). A repository provides the means to read, write, and remove entities. Creating a repository is pretty straightforward: ```javascript import { Repository } from 'redis-om' diff --git a/docs/README.md b/docs/README.md index 8180896d..c740cbd2 100644 --- a/docs/README.md +++ b/docs/README.md @@ -69,7 +69,7 @@ A constructor that creates an [Entity](classes/Entity.md) of type TEntity. #### Defined in -[lib/entity/entity.ts:10](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/entity/entity.ts#L10) +[lib/entity/entity.ts:10](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/entity/entity.ts#L10) ___ @@ -85,7 +85,7 @@ A JavaScript object containing the underlying data of an [Entity](classes/Entity #### Defined in -[lib/entity/entity.ts:4](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/entity/entity.ts#L4) +[lib/entity/entity.ts:4](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/entity/entity.ts#L4) ___ @@ -97,7 +97,7 @@ Contains instructions telling how to map a property on an [Entity](classes/Entit #### Defined in -[lib/schema/schema-definitions.ts:54](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L54) +[lib/schema/schema-definitions.ts:54](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L54) ___ @@ -117,7 +117,7 @@ A function that generates random [Entity IDs](classes/Entity.md#entityid). #### Defined in -[lib/schema/schema-definitions.ts:68](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L68) +[lib/schema/schema-definitions.ts:68](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L68) ___ @@ -136,7 +136,7 @@ contains a [FieldDefinition](README.md#fielddefinition) that tell Redis ŌM how #### Defined in -[lib/schema/schema-definitions.ts:59](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L59) +[lib/schema/schema-definitions.ts:59](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L59) ___ @@ -157,7 +157,7 @@ Configuration options for a [Schema](classes/Schema.md). #### Defined in -[lib/schema/schema-options.ts:7](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-options.ts#L7) +[lib/schema/schema-options.ts:7](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-options.ts#L7) ___ @@ -169,4 +169,4 @@ The type of data structure in Redis to map objects to. #### Defined in -[lib/client.ts:21](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/client.ts#L21) +[lib/client.ts:21](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/client.ts#L21) diff --git a/docs/classes/Client.md b/docs/classes/Client.md index 78a182bb..bb0de113 100644 --- a/docs/classes/Client.md +++ b/docs/classes/Client.md @@ -11,7 +11,7 @@ let client = new Client(); await client.open(); ``` -A Client is primarily used by a [Repository](Repository.md) and a client is required in +A Client is primarily used by a [Repository](Repository.md) which requires a client in its constructor. ## Table of contents @@ -47,7 +47,7 @@ Close the connection to Redis. #### Defined in -[lib/client.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/client.ts#L79) +[lib/client.ts:79](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/client.ts#L79) ___ @@ -77,7 +77,7 @@ The raw results of calling the Redis command. #### Defined in -[lib/client.ts:56](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/client.ts#L56) +[lib/client.ts:56](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/client.ts#L56) ___ @@ -107,7 +107,7 @@ A repository for the provided schema. #### Defined in -[lib/client.ts:71](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/client.ts#L71) +[lib/client.ts:71](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/client.ts#L71) ___ @@ -129,4 +129,4 @@ Open a connection to Redis at the provided URL. #### Defined in -[lib/client.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/client.ts#L43) +[lib/client.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/client.ts#L43) diff --git a/docs/classes/Entity.md b/docs/classes/Entity.md index fc2e3cb4..2a1f879f 100644 --- a/docs/classes/Entity.md +++ b/docs/classes/Entity.md @@ -25,4 +25,4 @@ The generated entity ID. #### Defined in -[lib/entity/entity.ts:22](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/entity/entity.ts#L22) +[lib/entity/entity.ts:22](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/entity/entity.ts#L22) diff --git a/docs/classes/RedisError.md b/docs/classes/RedisError.md index 629a1156..fe3f26d9 100644 --- a/docs/classes/RedisError.md +++ b/docs/classes/RedisError.md @@ -44,7 +44,7 @@ Error.constructor #### Defined in -[lib/errors.ts:2](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/errors.ts#L2) +[lib/errors.ts:2](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/errors.ts#L2) ## Properties diff --git a/docs/classes/Repository.md b/docs/classes/Repository.md index f525cf34..9f7cd160 100644 --- a/docs/classes/Repository.md +++ b/docs/classes/Repository.md @@ -14,7 +14,7 @@ let repository = new Repository(schema, client); let foo = await repository.fetch('01FK6TCJBDK41RJ766A4SBWDJ9'); foo.aString = 'bar'; foo.aBoolean = false; -await repositroy.save(foo); +await repository.save(foo); ``` Be sure to use the repository to create a new instance of [Entity](Entity.md) you want @@ -24,7 +24,7 @@ to create before you save it: let foo = await repository.createEntity(); foo.aString = 'bar'; foo.aBoolean = false; -await repositroy.save(foo); +await repository.save(foo); ``` If you want to the [Repository.search](Repository.md#search) method, you need to create an index @@ -34,7 +34,7 @@ first, and you need RediSearch or RedisJSON installed on your instance of Redis: await repository.createIndex(); let entities = await repository.search() .where('aString').eq('bar') - .and('Aboolean).is.false().returnAll(); + .and('aBoolean').is.false().returnAll(); ``` ## Type parameters @@ -77,12 +77,12 @@ Constructs a new Repository. | Name | Type | Description | | :------ | :------ | :------ | -| `schema` | [`Schema`](Schema.md)<`TEntity`\> | The schema for this Repository. | +| `schema` | [`Schema`](Schema.md)<`TEntity`\> | The [Schema](Schema.md) for this Repository. | | `client` | [`Client`](Client.md) | An open [Client](Client.md). | #### Defined in -[lib/repository/repository.ts:60](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/repository/repository.ts#L60) +[lib/repository/repository.ts:60](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/repository/repository.ts#L60) ## Methods @@ -100,7 +100,7 @@ A newly created Entity. #### Defined in -[lib/repository/repository.ts:92](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/repository/repository.ts#L92) +[lib/repository/repository.ts:92](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/repository/repository.ts#L92) ___ @@ -117,7 +117,7 @@ that RediSearch or RedisJSON is installed on your instance of Redis. #### Defined in -[lib/repository/repository.ts:71](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/repository/repository.ts#L71) +[lib/repository/repository.ts:71](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/repository/repository.ts#L71) ___ @@ -135,7 +135,7 @@ on your instance of Redis. #### Defined in -[lib/repository/repository.ts:84](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/repository/repository.ts#L84) +[lib/repository/repository.ts:84](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/repository/repository.ts#L84) ___ @@ -161,7 +161,7 @@ The matching Entity. #### Defined in -[lib/repository/repository.ts:130](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/repository/repository.ts#L130) +[lib/repository/repository.ts:130](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/repository/repository.ts#L130) ___ @@ -184,7 +184,7 @@ not found, does nothing. #### Defined in -[lib/repository/repository.ts:151](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/repository/repository.ts#L151) +[lib/repository/repository.ts:151](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/repository/repository.ts#L151) ___ @@ -209,7 +209,7 @@ The ID of the Entity just saved. #### Defined in -[lib/repository/repository.ts:103](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/repository/repository.ts#L103) +[lib/repository/repository.ts:103](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/repository/repository.ts#L103) ___ @@ -228,4 +228,4 @@ A [Search](Search.md) object. #### Defined in -[lib/repository/repository.ts:162](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/repository/repository.ts#L162) +[lib/repository/repository.ts:162](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/repository/repository.ts#L162) diff --git a/docs/classes/Schema.md b/docs/classes/Schema.md index 76a28c82..8c509019 100644 --- a/docs/classes/Schema.md +++ b/docs/classes/Schema.md @@ -17,7 +17,7 @@ let schema = new Schema(Foo, { }); ``` -A Schema is primarily used by a [Repository](Repository.md) and a schema is required in +A Schema is primarily used by a [Repository](Repository.md) which requires a Schema in its constructor. ## Type parameters @@ -37,7 +37,6 @@ its constructor. - [dataStructure](Schema.md#datastructure) - [indexName](Schema.md#indexname) - [prefix](Schema.md#prefix) -- [redisSchema](Schema.md#redisschema) ### Methods @@ -65,7 +64,7 @@ its constructor. #### Defined in -[lib/schema/schema.ts:53](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema.ts#L53) +[lib/schema/schema.ts:53](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema.ts#L53) ## Accessors @@ -82,7 +81,7 @@ that this Schema uses to store [Entities](Entity.md) in Redis. #### Defined in -[lib/schema/schema.ts:72](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema.ts#L72) +[lib/schema/schema.ts:72](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema.ts#L72) ___ @@ -98,7 +97,7 @@ The configured name for the RediSearch index for this Schema. #### Defined in -[lib/schema/schema.ts:66](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema.ts#L66) +[lib/schema/schema.ts:66](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema.ts#L66) ___ @@ -114,21 +113,7 @@ The configured keyspace prefix in Redis for this Schema. #### Defined in -[lib/schema/schema.ts:63](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema.ts#L63) - -___ - -### redisSchema - -• `get` **redisSchema**(): `string`[] - -#### Returns - -`string`[] - -#### Defined in - -[lib/schema/schema.ts:73](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema.ts#L73) +[lib/schema/schema.ts:63](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema.ts#L63) ## Methods @@ -144,4 +129,4 @@ Generates a unique string using the configured [IdStrategy](../README.md#idstrat #### Defined in -[lib/schema/schema.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema.ts#L79) +[lib/schema/schema.ts:81](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema.ts#L81) diff --git a/docs/classes/Search.md b/docs/classes/Search.md index 1354aa1c..71923c00 100644 --- a/docs/classes/Search.md +++ b/docs/classes/Search.md @@ -48,7 +48,7 @@ #### Defined in -[lib/search/search.ts:26](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L26) +[lib/search/search.ts:26](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L26) ## Accessors @@ -62,7 +62,7 @@ #### Defined in -[lib/search/search.ts:31](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L31) +[lib/search/search.ts:31](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L31) ## Methods @@ -82,7 +82,7 @@ #### Defined in -[lib/search/search.ts:71](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L71) +[lib/search/search.ts:71](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L71) ▸ **and**(`subSearchFn`): [`Search`](Search.md)<`TEntity`\> @@ -98,7 +98,7 @@ #### Defined in -[lib/search/search.ts:72](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L72) +[lib/search/search.ts:72](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L72) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[lib/search/search.ts:36](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L36) +[lib/search/search.ts:36](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L36) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[lib/search/search.ts:77](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L77) +[lib/search/search.ts:77](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L77) ▸ **or**(`subSearchFn`): [`Search`](Search.md)<`TEntity`\> @@ -148,7 +148,7 @@ ___ #### Defined in -[lib/search/search.ts:78](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L78) +[lib/search/search.ts:78](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L78) ___ @@ -169,7 +169,7 @@ ___ #### Defined in -[lib/search/search.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L43) +[lib/search/search.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L43) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[lib/search/search.ts:50](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L50) +[lib/search/search.ts:50](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L50) ___ @@ -210,7 +210,7 @@ ___ #### Defined in -[lib/search/search.ts:65](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L65) +[lib/search/search.ts:65](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L65) ▸ **where**(`subSearchFn`): [`Search`](Search.md)<`TEntity`\> @@ -226,4 +226,4 @@ ___ #### Defined in -[lib/search/search.ts:66](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/search.ts#L66) +[lib/search/search.ts:66](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/search.ts#L66) diff --git a/docs/classes/Where.md b/docs/classes/Where.md index b67974f6..b504645a 100644 --- a/docs/classes/Where.md +++ b/docs/classes/Where.md @@ -40,4 +40,4 @@ #### Defined in -[lib/search/where.ts:2](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where.ts#L2) +[lib/search/where.ts:2](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where.ts#L2) diff --git a/docs/classes/WhereAnd.md b/docs/classes/WhereAnd.md index 45dc6544..b76205d7 100644 --- a/docs/classes/WhereAnd.md +++ b/docs/classes/WhereAnd.md @@ -37,7 +37,7 @@ #### Defined in -[lib/search/where-and.ts:7](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-and.ts#L7) +[lib/search/where-and.ts:7](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-and.ts#L7) ## Methods @@ -55,4 +55,4 @@ #### Defined in -[lib/search/where-and.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-and.ts#L13) +[lib/search/where-and.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-and.ts#L13) diff --git a/docs/classes/WhereArray.md b/docs/classes/WhereArray.md index f9823cb7..5a37cd89 100644 --- a/docs/classes/WhereArray.md +++ b/docs/classes/WhereArray.md @@ -90,7 +90,7 @@ #### Defined in -[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L55) +[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L55) ## Properties @@ -104,7 +104,7 @@ #### Defined in -[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L19) +[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L19) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L20) +[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L20) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L53) +[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L53) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L52) +[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L52) ## Accessors @@ -164,7 +164,7 @@ WhereField.does #### Defined in -[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L64) +[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L64) ___ @@ -182,7 +182,7 @@ WhereField.is #### Defined in -[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L60) +[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L60) ___ @@ -200,7 +200,7 @@ WhereField.not #### Defined in -[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L68) +[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L68) ## Methods @@ -225,7 +225,7 @@ WhereField.not #### Defined in -[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L37) +[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L37) ___ @@ -249,7 +249,7 @@ ___ #### Defined in -[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L79) +[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L79) ___ @@ -273,7 +273,7 @@ ___ #### Defined in -[lib/search/where-array.ts:8](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-array.ts#L8) +[lib/search/where-array.ts:8](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-array.ts#L8) ___ @@ -297,7 +297,7 @@ ___ #### Defined in -[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L42) +[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L42) ___ @@ -321,7 +321,7 @@ ___ #### Defined in -[lib/search/where-array.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-array.ts#L20) +[lib/search/where-array.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-array.ts#L20) ___ @@ -345,7 +345,7 @@ ___ #### Defined in -[lib/search/where-array.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-array.ts#L13) +[lib/search/where-array.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-array.ts#L13) ___ @@ -369,7 +369,7 @@ ___ #### Defined in -[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L43) +[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L43) ___ @@ -393,7 +393,7 @@ ___ #### Defined in -[lib/search/where-array.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-array.ts#L15) +[lib/search/where-array.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-array.ts#L15) ___ @@ -417,7 +417,7 @@ ___ #### Defined in -[lib/search/where-field.ts:8](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L8) +[lib/search/where-field.ts:8](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L8) ___ @@ -441,7 +441,7 @@ ___ #### Defined in -[lib/search/where-field.ts:9](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L9) +[lib/search/where-field.ts:9](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L9) ___ @@ -465,7 +465,7 @@ ___ #### Defined in -[lib/search/where-field.ts:11](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L11) +[lib/search/where-field.ts:11](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L11) ___ @@ -489,7 +489,7 @@ ___ #### Defined in -[lib/search/where-field.ts:10](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L10) +[lib/search/where-field.ts:10](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L10) ___ @@ -507,7 +507,7 @@ ___ #### Defined in -[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L23) +[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L23) ___ @@ -531,7 +531,7 @@ ___ #### Defined in -[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L26) +[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L26) ___ @@ -555,7 +555,7 @@ ___ #### Defined in -[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L29) +[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L29) ___ @@ -579,7 +579,7 @@ ___ #### Defined in -[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L25) +[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L25) ___ @@ -603,7 +603,7 @@ ___ #### Defined in -[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L28) +[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L28) ___ @@ -627,7 +627,7 @@ ___ #### Defined in -[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L32) +[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L32) ___ @@ -651,7 +651,7 @@ ___ #### Defined in -[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L35) +[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L35) ___ @@ -675,7 +675,7 @@ ___ #### Defined in -[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L31) +[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L31) ___ @@ -699,7 +699,7 @@ ___ #### Defined in -[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L34) +[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L34) ___ @@ -723,7 +723,7 @@ ___ #### Defined in -[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L13) +[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L13) ___ @@ -747,7 +747,7 @@ ___ #### Defined in -[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L15) +[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L15) ___ @@ -771,7 +771,7 @@ ___ #### Defined in -[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L16) +[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L16) ___ @@ -795,7 +795,7 @@ ___ #### Defined in -[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L14) +[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L14) ___ @@ -819,7 +819,7 @@ ___ #### Defined in -[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L17) +[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L17) ___ @@ -837,7 +837,7 @@ ___ #### Defined in -[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L75) +[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L75) ___ @@ -855,7 +855,7 @@ ___ #### Defined in -[lib/search/where-array.ts:22](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-array.ts#L22) +[lib/search/where-array.ts:22](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-array.ts#L22) ___ @@ -873,4 +873,4 @@ ___ #### Defined in -[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L22) +[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L22) diff --git a/docs/classes/WhereBoolean.md b/docs/classes/WhereBoolean.md index d09a2d55..04f6333b 100644 --- a/docs/classes/WhereBoolean.md +++ b/docs/classes/WhereBoolean.md @@ -95,7 +95,7 @@ #### Defined in -[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L55) +[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L55) ## Properties @@ -109,7 +109,7 @@ #### Defined in -[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L19) +[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L19) ___ @@ -123,7 +123,7 @@ ___ #### Defined in -[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L20) +[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L20) ___ @@ -137,7 +137,7 @@ ___ #### Defined in -[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L53) +[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L53) ___ @@ -151,7 +151,7 @@ ___ #### Defined in -[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L52) +[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L52) ___ @@ -161,7 +161,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:6](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L6) +[lib/search/where-boolean.ts:6](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L6) ## Accessors @@ -179,7 +179,7 @@ WhereField.does #### Defined in -[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L64) +[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L64) ___ @@ -197,7 +197,7 @@ WhereField.is #### Defined in -[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L60) +[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L60) ___ @@ -215,7 +215,7 @@ WhereField.not #### Defined in -[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L68) +[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L68) ## Methods @@ -240,7 +240,7 @@ WhereField.not #### Defined in -[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L37) +[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L37) ___ @@ -264,7 +264,7 @@ ___ #### Defined in -[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L79) +[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L79) ___ @@ -288,7 +288,7 @@ ___ #### Defined in -[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L39) +[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L39) ___ @@ -312,7 +312,7 @@ ___ #### Defined in -[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L42) +[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L42) ___ @@ -336,7 +336,7 @@ ___ #### Defined in -[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L45) +[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L45) ___ @@ -360,7 +360,7 @@ ___ #### Defined in -[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L40) +[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L40) ___ @@ -384,7 +384,7 @@ ___ #### Defined in -[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L43) +[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L43) ___ @@ -408,7 +408,7 @@ ___ #### Defined in -[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L46) +[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L46) ___ @@ -432,7 +432,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:8](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L8) +[lib/search/where-boolean.ts:8](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L8) ___ @@ -456,7 +456,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L13) +[lib/search/where-boolean.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L13) ___ @@ -480,7 +480,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L15) +[lib/search/where-boolean.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L15) ___ @@ -504,7 +504,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L14) +[lib/search/where-boolean.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L14) ___ @@ -522,7 +522,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:18](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L18) +[lib/search/where-boolean.ts:18](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L18) ___ @@ -546,7 +546,7 @@ ___ #### Defined in -[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L26) +[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L26) ___ @@ -570,7 +570,7 @@ ___ #### Defined in -[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L29) +[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L29) ___ @@ -594,7 +594,7 @@ ___ #### Defined in -[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L25) +[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L25) ___ @@ -618,7 +618,7 @@ ___ #### Defined in -[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L28) +[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L28) ___ @@ -642,7 +642,7 @@ ___ #### Defined in -[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L32) +[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L32) ___ @@ -666,7 +666,7 @@ ___ #### Defined in -[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L35) +[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L35) ___ @@ -690,7 +690,7 @@ ___ #### Defined in -[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L31) +[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L31) ___ @@ -714,7 +714,7 @@ ___ #### Defined in -[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L34) +[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L34) ___ @@ -738,7 +738,7 @@ ___ #### Defined in -[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L13) +[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L13) ___ @@ -762,7 +762,7 @@ ___ #### Defined in -[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L15) +[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L15) ___ @@ -786,7 +786,7 @@ ___ #### Defined in -[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L16) +[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L16) ___ @@ -810,7 +810,7 @@ ___ #### Defined in -[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L14) +[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L14) ___ @@ -834,7 +834,7 @@ ___ #### Defined in -[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L17) +[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L17) ___ @@ -852,7 +852,7 @@ ___ #### Defined in -[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L75) +[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L75) ___ @@ -870,7 +870,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L20) +[lib/search/where-boolean.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L20) ___ @@ -888,4 +888,4 @@ ___ #### Defined in -[lib/search/where-boolean.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L17) +[lib/search/where-boolean.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L17) diff --git a/docs/classes/WhereField.md b/docs/classes/WhereField.md index e3b9a545..355cd346 100644 --- a/docs/classes/WhereField.md +++ b/docs/classes/WhereField.md @@ -100,7 +100,7 @@ #### Defined in -[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L55) +[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L55) ## Properties @@ -110,7 +110,7 @@ #### Defined in -[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L19) +[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L19) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L20) +[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L20) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L53) +[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L53) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L52) +[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L52) ## Accessors @@ -154,7 +154,7 @@ ___ #### Defined in -[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L64) +[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L64) ___ @@ -168,7 +168,7 @@ ___ #### Defined in -[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L60) +[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L60) ___ @@ -182,7 +182,7 @@ ___ #### Defined in -[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L68) +[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L68) ## Methods @@ -203,7 +203,7 @@ ___ #### Defined in -[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L37) +[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L37) ___ @@ -223,7 +223,7 @@ ___ #### Defined in -[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L79) +[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L79) ___ @@ -243,7 +243,7 @@ ___ #### Defined in -[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L39) +[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L39) ___ @@ -263,7 +263,7 @@ ___ #### Defined in -[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L42) +[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L42) ___ @@ -283,7 +283,7 @@ ___ #### Defined in -[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L45) +[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L45) ___ @@ -303,7 +303,7 @@ ___ #### Defined in -[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L40) +[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L40) ___ @@ -323,7 +323,7 @@ ___ #### Defined in -[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L43) +[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L43) ___ @@ -343,7 +343,7 @@ ___ #### Defined in -[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L46) +[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L46) ___ @@ -363,7 +363,7 @@ ___ #### Defined in -[lib/search/where-field.ts:8](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L8) +[lib/search/where-field.ts:8](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L8) ___ @@ -383,7 +383,7 @@ ___ #### Defined in -[lib/search/where-field.ts:9](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L9) +[lib/search/where-field.ts:9](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L9) ___ @@ -403,7 +403,7 @@ ___ #### Defined in -[lib/search/where-field.ts:11](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L11) +[lib/search/where-field.ts:11](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L11) ___ @@ -423,7 +423,7 @@ ___ #### Defined in -[lib/search/where-field.ts:10](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L10) +[lib/search/where-field.ts:10](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L10) ___ @@ -437,7 +437,7 @@ ___ #### Defined in -[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L23) +[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L23) ___ @@ -457,7 +457,7 @@ ___ #### Defined in -[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L26) +[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L26) ___ @@ -477,7 +477,7 @@ ___ #### Defined in -[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L29) +[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L29) ___ @@ -497,7 +497,7 @@ ___ #### Defined in -[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L25) +[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L25) ___ @@ -517,7 +517,7 @@ ___ #### Defined in -[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L28) +[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L28) ___ @@ -537,7 +537,7 @@ ___ #### Defined in -[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L32) +[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L32) ___ @@ -557,7 +557,7 @@ ___ #### Defined in -[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L35) +[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L35) ___ @@ -577,7 +577,7 @@ ___ #### Defined in -[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L31) +[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L31) ___ @@ -597,7 +597,7 @@ ___ #### Defined in -[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L34) +[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L34) ___ @@ -617,7 +617,7 @@ ___ #### Defined in -[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L13) +[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L13) ___ @@ -637,7 +637,7 @@ ___ #### Defined in -[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L15) +[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L15) ___ @@ -657,7 +657,7 @@ ___ #### Defined in -[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L16) +[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L16) ___ @@ -677,7 +677,7 @@ ___ #### Defined in -[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L14) +[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L14) ___ @@ -697,7 +697,7 @@ ___ #### Defined in -[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L17) +[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L17) ___ @@ -711,7 +711,7 @@ ___ #### Defined in -[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L75) +[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L75) ___ @@ -729,7 +729,7 @@ ___ #### Defined in -[lib/search/where-field.ts:73](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L73) +[lib/search/where-field.ts:73](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L73) ___ @@ -743,4 +743,4 @@ ___ #### Defined in -[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L22) +[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L22) diff --git a/docs/classes/WhereHashBoolean.md b/docs/classes/WhereHashBoolean.md index c75b93a3..c8241c98 100644 --- a/docs/classes/WhereHashBoolean.md +++ b/docs/classes/WhereHashBoolean.md @@ -91,7 +91,7 @@ #### Defined in -[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L55) +[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L55) ## Properties @@ -105,7 +105,7 @@ #### Defined in -[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L19) +[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L19) ___ @@ -119,7 +119,7 @@ ___ #### Defined in -[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L20) +[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L20) ___ @@ -133,7 +133,7 @@ ___ #### Defined in -[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L53) +[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L53) ___ @@ -147,7 +147,7 @@ ___ #### Defined in -[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L52) +[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L52) ___ @@ -161,7 +161,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:6](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L6) +[lib/search/where-boolean.ts:6](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L6) ## Accessors @@ -179,7 +179,7 @@ WhereBoolean.does #### Defined in -[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L64) +[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L64) ___ @@ -197,7 +197,7 @@ WhereBoolean.is #### Defined in -[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L60) +[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L60) ___ @@ -215,7 +215,7 @@ WhereBoolean.not #### Defined in -[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L68) +[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L68) ## Methods @@ -240,7 +240,7 @@ WhereBoolean.not #### Defined in -[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L37) +[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L37) ___ @@ -264,7 +264,7 @@ ___ #### Defined in -[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L79) +[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L79) ___ @@ -288,7 +288,7 @@ ___ #### Defined in -[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L39) +[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L39) ___ @@ -312,7 +312,7 @@ ___ #### Defined in -[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L42) +[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L42) ___ @@ -336,7 +336,7 @@ ___ #### Defined in -[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L45) +[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L45) ___ @@ -360,7 +360,7 @@ ___ #### Defined in -[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L40) +[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L40) ___ @@ -384,7 +384,7 @@ ___ #### Defined in -[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L43) +[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L43) ___ @@ -408,7 +408,7 @@ ___ #### Defined in -[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L46) +[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L46) ___ @@ -432,7 +432,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:8](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L8) +[lib/search/where-boolean.ts:8](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L8) ___ @@ -456,7 +456,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L13) +[lib/search/where-boolean.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L13) ___ @@ -480,7 +480,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L15) +[lib/search/where-boolean.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L15) ___ @@ -504,7 +504,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L14) +[lib/search/where-boolean.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L14) ___ @@ -522,7 +522,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:18](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L18) +[lib/search/where-boolean.ts:18](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L18) ___ @@ -546,7 +546,7 @@ ___ #### Defined in -[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L26) +[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L26) ___ @@ -570,7 +570,7 @@ ___ #### Defined in -[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L29) +[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L29) ___ @@ -594,7 +594,7 @@ ___ #### Defined in -[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L25) +[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L25) ___ @@ -618,7 +618,7 @@ ___ #### Defined in -[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L28) +[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L28) ___ @@ -642,7 +642,7 @@ ___ #### Defined in -[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L32) +[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L32) ___ @@ -666,7 +666,7 @@ ___ #### Defined in -[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L35) +[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L35) ___ @@ -690,7 +690,7 @@ ___ #### Defined in -[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L31) +[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L31) ___ @@ -714,7 +714,7 @@ ___ #### Defined in -[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L34) +[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L34) ___ @@ -738,7 +738,7 @@ ___ #### Defined in -[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L13) +[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L13) ___ @@ -762,7 +762,7 @@ ___ #### Defined in -[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L15) +[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L15) ___ @@ -786,7 +786,7 @@ ___ #### Defined in -[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L16) +[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L16) ___ @@ -810,7 +810,7 @@ ___ #### Defined in -[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L14) +[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L14) ___ @@ -834,7 +834,7 @@ ___ #### Defined in -[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L17) +[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L17) ___ @@ -852,7 +852,7 @@ ___ #### Defined in -[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L75) +[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L75) ___ @@ -870,7 +870,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:24](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L24) +[lib/search/where-boolean.ts:24](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L24) ___ @@ -888,4 +888,4 @@ ___ #### Defined in -[lib/search/where-boolean.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L17) +[lib/search/where-boolean.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L17) diff --git a/docs/classes/WhereJsonBoolean.md b/docs/classes/WhereJsonBoolean.md index 2ae0d947..33f30607 100644 --- a/docs/classes/WhereJsonBoolean.md +++ b/docs/classes/WhereJsonBoolean.md @@ -91,7 +91,7 @@ #### Defined in -[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L55) +[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L55) ## Properties @@ -105,7 +105,7 @@ #### Defined in -[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L19) +[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L19) ___ @@ -119,7 +119,7 @@ ___ #### Defined in -[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L20) +[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L20) ___ @@ -133,7 +133,7 @@ ___ #### Defined in -[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L53) +[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L53) ___ @@ -147,7 +147,7 @@ ___ #### Defined in -[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L52) +[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L52) ___ @@ -161,7 +161,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:6](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L6) +[lib/search/where-boolean.ts:6](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L6) ## Accessors @@ -179,7 +179,7 @@ WhereBoolean.does #### Defined in -[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L64) +[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L64) ___ @@ -197,7 +197,7 @@ WhereBoolean.is #### Defined in -[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L60) +[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L60) ___ @@ -215,7 +215,7 @@ WhereBoolean.not #### Defined in -[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L68) +[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L68) ## Methods @@ -240,7 +240,7 @@ WhereBoolean.not #### Defined in -[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L37) +[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L37) ___ @@ -264,7 +264,7 @@ ___ #### Defined in -[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L79) +[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L79) ___ @@ -288,7 +288,7 @@ ___ #### Defined in -[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L39) +[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L39) ___ @@ -312,7 +312,7 @@ ___ #### Defined in -[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L42) +[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L42) ___ @@ -336,7 +336,7 @@ ___ #### Defined in -[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L45) +[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L45) ___ @@ -360,7 +360,7 @@ ___ #### Defined in -[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L40) +[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L40) ___ @@ -384,7 +384,7 @@ ___ #### Defined in -[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L43) +[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L43) ___ @@ -408,7 +408,7 @@ ___ #### Defined in -[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L46) +[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L46) ___ @@ -432,7 +432,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:8](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L8) +[lib/search/where-boolean.ts:8](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L8) ___ @@ -456,7 +456,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L13) +[lib/search/where-boolean.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L13) ___ @@ -480,7 +480,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L15) +[lib/search/where-boolean.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L15) ___ @@ -504,7 +504,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L14) +[lib/search/where-boolean.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L14) ___ @@ -522,7 +522,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:18](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L18) +[lib/search/where-boolean.ts:18](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L18) ___ @@ -546,7 +546,7 @@ ___ #### Defined in -[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L26) +[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L26) ___ @@ -570,7 +570,7 @@ ___ #### Defined in -[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L29) +[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L29) ___ @@ -594,7 +594,7 @@ ___ #### Defined in -[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L25) +[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L25) ___ @@ -618,7 +618,7 @@ ___ #### Defined in -[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L28) +[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L28) ___ @@ -642,7 +642,7 @@ ___ #### Defined in -[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L32) +[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L32) ___ @@ -666,7 +666,7 @@ ___ #### Defined in -[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L35) +[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L35) ___ @@ -690,7 +690,7 @@ ___ #### Defined in -[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L31) +[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L31) ___ @@ -714,7 +714,7 @@ ___ #### Defined in -[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L34) +[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L34) ___ @@ -738,7 +738,7 @@ ___ #### Defined in -[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L13) +[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L13) ___ @@ -762,7 +762,7 @@ ___ #### Defined in -[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L15) +[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L15) ___ @@ -786,7 +786,7 @@ ___ #### Defined in -[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L16) +[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L16) ___ @@ -810,7 +810,7 @@ ___ #### Defined in -[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L14) +[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L14) ___ @@ -834,7 +834,7 @@ ___ #### Defined in -[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L17) +[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L17) ___ @@ -852,7 +852,7 @@ ___ #### Defined in -[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L75) +[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L75) ___ @@ -870,7 +870,7 @@ ___ #### Defined in -[lib/search/where-boolean.ts:30](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L30) +[lib/search/where-boolean.ts:30](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L30) ___ @@ -888,4 +888,4 @@ ___ #### Defined in -[lib/search/where-boolean.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-boolean.ts#L17) +[lib/search/where-boolean.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-boolean.ts#L17) diff --git a/docs/classes/WhereNumber.md b/docs/classes/WhereNumber.md index 2d8880c1..88a97de3 100644 --- a/docs/classes/WhereNumber.md +++ b/docs/classes/WhereNumber.md @@ -90,7 +90,7 @@ #### Defined in -[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L55) +[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L55) ## Properties @@ -104,7 +104,7 @@ #### Defined in -[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L19) +[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L19) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L20) +[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L20) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L53) +[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L53) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L52) +[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L52) ## Accessors @@ -164,7 +164,7 @@ WhereField.does #### Defined in -[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L64) +[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L64) ___ @@ -182,7 +182,7 @@ WhereField.is #### Defined in -[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L60) +[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L60) ___ @@ -200,7 +200,7 @@ WhereField.not #### Defined in -[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L68) +[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L68) ## Methods @@ -225,7 +225,7 @@ WhereField.not #### Defined in -[lib/search/where-number.ts:39](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L39) +[lib/search/where-number.ts:39](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L39) ___ @@ -249,7 +249,7 @@ ___ #### Defined in -[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L79) +[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L79) ___ @@ -273,7 +273,7 @@ ___ #### Defined in -[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L39) +[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L39) ___ @@ -297,7 +297,7 @@ ___ #### Defined in -[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L42) +[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L42) ___ @@ -321,7 +321,7 @@ ___ #### Defined in -[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L45) +[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L45) ___ @@ -345,7 +345,7 @@ ___ #### Defined in -[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L40) +[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L40) ___ @@ -369,7 +369,7 @@ ___ #### Defined in -[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L43) +[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L43) ___ @@ -393,7 +393,7 @@ ___ #### Defined in -[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L46) +[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L46) ___ @@ -417,7 +417,7 @@ ___ #### Defined in -[lib/search/where-number.ts:11](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L11) +[lib/search/where-number.ts:11](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L11) ___ @@ -441,7 +441,7 @@ ___ #### Defined in -[lib/search/where-number.ts:45](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L45) +[lib/search/where-number.ts:45](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L45) ___ @@ -465,7 +465,7 @@ ___ #### Defined in -[lib/search/where-number.ts:47](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L47) +[lib/search/where-number.ts:47](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L47) ___ @@ -489,7 +489,7 @@ ___ #### Defined in -[lib/search/where-number.ts:46](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L46) +[lib/search/where-number.ts:46](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L46) ___ @@ -507,7 +507,7 @@ ___ #### Defined in -[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L23) +[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L23) ___ @@ -531,7 +531,7 @@ ___ #### Defined in -[lib/search/where-number.ts:49](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L49) +[lib/search/where-number.ts:49](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L49) ___ @@ -555,7 +555,7 @@ ___ #### Defined in -[lib/search/where-number.ts:50](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L50) +[lib/search/where-number.ts:50](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L50) ___ @@ -579,7 +579,7 @@ ___ #### Defined in -[lib/search/where-number.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L17) +[lib/search/where-number.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L17) ___ @@ -603,7 +603,7 @@ ___ #### Defined in -[lib/search/where-number.ts:23](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L23) +[lib/search/where-number.ts:23](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L23) ___ @@ -627,7 +627,7 @@ ___ #### Defined in -[lib/search/where-number.ts:51](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L51) +[lib/search/where-number.ts:51](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L51) ___ @@ -651,7 +651,7 @@ ___ #### Defined in -[lib/search/where-number.ts:52](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L52) +[lib/search/where-number.ts:52](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L52) ___ @@ -675,7 +675,7 @@ ___ #### Defined in -[lib/search/where-number.ts:28](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L28) +[lib/search/where-number.ts:28](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L28) ___ @@ -699,7 +699,7 @@ ___ #### Defined in -[lib/search/where-number.ts:34](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L34) +[lib/search/where-number.ts:34](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L34) ___ @@ -723,7 +723,7 @@ ___ #### Defined in -[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L13) +[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L13) ___ @@ -747,7 +747,7 @@ ___ #### Defined in -[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L15) +[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L15) ___ @@ -771,7 +771,7 @@ ___ #### Defined in -[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L16) +[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L16) ___ @@ -795,7 +795,7 @@ ___ #### Defined in -[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L14) +[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L14) ___ @@ -819,7 +819,7 @@ ___ #### Defined in -[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L17) +[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L17) ___ @@ -837,7 +837,7 @@ ___ #### Defined in -[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L75) +[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L75) ___ @@ -855,7 +855,7 @@ ___ #### Defined in -[lib/search/where-number.ts:54](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-number.ts#L54) +[lib/search/where-number.ts:54](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-number.ts#L54) ___ @@ -873,4 +873,4 @@ ___ #### Defined in -[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L22) +[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L22) diff --git a/docs/classes/WhereOr.md b/docs/classes/WhereOr.md index e6f07df3..e79a78e3 100644 --- a/docs/classes/WhereOr.md +++ b/docs/classes/WhereOr.md @@ -37,7 +37,7 @@ #### Defined in -[lib/search/where-or.ts:7](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-or.ts#L7) +[lib/search/where-or.ts:7](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-or.ts#L7) ## Methods @@ -55,4 +55,4 @@ #### Defined in -[lib/search/where-or.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-or.ts#L13) +[lib/search/where-or.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-or.ts#L13) diff --git a/docs/classes/WhereString.md b/docs/classes/WhereString.md index 523fe03c..3a2c14c8 100644 --- a/docs/classes/WhereString.md +++ b/docs/classes/WhereString.md @@ -90,7 +90,7 @@ #### Defined in -[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L55) +[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L55) ## Properties @@ -104,7 +104,7 @@ #### Defined in -[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L19) +[lib/search/where-field.ts:19](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L19) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L20) +[lib/search/where-field.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L20) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L53) +[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L53) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L52) +[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L52) ## Accessors @@ -164,7 +164,7 @@ WhereField.does #### Defined in -[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L64) +[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L64) ___ @@ -182,7 +182,7 @@ WhereField.is #### Defined in -[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L60) +[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L60) ___ @@ -200,7 +200,7 @@ WhereField.not #### Defined in -[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L68) +[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L68) ## Methods @@ -225,7 +225,7 @@ WhereField.not #### Defined in -[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L37) +[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L37) ___ @@ -249,7 +249,7 @@ ___ #### Defined in -[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L79) +[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L79) ___ @@ -273,7 +273,7 @@ ___ #### Defined in -[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L39) +[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L39) ___ @@ -297,7 +297,7 @@ ___ #### Defined in -[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L42) +[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L42) ___ @@ -321,7 +321,7 @@ ___ #### Defined in -[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L45) +[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L45) ___ @@ -345,7 +345,7 @@ ___ #### Defined in -[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L40) +[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L40) ___ @@ -369,7 +369,7 @@ ___ #### Defined in -[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L43) +[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L43) ___ @@ -393,7 +393,7 @@ ___ #### Defined in -[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L46) +[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L46) ___ @@ -417,7 +417,7 @@ ___ #### Defined in -[lib/search/where-string.ts:8](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-string.ts#L8) +[lib/search/where-string.ts:8](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-string.ts#L8) ___ @@ -441,7 +441,7 @@ ___ #### Defined in -[lib/search/where-string.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-string.ts#L13) +[lib/search/where-string.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-string.ts#L13) ___ @@ -465,7 +465,7 @@ ___ #### Defined in -[lib/search/where-string.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-string.ts#L15) +[lib/search/where-string.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-string.ts#L15) ___ @@ -489,7 +489,7 @@ ___ #### Defined in -[lib/search/where-string.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-string.ts#L14) +[lib/search/where-string.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-string.ts#L14) ___ @@ -507,7 +507,7 @@ ___ #### Defined in -[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L23) +[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L23) ___ @@ -531,7 +531,7 @@ ___ #### Defined in -[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L26) +[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L26) ___ @@ -555,7 +555,7 @@ ___ #### Defined in -[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L29) +[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L29) ___ @@ -579,7 +579,7 @@ ___ #### Defined in -[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L25) +[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L25) ___ @@ -603,7 +603,7 @@ ___ #### Defined in -[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L28) +[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L28) ___ @@ -627,7 +627,7 @@ ___ #### Defined in -[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L32) +[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L32) ___ @@ -651,7 +651,7 @@ ___ #### Defined in -[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L35) +[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L35) ___ @@ -675,7 +675,7 @@ ___ #### Defined in -[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L31) +[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L31) ___ @@ -699,7 +699,7 @@ ___ #### Defined in -[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L34) +[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L34) ___ @@ -723,7 +723,7 @@ ___ #### Defined in -[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L13) +[lib/search/where-field.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L13) ___ @@ -747,7 +747,7 @@ ___ #### Defined in -[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L15) +[lib/search/where-field.ts:15](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L15) ___ @@ -771,7 +771,7 @@ ___ #### Defined in -[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L16) +[lib/search/where-field.ts:16](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L16) ___ @@ -795,7 +795,7 @@ ___ #### Defined in -[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L14) +[lib/search/where-field.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L14) ___ @@ -819,7 +819,7 @@ ___ #### Defined in -[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L17) +[lib/search/where-field.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L17) ___ @@ -837,7 +837,7 @@ ___ #### Defined in -[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L75) +[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L75) ___ @@ -855,7 +855,7 @@ ___ #### Defined in -[lib/search/where-string.ts:17](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-string.ts#L17) +[lib/search/where-string.ts:17](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-string.ts#L17) ___ @@ -873,4 +873,4 @@ ___ #### Defined in -[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L22) +[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L22) diff --git a/docs/classes/WhereText.md b/docs/classes/WhereText.md index 1c3f5817..b8022a38 100644 --- a/docs/classes/WhereText.md +++ b/docs/classes/WhereText.md @@ -90,7 +90,7 @@ #### Defined in -[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L55) +[lib/search/where-field.ts:55](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L55) ## Properties @@ -104,7 +104,7 @@ #### Defined in -[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L53) +[lib/search/where-field.ts:53](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L53) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L52) +[lib/search/where-field.ts:52](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L52) ## Accessors @@ -136,7 +136,7 @@ WhereField.does #### Defined in -[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L64) +[lib/search/where-field.ts:64](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L64) ___ @@ -154,7 +154,7 @@ WhereField.exact #### Defined in -[lib/search/where-text.ts:24](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-text.ts#L24) +[lib/search/where-text.ts:24](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-text.ts#L24) ___ @@ -172,7 +172,7 @@ WhereField.exactly #### Defined in -[lib/search/where-text.ts:29](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-text.ts#L29) +[lib/search/where-text.ts:29](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-text.ts#L29) ___ @@ -190,7 +190,7 @@ WhereField.is #### Defined in -[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L60) +[lib/search/where-field.ts:60](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L60) ___ @@ -208,7 +208,7 @@ WhereField.not #### Defined in -[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L68) +[lib/search/where-field.ts:68](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L68) ## Methods @@ -233,7 +233,7 @@ WhereField.not #### Defined in -[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L37) +[lib/search/where-field.ts:37](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L37) ___ @@ -257,7 +257,7 @@ ___ #### Defined in -[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L79) +[lib/search/where-field.ts:79](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L79) ___ @@ -281,7 +281,7 @@ ___ #### Defined in -[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L39) +[lib/search/where-field.ts:39](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L39) ___ @@ -305,7 +305,7 @@ ___ #### Defined in -[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L42) +[lib/search/where-field.ts:42](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L42) ___ @@ -329,7 +329,7 @@ ___ #### Defined in -[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L45) +[lib/search/where-field.ts:45](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L45) ___ @@ -353,7 +353,7 @@ ___ #### Defined in -[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L40) +[lib/search/where-field.ts:40](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L40) ___ @@ -377,7 +377,7 @@ ___ #### Defined in -[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L43) +[lib/search/where-field.ts:43](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L43) ___ @@ -401,7 +401,7 @@ ___ #### Defined in -[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L46) +[lib/search/where-field.ts:46](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L46) ___ @@ -425,7 +425,7 @@ ___ #### Defined in -[lib/search/where-field.ts:8](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L8) +[lib/search/where-field.ts:8](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L8) ___ @@ -449,7 +449,7 @@ ___ #### Defined in -[lib/search/where-field.ts:9](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L9) +[lib/search/where-field.ts:9](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L9) ___ @@ -473,7 +473,7 @@ ___ #### Defined in -[lib/search/where-field.ts:11](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L11) +[lib/search/where-field.ts:11](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L11) ___ @@ -497,7 +497,7 @@ ___ #### Defined in -[lib/search/where-field.ts:10](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L10) +[lib/search/where-field.ts:10](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L10) ___ @@ -515,7 +515,7 @@ ___ #### Defined in -[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L23) +[lib/search/where-field.ts:23](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L23) ___ @@ -539,7 +539,7 @@ ___ #### Defined in -[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L26) +[lib/search/where-field.ts:26](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L26) ___ @@ -563,7 +563,7 @@ ___ #### Defined in -[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L29) +[lib/search/where-field.ts:29](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L29) ___ @@ -587,7 +587,7 @@ ___ #### Defined in -[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L25) +[lib/search/where-field.ts:25](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L25) ___ @@ -611,7 +611,7 @@ ___ #### Defined in -[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L28) +[lib/search/where-field.ts:28](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L28) ___ @@ -635,7 +635,7 @@ ___ #### Defined in -[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L32) +[lib/search/where-field.ts:32](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L32) ___ @@ -659,7 +659,7 @@ ___ #### Defined in -[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L35) +[lib/search/where-field.ts:35](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L35) ___ @@ -683,7 +683,7 @@ ___ #### Defined in -[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L31) +[lib/search/where-field.ts:31](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L31) ___ @@ -707,7 +707,7 @@ ___ #### Defined in -[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L34) +[lib/search/where-field.ts:34](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L34) ___ @@ -731,7 +731,7 @@ ___ #### Defined in -[lib/search/where-text.ts:9](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-text.ts#L9) +[lib/search/where-text.ts:9](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-text.ts#L9) ___ @@ -755,7 +755,7 @@ ___ #### Defined in -[lib/search/where-text.ts:14](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-text.ts#L14) +[lib/search/where-text.ts:14](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-text.ts#L14) ___ @@ -779,7 +779,7 @@ ___ #### Defined in -[lib/search/where-text.ts:21](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-text.ts#L21) +[lib/search/where-text.ts:21](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-text.ts#L21) ___ @@ -803,7 +803,7 @@ ___ #### Defined in -[lib/search/where-text.ts:20](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-text.ts#L20) +[lib/search/where-text.ts:20](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-text.ts#L20) ___ @@ -827,7 +827,7 @@ ___ #### Defined in -[lib/search/where-text.ts:22](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-text.ts#L22) +[lib/search/where-text.ts:22](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-text.ts#L22) ___ @@ -845,7 +845,7 @@ ___ #### Defined in -[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L75) +[lib/search/where-field.ts:75](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L75) ___ @@ -863,7 +863,7 @@ ___ #### Defined in -[lib/search/where-text.ts:33](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-text.ts#L33) +[lib/search/where-text.ts:33](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-text.ts#L33) ___ @@ -881,4 +881,4 @@ ___ #### Defined in -[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/search/where-field.ts#L22) +[lib/search/where-field.ts:22](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/search/where-field.ts#L22) diff --git a/docs/interfaces/ArrayField.md b/docs/interfaces/ArrayField.md index 55cc6e1a..b2cd3b41 100644 --- a/docs/interfaces/ArrayField.md +++ b/docs/interfaces/ArrayField.md @@ -33,7 +33,7 @@ The default field name in Redis is the key name defined in the #### Defined in -[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L7) +[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L7) ___ @@ -48,7 +48,7 @@ here to avoid those problems. Defaults to `|`. #### Defined in -[lib/schema/schema-definitions.ts:50](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L50) +[lib/schema/schema-definitions.ts:50](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L50) ___ @@ -60,4 +60,4 @@ Yep. It's an array. #### Defined in -[lib/schema/schema-definitions.ts:42](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L42) +[lib/schema/schema-definitions.ts:42](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L42) diff --git a/docs/interfaces/BooleanField.md b/docs/interfaces/BooleanField.md index 32474a19..f86bce85 100644 --- a/docs/interfaces/BooleanField.md +++ b/docs/interfaces/BooleanField.md @@ -32,7 +32,7 @@ The default field name in Redis is the key name defined in the #### Defined in -[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L7) +[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L7) ___ @@ -44,4 +44,4 @@ Yep. It's a boolean. #### Defined in -[lib/schema/schema-definitions.ts:36](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L36) +[lib/schema/schema-definitions.ts:36](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L36) diff --git a/docs/interfaces/Field.md b/docs/interfaces/Field.md index 2f5d92ab..be74f485 100644 --- a/docs/interfaces/Field.md +++ b/docs/interfaces/Field.md @@ -33,4 +33,4 @@ The default field name in Redis is the key name defined in the #### Defined in -[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L7) +[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L7) diff --git a/docs/interfaces/NumericField.md b/docs/interfaces/NumericField.md index b3efdfd6..7a0bf713 100644 --- a/docs/interfaces/NumericField.md +++ b/docs/interfaces/NumericField.md @@ -32,7 +32,7 @@ The default field name in Redis is the key name defined in the #### Defined in -[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L7) +[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L7) ___ @@ -44,4 +44,4 @@ Yep. It's a number. #### Defined in -[lib/schema/schema-definitions.ts:13](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L13) +[lib/schema/schema-definitions.ts:13](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L13) diff --git a/docs/interfaces/StringField.md b/docs/interfaces/StringField.md index dfb42d7b..11e2f49c 100644 --- a/docs/interfaces/StringField.md +++ b/docs/interfaces/StringField.md @@ -34,7 +34,7 @@ The default field name in Redis is the key name defined in the #### Defined in -[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L7) +[lib/schema/schema-definitions.ts:7](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L7) ___ @@ -49,7 +49,7 @@ here to avoid those problems. Defaults to `|`. #### Defined in -[lib/schema/schema-definitions.ts:30](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L30) +[lib/schema/schema-definitions.ts:30](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L30) ___ @@ -61,7 +61,7 @@ Enables full-text search on this field when set to `true`. Defaults to `false`. #### Defined in -[lib/schema/schema-definitions.ts:22](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L22) +[lib/schema/schema-definitions.ts:22](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L22) ___ @@ -73,4 +73,4 @@ Yep. It's a string. #### Defined in -[lib/schema/schema-definitions.ts:19](https://github.com/redis-developer/redis-om-node/blob/d4db235/lib/schema/schema-definitions.ts#L19) +[lib/schema/schema-definitions.ts:19](https://github.com/redis-developer/redis-om-node/blob/b9319e2/lib/schema/schema-definitions.ts#L19)