Rob Bast
12/30/2024, 2:05 PMfacet
value is still false
for my field (i modified it to be true
)Jason Bosco
12/31/2024, 1:45 AMRob Bast
12/31/2024, 9:04 AMRob Bast
12/31/2024, 9:05 AMJason Bosco
12/31/2024, 5:47 PMAlter failed validation: Referenced document having `id: xxxxxx` not found in the collection `customer`
Jason Bosco
12/31/2024, 5:50 PMRob Bast
01/02/2025, 9:37 AMRob Bast
01/02/2025, 9:37 AMRob Bast
01/02/2025, 9:38 AMRob Bast
01/02/2025, 10:42 AMRob Bast
01/03/2025, 9:28 AMRob Bast
01/03/2025, 9:29 AMHarpreet Sangar
01/03/2025, 9:30 AMRob Bast
01/03/2025, 9:30 AMHarpreet Sangar
01/03/2025, 11:00 AMcurl -H "X-TYPESENSE-API-KEY: ${TYPESENSE_API_KEY}" -X GET \
"<http://localhost:8108/collections/customer/documents/export?include_fields=id>"
Then send this query to the order
collection:
curl "<http://localhost:8108/multi_search?query_by=name>" \
-X POST \
-H "Content-Type: application/json" \
-H "X-TYPESENSE-API-KEY: ${TYPESENSE_API_KEY}" \
-d '{
"searches": [
{
"collection": "order",
"filter_by": "customer.id: !=[<all of the ids from previous step>]"
}
]
}'
Using multi_search
endpoint will not limit the size of your request.Rob Bast
01/03/2025, 11:00 AM