1.38.3 • Published 7 months ago

@dpc-sdp/ripple-tide-search-api v1.38.3

Weekly downloads
24
License
Apache-2.0
Repository
-
Last release
7 months ago

@dpc-sdp/ripple-tide-search-api

This package exposes an API for connecting to Tide's internal search API.

By abstracting the Tide search implementation (currently Elasticsearch) we are able to support multiple search interfaces in the future.

The basic idea is that you pass only the required parameters for a search query and configure a search template when instantiating the API which is responsible for transforming the request to the search service and the response returned.

Search templates

Templates to transform elasticsearch requests and responses.

Templates can be extended at runtime by passing in a template to config option passed to appHandler A template is an object with functions for transforming the request sent to a search service and / or the response returned from this API

Example search template

example: {
  requestMapping: (params) => {
    return {
      query: {
        match_all: {}
      }
    }
  },
  responseMapping: (res) => {
    return res
  }
}

Search with DSL via POST request

To run searches using custom ElasticSearch DSL, you can run a POST request to /search-api/v2/dsl. Send the POST request with the body containing JSON of the DSL.

Example Search with DSL via POST request

Headers

Content-Type: application/json; charset=utf-8

Body

{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "type": "health_alert"
          }
        },
        {
          "match": {
            "field_node_site": "4"
          }
        }
      ]
    }
  },
  "sort": [
    {
      "field_news_date": "desc"
    }
  ]
}

*/

1.38.2

9 months ago

1.38.3

7 months ago

1.38.1

10 months ago

1.38.0

12 months ago

1.37.1

12 months ago

1.36.1

12 months ago

1.35.1

1 year ago

1.37.0

1 year ago

1.35.0

1 year ago

1.36.0

1 year ago

1.34.0

1 year ago

1.32.3

1 year ago

1.33.0

1 year ago

1.32.2

1 year ago

1.32.0

1 year ago

1.32.1

1 year ago

1.31.1

2 years ago

1.32.0-alpha.0

2 years ago

1.30.2

2 years ago

1.30.3

2 years ago

1.30.0

2 years ago

1.30.1

2 years ago

1.30.4

2 years ago

1.30.5

2 years ago

1.31.0-alpha.0

2 years ago

1.31.0

2 years ago

1.30.0-alpha.2

2 years ago

1.29.3

2 years ago

1.30.0-alpha.1

2 years ago

1.30.0-alpha.0

2 years ago

1.29.0

2 years ago

1.29.1

2 years ago

1.29.2

2 years ago

1.29.2-alpha.0

2 years ago

1.25.2

2 years ago

1.28.0

2 years ago

1.26.0

2 years ago

1.27.2

2 years ago

1.27.0

2 years ago

1.26.1

2 years ago

1.27.1

2 years ago

1.24.5-alpha.4

3 years ago

1.24.5-alpha.3

3 years ago

1.24.5-alpha.6

3 years ago

1.24.5-alpha.5

3 years ago

1.24.5-alpha.0

3 years ago

1.24.5-alpha.1

3 years ago

1.25.0

3 years ago

1.25.0-alpha.0

3 years ago

1.24.4

3 years ago

1.24.0-alpha.0

3 years ago

1.24.4-alpha.0

3 years ago

1.24.2

3 years ago

1.24.3

3 years ago

1.24.1

3 years ago

1.24.0

3 years ago

1.23.1

3 years ago

1.23.0

3 years ago

1.23.0-alpha.0

3 years ago

1.21.3-vcdi.0

3 years ago

1.21.3-alpha.0

3 years ago

1.22.0

3 years ago

1.21.2

3 years ago

1.21.1

3 years ago

1.20.3

3 years ago

1.20.1

3 years ago

1.20.2

3 years ago

1.20.0

3 years ago

1.19.8

3 years ago

1.19.7

3 years ago

1.19.6

3 years ago

1.19.5

3 years ago

1.19.4

3 years ago

1.19.3

3 years ago

1.19.2

3 years ago

1.19.1

3 years ago

1.19.0

3 years ago

1.19.0-alpha.0

3 years ago

1.16.0-preview.0

4 years ago

1.17.0

4 years ago