I run empty search query just to check how many do...
# community-help
m
I run empty search query just to check how many docs I have. I get this response from TS. But, I know that I only have 10 docs in there -- and it's confirmed by piping the response through
jq '.hits[].document.id' | wc -l
. Why does TS say "out_of" 19, when only 10 docs exist?
Copy code
"out_of": 19,
  "page": 1,
  "request_params": {
    "collection_name": "threads",
    "per_page": 64,
    "q": ""
  },
  "search_cutoff": false,
  "search_time_ms": 3
j
When you do
GET /collections
what does
num_documents
say?
Also are you using a scoped API key by any chance?
m
I’ll have to check that. Away from desk.