Browse Source

Graphql fixed.

pull/470/head
Sebastian 6 years ago
parent
commit
5bb5c26efc
  1. 2
      backend/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AppQueriesGraphType.cs

2
backend/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AppQueriesGraphType.cs

@ -246,7 +246,7 @@ namespace Squidex.Domain.Apps.Entities.Contents.GraphQL.Types
string.Join("&",
c.Arguments
.Select(x => new { x.Key, Value = x.Value.ToString() }).Where(x => !string.IsNullOrWhiteSpace(x.Value))
.Select(x => $"{x.Key}={x.Value}"));
.Select(x => $"${x.Key}={x.Value}"));
return odataQuery;
}

Loading…
Cancel
Save