aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/graph
diff options
context:
space:
mode:
Diffstat (limited to 'graphql/graph')
-rw-r--r--graphql/graph/gen_graph.go20
1 files changed, 10 insertions, 10 deletions
diff --git a/graphql/graph/gen_graph.go b/graphql/graph/gen_graph.go
index c9bb165c..95a15499 100644
--- a/graphql/graph/gen_graph.go
+++ b/graphql/graph/gen_graph.go
@@ -5516,16 +5516,16 @@ func (ec *executionContext) _Operation(ctx context.Context, sel ast.SelectionSet
switch obj := (*obj).(type) {
case nil:
return graphql.Null
- case *operations.CreateOperation:
- return ec._CreateOperation(ctx, sel, obj)
- case *operations.SetTitleOperation:
- return ec._SetTitleOperation(ctx, sel, obj)
- case *operations.AddCommentOperation:
- return ec._AddCommentOperation(ctx, sel, obj)
- case *operations.SetStatusOperation:
- return ec._SetStatusOperation(ctx, sel, obj)
- case *operations.LabelChangeOperation:
- return ec._LabelChangeOperation(ctx, sel, obj)
+ case operations.CreateOperation:
+ return ec._CreateOperation(ctx, sel, &obj)
+ case operations.SetTitleOperation:
+ return ec._SetTitleOperation(ctx, sel, &obj)
+ case operations.AddCommentOperation:
+ return ec._AddCommentOperation(ctx, sel, &obj)
+ case operations.SetStatusOperation:
+ return ec._SetStatusOperation(ctx, sel, &obj)
+ case operations.LabelChangeOperation:
+ return ec._LabelChangeOperation(ctx, sel, &obj)
default:
panic(fmt.Errorf("unexpected type %T", obj))
}