Created
May 13, 2019 02:17
-
-
Save bhb/0bd97bfb9c7d5214f945f74d972b89fb to your computer and use it in GitHub Desktop.
Dependent effects with tempids
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{:op :create-company | |
:name "Foobar Company" | |
:id "tempid/company"} | |
{:op :create-employee | |
:name "Alice" | |
:company_id "tempid/company" | |
:id "tempid/user1"} | |
{:op :create-employee | |
:name "Bob" | |
:company_id "tempid/company" | |
:supervisor_id "tempid/user1"}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment