From 5bb5c26efc9d7e07cde5c768001bd86d8cecc422 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 16 Jan 2020 18:23:59 +0100 Subject: [PATCH] Graphql fixed. --- .../Contents/GraphQL/Types/AppQueriesGraphType.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AppQueriesGraphType.cs b/backend/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AppQueriesGraphType.cs index e33dc376d..b079e203e 100644 --- a/backend/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AppQueriesGraphType.cs +++ b/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; }