Questions tagged [nest]

NEST is a .NET client for elasticsearch

NEST aims to be a .NET client with a very concise API. Its main goal is to provide a solid strongly typed Elasticsearch client. It also has string/dynamic overloads for more dynamic use cases. Click here for more info about this project.

In terms of computational neuroscience, NEST is a simulator for spiking neural network models that focuses on the dynamics, size and structure of neural systems rather than on the exact morphology of individual neurons. Click here for further information or resources.

3119 questions
0
votes
1 answer

How to prevent ignored fields from being returned from Elastic Search

We have an Elastic Search engine that has been provisioned through App Search, and has a very large schema (large amount of fields). A lot of these fields are not necessary to the scope of our search requests and are returned in the _ignored section…
Luke
  • 776
  • 9
  • 24
0
votes
1 answer

How to apply the filter function for a variable which is stored in type list?

In test_data, there is a variable data stored in type list, how to filter the x variable value? library(tidyverse) test_data <- diamonds %>% nest(.by='cut') # below code can't work test_data %>% filter(test_data$data[[['x']]] >4)
anderwyang
  • 1,801
  • 4
  • 18
0
votes
0 answers

MultiMatchQuery, search in multiple fields, NEST / Elasticsearch

This was my QueryContainer which was working fine QueryContainer orderFilterQuery = null; if (request.Filters != null && request.Filters.Count > 0) { foreach (var filter in request.Filters) { orderFilterQuery…
Maruf
  • 354
  • 3
  • 8
0
votes
1 answer

Error on starting project with TypeORM for spanner database

I was trying to connect to spanner database using TypeORM, but configuration initial project generated didn't work for me. So I was starting from documentation and ran those commands. npm install typeorm -g typeorm init --name MyProject…
Ponder13
  • 13
  • 3
0
votes
0 answers

NetJS testing with jest

I've encountered a persistent issue in my project that has been causing a significant delay. The problem revolves around a simple test scenario, but despite my efforts, I haven't been able to identify the root cause. This has hindered my progress…
Koala
  • 352
  • 2
  • 7
  • 18
0
votes
1 answer

Create monorepo with frontend and backend applications (React.js/Nest.js)

I was wondering if it is possible to create monorepo (keep it in one Github repository) with two projects - one frontend app made with React.js and the backend app with Nest.js. I thought I can use Lerna but it looks like it's only good for creating…
goscamp
  • 27
  • 8
0
votes
0 answers

How to do MongoDB retry in nest?

I'm trying to write retry mongoDB in a nest I'm trying to write retry mongoDB in a nest I did this: retryAttempts: Infinity, And it works when the backend is up and the mongoDB is down but the retry doesn't work when the backend and the mongoDB is…
LBS720
  • 1
0
votes
0 answers

Podman-compose Error EACCES: permission denied, rmdir /usr/src/app/dist

I'm trying to orchestrate databases with an existing docker-compose.yml and Dockerfile that builds a NestJS app, using "extends" for the former in another docker-compose.yml file. I began with the simplest configuration that I could come up with,…
Rick Stanley
  • 732
  • 2
  • 9
  • 23
0
votes
1 answer

convert time to Date type nest js

@Cron('23 16 * * *') async transferData() { try { // Retrieve data from the AttendanceBulk table const attendanceBulkData = await this.AttendanceBulkModel.findAll(); for (const data of attendanceBulkData) { const…
Nadula
  • 37
  • 5
0
votes
1 answer

Soft Delete in Angular and Nest with Restore and Permanent Delete Functionality

Can you guy's help me out of this situation by giving idea how can I overcome this. I have two sections, one for ingredients and one for deleted items. Inside ingredient section if I clicks on delete button of a particular ingredient then it will be…
0
votes
0 answers

Returning a BLOB (Binary Large Object) using nest/graphql

I have a Binary Large Object (BLOB) field in a MYSQL database which contains encrypted data. How do I return this encrypted data with nest/graphQL? Is there a field type that will return this to the client (in my case another node…
Adrian E
  • 1,884
  • 3
  • 21
  • 33
0
votes
0 answers

Nest Camera - WebRTC - How can I set video quality params?

I'm trying to configure a Nest video stream (from a doorbell in this case), but we need to reduce the quality of the video due to resource limitations on the client device. Is there any way to reduce the frame rate, resolution, video quality,…
0
votes
1 answer

NEST QueryContainer deserialize from JSON query

I have a C# API that uses the Elastic NEST SDK. My version of Elastic is v8.4 It takes an Elastic search query as a JSON request. im trying to create the NEST request object SearchRequest using this JSON request and the index name. This is my…
JGilmartin
  • 8,683
  • 14
  • 66
  • 85
0
votes
0 answers

Search two indexes with specific dependent scenarios using nest and elastisearch

I have two indices in the elastic search PUT /customers { "mappings": { "properties": { "customerId": { "type": "integer" }, "name": { "type": "keyword" }, "birthday": { "type": "date", …
dimmits
  • 1,999
  • 3
  • 12
  • 30
0
votes
0 answers

Accessing cookies coming from different domain Across different servers

I'm looking to share the cookies received from other domain to be send back in response of my server request. I'm receiving cookie from express server but in my nest server request cookies are not forwarded. It is a cross domain issue. Need you…
Swapnil J
  • 1
  • 1