nest Questions
4
Namespace 'global.Express' has no exported member 'Multer'.
Been straggling with this error for 2 days now.
I've tried:
import "multer"
import { Multer } from "multer"
import {...
2
I Use ElasticSearch 8.1.2
and Nest 17.7.1
var settings = new ConnectionSettings(new Uri("http://localhost:9200/"))
.CertificateFingerprint("A5:8B:07:2D:A9:E8:53:CE:GB:C0:15:CE:6E:DF...
Murage asked 29/4, 2022 at 13:27
4
Is it possible to revert a specific migration in Typeorm?, I want to only revert a particular migration and not all till I get to the migration I want to revert,
Because normally you just call type...
Sheffield asked 30/11, 2021 at 15:40
2
Solved
I'm trying to migrate my Elasticsearch to 8 and I am having difficulty understanding how to properly migrate my analyzer definitions.
This is the code I previously had (as simiplified as possible) ...
Strafe asked 14/12, 2022 at 11:39
5
Solved
I know how to delete an entire ElasticSearch index, but how do you purge all documents from an index?
My Motivation: I'd like to have a "ReIndex" method that purges the entire contents of an index...
Beefeater asked 13/11, 2014 at 19:52
5
I need to list all the indexes and types in Elasticsearch.
Basically I use _client.stats().Indices to acquire the indexes, and filter using foreach excluded index list like this:
public Dictionar...
Bryannabryansk asked 1/10, 2014 at 1:10
2
Solved
I'm playing around with Elasticsearch and NEST.
I do have some trouble understanding the various classes and interfaces which can be used to create and build static queries.
Here's a simplified e...
Taveras asked 8/8, 2014 at 21:1
2
Solved
I am new to Elastic search and I have written code to index a list of City. I am using "elasticsearch head" add-on for chrome to check and manipulate the indexes and _doc.
While indexing and CRUD ...
Catechol asked 1/12, 2019 at 12:9
6
Solved
I used to solve similar errors while I was using Jest with only JavaScript, but currently I'm not able to do so with Typescript.
All my tests were running fine until I installed Puppeteer which req...
Nectarine asked 2/8, 2022 at 7:13
4
I am using .From() and .Size() methods to retrieve all documents from Elastic Search results.
Below is sample example -
ISearchResponse<dynamic> bResponse = ObjElasticClient.Search<dyn...
Lawgiver asked 9/7, 2015 at 20:42
3
I have a document in elastic search.
I am trying to implement a method where I can specify a string id to delete a document from the index using NEST client.
This is the indexed doc that I want to...
Ulysses asked 21/5, 2014 at 18:59
2
Solved
I'm using .NET NEST for searching in Elasticsearch.
When I index a document and immediately search for it it is not found:
var node = new Uri("http://localhost:9200");
var settings = new Connecti...
Igniter asked 6/9, 2018 at 18:15
2
I would like to control Nest thermostat (3rd gen with heatlink) domestic hot water, however the API doesn't seem to be exposing neither it's controls nor it's status (https://developers.google.com/...
Lehet asked 21/12, 2021 at 8:27
1
Solved
Background:
Since any unique entity data is a candidate key to a table, any data column constrained as unique is a candidate key. What is the syntax for a foreign key to be constrained as unique an...
3
Situation:
Developing api in nest & grapqhql
Worked on one laptop, everything was working well
Then cloned my repo on other laptops, installed dependencies, created a new local database.
App i...
Moriahmoriarty asked 9/1, 2022 at 19:48
3
Solved
Is there any way to query Elasticsearch with NEST client using linq or lambda expressions.
I Want to do somthing like this :
client.Search<MyClass>(s => s.MyProperty.Contains("value") ...
Langland asked 14/3, 2016 at 17:2
10
Solved
Is it possible to get the raw search query from the NEST client?
var result = client.Search<SomeType>(s => s
.AllIndices()
.Type("SomeIndex")
.Query(query => query
.Bool(boolQuery ...
Prayerful asked 9/3, 2015 at 9:50
3
Solved
I am trying to write a NEST query that should return results based on exact string match. I have researched on web and there are suggestions about using Term, Match, MatchPhrase. I have tried all t...
Aubarta asked 25/8, 2015 at 17:44
3
Solved
Context
I've written a parallel job framework in C# to import/export a large amount of data from/to an ElasticSearch cluster. To do this I've modelled each import or export of a single item as an o...
Inspection asked 21/12, 2015 at 12:45
0
I want to use winston logging module in my node application and I am using nest framework.
So I installed
yarn add nest-winston
yarn add winston
and in my app.module.ts
WinstonModule.forRoot({
fo...
Burgin asked 14/10, 2021 at 14:45
0
I am using NEST to perform queries towards an Elasticsearch 6-cluster. The Elasticsearch cluster consists of a couple of nodes, but it's running behind a firewall/loadbalancer so from the client pe...
Alfi asked 21/9, 2021 at 12:22
9
Solved
I'm new to Nest, and I very likely am not creating my query like I think I am. My question is more along the lines of teach a man to fish rather than give me a fish. However, I'll use my current pr...
Ceremony asked 25/1, 2015 at 17:59
2
Solved
Does anyone know how to do multiple aggregations with nest?
I have found quite a few examples unfortunately none of them work.
Here's what I have:
Vehicles fields = new Vehicles();
//create a te...
Shiekh asked 27/2, 2019 at 4:3
6
Solved
Does Nest support sorting on multiple fields? For example, say I want to sort first by FieldA ascending and then by FieldB descending.
My current approach looks something like this:
searchDescrip...
Magnitude asked 17/9, 2014 at 15:25
3
Solved
I'm having some trouble hitting a POST endpoint that triggers a typeorm repository.save() method to my postgres DB.
Here's my DTO object:
import { ApiProperty } from '@nestjs/swagger/';
import {...
Hear asked 20/3, 2020 at 4:32
1 Next >
© 2022 - 2024 — McMap. All rights reserved.