@ -46,12 +46,10 @@ namespace Squidex.Infrastructure.Queries
{
var path = string.Join('.', pathStack.Reverse());
var schema = field.Schema;
if (schema.Fields != null)
var schema = field.Schema with
schema = schema with { Fields = null };
}
Fields = null
};
result?.Add(field with { Path = path, Schema = schema });
@ -96,7 +96,6 @@ namespace Notifo.Areas.Account.Controllers
var application = await applicationManager.FindByClientIdAsync(request.ClientId, HttpContext.RequestAborted);
if (application == null)
throw new InvalidOperationException("The application details cannot be found in the database.");