You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Our.Umbraco.GraphQL.Forms/Types/UmbracoFormsMutation.cs
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -37,8 +37,8 @@ public UmbracoFormsMutation(ILogger logger, IFormStorage formStorage, IFieldType
37
37
38
38
Field<JsonGraphType>()
39
39
.Name("submit")
40
-
.Argument<NonNullGraphType<StringGraphType>>("formId","The GUID of the form")
41
-
.Argument<NonNullGraphType<Adapters.Types.IdGraphType>>("umbracoPageId","The integer ID of the Umbraco page you were on")
40
+
.Argument<NonNullGraphType<Adapters.Types.IdGraphType>>("formId","The GUID of the form")
41
+
.Argument<NonNullGraphType<Adapters.Types.IdGraphType>>("umbracoPageId","The integer ID of the Umbraco page you were on")
42
42
.Argument<ListGraphType<FieldValueInputType>>("fields","An array of objects representing the field data. Each object has a 'field' property that is either the GUID or alias of the form field, and a 'value' property that is the field value")
43
43
.Resolve(Submit);
44
44
_logger=logger;
@@ -52,12 +52,12 @@ public UmbracoFormsMutation(ILogger logger, IFormStorage formStorage, IFieldType
0 commit comments