Cerys
4 weeks ago
2 changed files with 23 additions and 1 deletions
@ -0,0 +1,21 @@ |
|||
<?php |
|||
|
|||
require_once __DIR__ . '/../vendor/autoload.php'; |
|||
require_once __DIR__ . '/../examples/DeegraphConnection.php'; |
|||
|
|||
use Darksparrow\DeegraphInteractions\QueryBuilder\QueryBuilder; |
|||
|
|||
|
|||
$result = QueryBuilder::Directory() |
|||
->RelativePath("{0b368d41-7c15-42c8-899c-2b178ae9d983}") |
|||
->Build() |
|||
->RunQuery(DeegraphConnection::DB()) |
|||
; |
|||
|
|||
echo "Directory\n"; |
|||
echo "=========\n"; |
|||
|
|||
foreach($result->Map as $key=>$value) |
|||
{ |
|||
echo str_pad($key, 20) . ": " . $value . "\n"; |
|||
} |
Loading…
Reference in new issue