Skip to content

Instantly share code, notes, and snippets.

@timkelty
Last active July 16, 2020 11:08
Show Gist options
  • Select an option

  • Save timkelty/8f3f7dd4f58b96e5d9ec92ca86d94fb4 to your computer and use it in GitHub Desktop.

Select an option

Save timkelty/8f3f7dd4f58b96e5d9ec92ca86d94fb4 to your computer and use it in GitHub Desktop.
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