Browse Source

Use custom guid type again.

pull/336/head
Sebastian Stehle 7 years ago
parent
commit
b0c5135fa3
  1. 4
      src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AllTypes.cs

4
src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AllTypes.cs

@ -18,7 +18,7 @@ namespace Squidex.Domain.Apps.Entities.Contents.GraphQL.Types
public static readonly IGraphType Int = new IntGraphType(); public static readonly IGraphType Int = new IntGraphType();
public static readonly IGraphType Guid = new GuidGraphType(); public static readonly IGraphType Guid = new GuidGraphType2();
public static readonly IGraphType Date = new DateTimeGraphType(); public static readonly IGraphType Date = new DateTimeGraphType();
@ -34,7 +34,7 @@ namespace Squidex.Domain.Apps.Entities.Contents.GraphQL.Types
public static readonly IGraphType Boolean = new BooleanGraphType(); public static readonly IGraphType Boolean = new BooleanGraphType();
public static readonly IGraphType References = new ListGraphType<NonNullGraphType<GuidGraphType>>(); public static readonly IGraphType References = new ListGraphType<NonNullGraphType<GuidGraphType2>>();
public static readonly IGraphType NonNullInt = new NonNullGraphType(Int); public static readonly IGraphType NonNullInt = new NonNullGraphType(Int);

Loading…
Cancel
Save