Created
May 1, 2020 03:43
-
-
Save barrychapman/cce0ca7500f38cc73d3c8d1795d568a2 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
Records: [ | |
{ | |
id: 1, | |
instance_id: 10000, | |
response_level_id: 2, | |
working_team_id: 44, | |
next_step_id:: 23, | |
RelatedRecords: [ | |
{ | |
id: 3 | |
}, | |
{ | |
id: 4 | |
}, | |
{ | |
id: 2 | |
} | |
] | |
} | |
] | |
} | |
Then a query, on subs id '2': | |
{ | |
Records: [ | |
{ | |
id: 2, | |
instance_id: 10001, | |
response_level_id: 2, | |
working_team_id: 23, | |
next_step_id:: 21, | |
RelatedRecords: [ | |
{ | |
id: 3 | |
}, | |
{ | |
id: 4 | |
}, | |
{ | |
id: 1 | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment