Skip to content

Commit

Permalink
Update api approvals
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane32 committed Jan 22, 2024
1 parent ceb0841 commit b0b4861
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@ namespace GraphQL.Server.Transports.AspNetCore
public FormFileGraphType() { }
public override bool CanParseLiteral(GraphQLParser.AST.GraphQLValue value) { }
public override bool CanParseValue(object? value) { }
public override bool IsValidDefault(object value) { }
public override object? ParseLiteral(GraphQLParser.AST.GraphQLValue value) { }
public override object? ParseValue(object? value) { }
public override object? Serialize(object? value) { }
public override GraphQLParser.AST.GraphQLValue ToAST(object? value) { }
}
public class GraphQLExecutionActionResult : GraphQL.Server.Transports.AspNetCore.GraphQLExecutionActionResult<GraphQL.Types.ISchema>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,11 @@ namespace GraphQL.Server.Transports.AspNetCore
public FormFileGraphType() { }
public override bool CanParseLiteral(GraphQLParser.AST.GraphQLValue value) { }
public override bool CanParseValue(object? value) { }
public override bool IsValidDefault(object value) { }
public override object? ParseLiteral(GraphQLParser.AST.GraphQLValue value) { }
public override object? ParseValue(object? value) { }
public override object? Serialize(object? value) { }
public override GraphQLParser.AST.GraphQLValue ToAST(object? value) { }
}
public class GraphQLExecutionActionResult : GraphQL.Server.Transports.AspNetCore.GraphQLExecutionActionResult<GraphQL.Types.ISchema>
{
Expand Down

0 comments on commit b0b4861

Please sign in to comment.