MR4online
MR4online
Hi! **Short:** How can I search for JSON-data without any tag? **Setup:** RedisSearch 2.6.0 + RedisJson 2.2.0 **Example:** some Old Data like: `{"name": "foo"}` some new Data like: `{"name": "bar",...
I try to set an index for RedisSearch using RedisJSON, but I'm getting an error: invalid type. FT.CREATE idx1 ON JSON SCHEMA $.name TEXT SORTABLE $.desc TEXT I looks like...
Hi there, is there a way to execute some more complex search queries? **Examples**: 1) FIND album WHERE `year` = 1990 OR `year` IS NULL (or undefined) [EDIT: this will...
hi, there! _Is it possible to save only the in the schema defined properties? Or to define properties, that will not be saved in redis?_ **Example:** Schema: ``` const test...
hi there, I wonder if there is a way to overwrite the default setter of the schema (I thought I read something like this a while ago). So, when I...
if I'm correct, all Entities with type `date` are saved as numbers (unix timestamps) in the redis json object. when reading the date, it is converted to JS `Date()` Objects....
Hi there, is this package still maintained? As far es I see it's created by @puzrin, but no action for 2+ years and no reactions to pull-requests. supporting dependency updates...
### Description Hi there. I do have a simple openapi.yaml with one Route "getAddress" and one Schema "Address". I want to export the SDK as class, so i created a...
Hi there, My OpenAPI schema looks like this: ``` ... "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/_default" } } } }, .... "components": {...
Hi there! the following **works in openapi-backend 5.11.1**: - `$ref: '#/components/schemas/Test'` - `$ref: './otherFile.yaml'` the following **does not work**: - `$ref: './otherFile.yaml/#/components/schemas/Test'` [See OpenAPI reference](https://swagger.io/docs/specification/v3_0/using-ref/). The occuring Error Message is:...