
I have crated attributes index on cloud and then try to use a this query "?queries[]=limit(100)&queries[]=equal("core_slug", ["handynation"])" but this is not working any thing wrong here
Thanks

Can you check with Node.js
for example?

To see that it work correctly

Explain what not working, cause I test it and it's ok

PHP is also good example try this
<?php
use Appwrite\Client;
use Appwrite\Query;
use Appwrite\Services\Databases;
$client = new Client();
$client
->setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
->setProject('5df5acd0d48c2') // Your project ID
->setKey('919c2d18fb5d4...a2ae413da83346ad2') // Your secret API key
;
$databases = new Databases($client);
$result = $databases->listDocuments('[DATABASE_ID]', '[COLLECTION_ID]', [
Query::equal('core_slug','handynation'),
]);

For this example you'll need an API key.

FYI equal !== full text search

yes it's working now

[SOLVED] Rest API get collection api with mutile query's not working
Recommended threads
- mcp-for-docs not working properly
I'm experiencing issues integrating the MCP server tool with Cursor IDE. The MCP server connection establishes successfully initially but fails after one minute...
- Creating a relationship with nested obje...
{ "data": { "name": "DiDi", "type": "Software Development", "userJobs": [{ "$id": "68cbf1e2003612fb13ca", "j...
- Realtime integration with SSR auth
Hey, I have a nextjs website with SSR auth, works great. I use a session client for user verification and an admin client with API key. Both is used with node-...
