Last active
July 16, 2020 11:08
-
-
Save timkelty/8f3f7dd4f58b96e5d9ec92ca86d94fb4 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
| mutation ($attachments: [String]) { | |
| save_emailOrder(emailAttachments @indexAssetPaths: $attachments) { | |
| id | |
| } | |
| } | |
| mutation ($attachments @indexAssetPaths: [String]) { | |
| save_emailOrder(emailAttachments: $attachments) { | |
| id | |
| } | |
| } | |
| mutation ($attachments: [String]) { | |
| save_emailOrder(emailAttachments @indexAssetPaths(paths: $attachments)) { | |
| id | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment