AppSync doesn't support blockstring descriptors #151
-
Hey there! I'm trying to deploy my prisma-appsync project to AppSync but it's failing with I'm pretty sure this is because of the blockstring descriptors in the schema file - AWS AppSync notoriously doesn't support this standard. Is there a way to generate the schema without these blockstring descriptors to get around this issue? Thanks! e.g. this causes issues:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey @genehynson! If you are using AWS CDK to deploy your API, then BlockString Descriptions are automatically removed (not doing anything on our end, this is something the AWS CDK lib is doing). Unless you are trying to copy/past your schema directly into the AppSync console UI, then I would think the issue lies somewhere else. Would you be able to share your Prisma Schema file? |
Beta Was this translation helpful? Give feedback.
Hey @genehynson! This looks like an issue on Prisma-AppSync's end. Would you mind opening an issue and including the portion of your Prisma Schema (
schema.prisma
file) related to yourUser
andUserActivity
models? This would help us understand why an empty block is being generated.