DCSO / balboa

server for indexing and querying passive DNS observations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support array of sensor IDs in query

satta opened this issue · comments

It would be desirable to support querying for multiple sensor IDs in the GraphQL frontend, e.g.:

query {
  entries(rrname: "test.foobar.de", sensor_id: ["abcde", "fghij"]) {
    rrname
    rrtype
    rdata
    time_first
    time_last
    sensor_id
    count
  }
}

where the result would be a union of the results for all sensors in the list. The limit parameter would then apply for this merged result.