     @prefix : <../bank.n3#> .
     @prefix log: <http://www.w3.org/2000/10/swap/log#> .
     @prefix del: <http://www.w3.org/2004/delta#> .
    
    @forAll <#_account>,
                <#_ac2>,
                <#_who> .
    {
        <#_account>     :accountNumber "1234567-0" .
        
        }     del:deletion {<#_account>     :accountBalance "-4000" .
        } .
    {
        <#_ac2>     :accountNumber "1234567-0" .
        
        }     del:insertion {<#_ac2>     :accountBalance "-3347.47" .
        } .
    {
        <#_who>     :ssn "123456789" .
        
        }     del:insertion {<#_who>     :address  [
                 :city "Anytown";
                 :street "77 Accacia Avenue" ];
             :phoneNumber "+1 202 555 1212" .
        } .
    

