Unknown operation name: TransactWriteItems
douglasgsouza opened this issue · 2 comments
I'm trying to make a TransactWriteItems request to DynamoDB Local and I'm getting the following error message:
"message": "Unknown operation name: TransactWriteItems",
"errorType": null,
"data": null,
"errorInfo": null,
"path": [
"createProduct"
],
"locations": [
{
"line": 2,
"column": 5,
"sourceName": "GraphQL request"
}
]
My package.json dependencies:
"serverless-appsync-plugin": "^1.3.1",
"serverless-appsync-simulator": "^0.6.0",
"serverless-dynamodb-local": "^0.2.39",
"serverless-offline": "^6.4.0",
"serverless-stack-output": "^0.2.3"
@douglasgsouza Indeed. This plugin relies on amplify-cli under the hood. From what I can see, the TransactWriteItems
operation is not yet supported.
They don't support batch operations either.
It might be worth it trying to open an issue or a PR in order to implement them.
@douglasgsouza Indeed. This plugin relies on amplify-cli under the hood. From what I can see, the
TransactWriteItems
operation is not yet supported.They don't support batch operations either.
It might be worth it trying to open an issue or a PR in order to implement them.
Thanks for the reply and sorry for that issue.