// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschränkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using GraphQL; namespace Squidex.Domain.Apps.Entities.Contents.GraphQL { public sealed class GraphQLQuery { public string OperationName { get; set; } public string Query { get; set; } public Inputs? Inputs { get; set; } } }