GraphZen
  • Home
  • Blog
  • Documentation
  • API
  • Get Started
Show / Hide Table of Contents

Class ExecutionResult

Inheritance
Object
ExecutionResult
Namespace: GraphZen.QueryEngine
Assembly: GraphZen.QueryEngine.dll
Syntax
public class ExecutionResult

Constructors

ExecutionResult(IDictionary<String, Object>, IEnumerable<GraphQLError>)

Declaration
public ExecutionResult(IDictionary<string, object> data, IEnumerable<GraphQLError> errors)
Parameters
Type Name Description
IDictionary<String, Object> data
IEnumerable<GraphQLError> errors

Properties

Data

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public IDictionary<string, object> Data { get; }
Property Value
Type Description
IDictionary<String, Object>

Errors

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public IReadOnlyList<GraphQLError> Errors { get; }
Property Value
Type Description
IReadOnlyList<GraphQLError>
Back to top Copyright © 2017-2019 GraphZen LLC