amplify-studio
amplify-studio copied to clipboard
Amplify Studio visual data modeling dosn't support @directive
Is this related to a new or existing framework?
React Native
Is this related to a new or existing API?
GraphQL API
Is this related to another service?
No response
Describe the feature you'd like to request
can't add @directives like @default, @index, @auth rules, I can't also specify "sort keys"
Describe the solution you'd like
support all aws amplify directives
Describe alternatives you've considered
Edit manually
Additional context
No response
Is this something that you'd be interested in working on?
- [ ] 👋 I may be able to implement this feature request
- [ ] ⚠️ This feature might incur a breaking change
Hope to see studio mature enough to be able to work on advanced features.
I came up against this bug today, specifically as detailed in #630, #681, and #678. After building and deploying in the visual editor for a month, I added a new model, tried to deploy, and now it is saying the @index directive is unsupported and I am blocked from visual editing. Two questions that don't add up: 1) Why was it working and now it is not?, 2) Why would the visual editor create a directive that is not supported?
Actually I figured out my problem as stated above. I was getting the the @index directive is unsupported error as when I added the new model and added a one-to-one relationship to it from an existing model, the existing model corrupted in the editor. The existing model already had a one-to-many relationship to another model. I got an error in the editor that the one-to-many relationship was entered twice and when I looked on the model I could see the duplicate entry - obviously a bug in the editor. I deleted one, which I thought left the original but it turns out the entry in the schema code had been completely deleted while leaving the index directive dangling on the model that it should have had the relationship with. By fixing up the broken one-to-many relationship in the schema by hand and redeploying I now have access to the visual editor again.
+1 on this. Watching for @index to be supported in the visual editor. Its confusing to be encouraged to use relationship directives like @has_one but then to also be denied the visual editor after adding it
I am having this issue
When I wrote : type Mutation { createPaymentIntent(amount: Float!): PaymentIntent! @function(name: "CreatePaymentIntent-${env}") }
type PaymentIntent { clientSecret: String! }
In my schema.graphQL file and then run amplify push . My visual studio just block and I am unable to use that.
Please Help!
This is kind of frustrating because we’ve now been using Amplify Studio on a few different data models. On each one, we start using visual editor but then so quickly have one directive or another (usually @function or @index) that we have to go back to just editing the text file outside of studio. We love the visual editor but until it supports the directives it’s just not very useful.
This is absolutely awful. I would expect that if you create a model using the Visual Editor to be able to continue editing it with the Visual Editor.
Consider this user flow: Creates model with Visual Editor -> Adds relationship with Visual Editor -> Deploys models with Visual Editor -> Visual Editor is now disabled due to having relationships in the model.
You have created a horrible user experience intentionally and damaged their opinions of Amplify as a product.
The visual editor is very fragile here - I edited a data model in the UI, copied the schema out but didn't save in the UI because it keeps failing to deploy, ran an amplify pull to get latest, updated the local schema with the copied schema, pushed successfully, then Studio UI complains about the @index directive. When can we expect a fix for this please?
The visual editor is very fragile here - I edited a data model in the UI, copied the schema out but didn't save in the UI because it keeps failing to deploy, ran an amplify pull to get latest, updated the local schema with the copied schema, pushed successfully, then Studio UI complains about the @Index directive. When can we expect a fix for this please?
Having the same problem :(
Update on this issue - I reproduced the issue by changing a 1:n relationship to m:n. The UI successfully showed the change and so I copied the schema from the UI tab, edited my local copy, then deployed the change from the amplify cli with a --force directive. The new version complied successfully and deployment showed as successful. Once I opened the UI it complained about @index again. I then parsed through the schema.graphql file, checking all directives matched correctly and found that there was one orphaned @index directive corresponding to the old 1:n relationship. So it seems this bug is caused by the UI incorrectly parsing and accounting for the change in cardinality relationships i.e. when I changed 1:n to m:n AmplifyUI created the new relationship and didn't remove the old one.
Would be great if Amplify Studio would not disable itself entirely if an unsupported type (e.g. Mutation) is used... Of course, best would be if it would support it...