We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba606f6 commit 57e2850Copy full SHA for 57e2850
frontend/relay-workflows-lib/stories/components/RenderSubmittedMessage.stories.tsx
@@ -121,7 +121,7 @@ export const erroredWorkflow: Story = {
121
},
122
};
123
124
-export const erroneousSubmission: Story = {
+export const networkError: Story = {
125
args: {
126
result: {
127
type: "networkError",
@@ -132,3 +132,12 @@ export const erroneousSubmission: Story = {
132
133
134
135
+
136
+export const graphqlError: Story = {
137
+ args: {
138
+ result: {
139
+ type: "graphQLError",
140
+ errors: [{ message: "GraphQL Error" }],
141
+ },
142
143
+};
0 commit comments