mirror of
https://github.com/appwrite/appwrite
synced 2026-04-21 21:47:16 +00:00
16 lines
312 B
PHP
16 lines
312 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\E2E\Services\GraphQL;
|
||
|
|
|
||
|
|
use Tests\E2E\Client;
|
||
|
|
use Tests\E2E\Scopes\ProjectCustom;
|
||
|
|
use Tests\E2E\Scopes\Scope;
|
||
|
|
use Tests\E2E\Scopes\SideClient;
|
||
|
|
use Tests\E2E\Scopes\SideServer;
|
||
|
|
|
||
|
|
class GraphQLDatabaseClientTest extends Scope
|
||
|
|
{
|
||
|
|
use ProjectCustom;
|
||
|
|
use SideClient;
|
||
|
|
use GraphQLBase;
|
||
|
|
}
|