codyzu / jasql

JSON document storage in SQL
MIT License
4 stars 0 forks source link

add search support #9

Open codyzu opened 8 years ago

codyzu commented 8 years ago

Time to implement the missing search support.

This could include:

Questions:

  1. what should the API resemble?
    • search(jsonPath, operator, values...)
    • fluent? search(jsonPath).operator(value....), i.e.. search("address.streetNumber").equals('40')
  2. can search queries be combined with logical operators: AND, OR, NOT?

This needs some more research to find a good API.