Last active
August 10, 2018 00:23
-
-
Save Morganjackson/ce0fe0bc0a39b209cd165db17e617094 to your computer and use it in GitHub Desktop.
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
| query Client($clientId: ID!, $entityId: ID!, $withMs: Boolean!) { | |
| client(id: $clientId) { | |
| name | |
| id | |
| entities { | |
| id | |
| name | |
| } | |
| entity(id: $entityId) @include(if: $withEntity) { | |
| monthlyStatus(startDate: "31-12-2017", endDate: "30-06-2018") { | |
| month { | |
| endDate | |
| } | |
| additionsDrawings | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment