and(args)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| args | ...* |
❌ |
Retorna
Tip
Tipo: object
This returns a json with the query of the logical operator "and" built.
Ejemplos
eq(key, value)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| key | String |
❌ | This is the name of the field |
| value | String |
❌ | This is the value of the field |
Retorna
Tip
Tipo: object
This returns a json with the query of the operator "eq" built.
Ejemplos
gt(key, value)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| key | String |
❌ | This is the name of the field |
| value | String |
❌ | This is the value of the field |
Retorna
Tip
Tipo: object
This returns a json with the query of the operator "gt" built.
Ejemplos
gte(key, value)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| key | String |
❌ | This is the name of the field |
| value | String |
❌ | This is the value of the field |
Retorna
Tip
Tipo: object
This returns a json with the query of the operator "gte" built.
Ejemplos
in(key, value)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| key | String |
❌ | This is the name of the field |
| value | String |
❌ | This is the value of the field |
Retorna
Tip
Tipo: object
This returns a json with the query of the operator "in" built.
Ejemplos
like(key, value)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| key | String |
❌ | This is the name of the field |
| value | String |
❌ | This is the value of the field |
Retorna
Tip
Tipo: object
This returns a json with the query of the operator "like" built.
Ejemplos
lt(key, value)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| key | String |
❌ | This is the name of the field |
| value | String |
❌ | This is the value of the field |
Retorna
Tip
Tipo: object
This returns a json with the query of the operator "lt" built.
Ejemplos
lte(key, value)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| key | String |
❌ | This is the name of the field |
| value | String |
❌ | This is the value of the field |
Retorna
Tip
Tipo: object
This returns a json with the query of the operator "lte" built.
Ejemplos
neq(key, value)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| key | String |
❌ | This is the name of the field |
| value | String |
❌ | This is the value of the field |
Retorna
Tip
Tipo: object
This returns a json with the query of the operator "neq" built.
Ejemplos
or(args)
Parámetros
| Nombre | Tipo | Opcional | Descripción |
|---|---|---|---|
| args | ...* |
❌ |
Retorna
Tip
Tipo: object
This returns a json with the query of the logical operator "or" built.