You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
471 B
17 lines
471 B
<?php
|
|
|
|
global $db;
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
require_once __DIR__ . '/../examples/connection.php';
|
|
|
|
use Darksparrow\DeegraphInteractions\Enumerators\DeegraphEqualityOperator;
|
|
use Darksparrow\DeegraphInteractions\Enumerators\DeegraphPermissionType;
|
|
use Darksparrow\DeegraphInteractions\QueryBuilder\QueryBuilder;
|
|
|
|
QueryBuilder::Grant()
|
|
->GrantAll()
|
|
->On(target: "*")
|
|
->Bu($db);
|
|
|
|
$result = $db->RunQuery($grantQuery);
|
|
var_dump($result);
|
|
|