Skip to content

Feature/#179 basic search

Mathias Goebel requested to merge feature/#179-basic-search into develop

Feature

Summary

This MR provides a basic search API.

Compliance to “Definition of Done”

  • Unit tests passed
  • Code reviewed
  • Product Owner accepts the User Story

Documentation

  • I updated the README (if applicable)
  • I provided my functions with appropriate documentation
  • I updated existing documentation

Tests

Are we able to test this new feature?

  • Yes, everything can be done via unit tests.
  • Yes, you can test by following these steps:
curl -X POST http://0.0.0.0:49161/exist/restxq/search -H "Content-Type: application/json" -d '{
  "query": {
    "simple_query_string": {
      "query": "Erfa*"  }
  },
  "from": 0,
  "size": 3,
  "kwicsize": 20
}'
  • No, it is not possible.

Changelog

  • I added a statement to the CHANGELOG.

Version number

  • I bumped the version number in build.properties.

Closes

Closes

Logs and Screenshots

/cc Mathias Göbel, Frank Schneider, Michelle Weidling

Edited by Mathias Goebel

Merge request reports