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.
		
		
		
		
		
			
		
			
				
					
					
						
							24 lines
						
					
					
						
							546 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							24 lines
						
					
					
						
							546 B
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								require_once __DIR__ . '/../vendor/autoload.php';
							 | 
						|
								require_once __DIR__ . '/../examples/DeegraphConnection.php';
							 | 
						|
								
							 | 
						|
								use Darksparrow\DeegraphInteractions\QueryBuilder\QueryBuilder;
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								$result = QueryBuilder::References()
							 | 
						|
								    ->relativePath("{0b368d41-7c15-42c8-899c-2b178ae9d983}")
							 | 
						|
								    ->build()
							 | 
						|
								    ->runQuery(
							 | 
						|
								        actorID: DeegraphConnection::Actor(),
							 | 
						|
								        server: DeegraphConnection::DB(),
							 | 
						|
								    )
							 | 
						|
								;
							 | 
						|
								
							 | 
						|
								echo "References\n";
							 | 
						|
								echo "=========\n";
							 | 
						|
								
							 | 
						|
								foreach($result->Map as $key=>$value)
							 | 
						|
								{
							 | 
						|
								    echo str_pad($key, 20) . ": " . $value . "\n";
							 | 
						|
								}
							 | 
						|
								
							 |