Skip to content

Commit

Permalink
fix ToJSON
Browse files Browse the repository at this point in the history
  • Loading branch information
neelance committed Feb 20, 2017
1 parent 728e57a commit 612317b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/exec/introspection.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ func init() {

func IntrospectSchema(s *schema.Schema) (interface{}, error) {
r := &request{
schema: s,
doc: introspectionQuery,
schema: s,
doc: introspectionQuery,
limiter: make(semaphore, 10),
}
return introspectSchema(context.Background(), r, introspectionQuery.Operations["IntrospectionQuery"].SelSet), nil
}
Expand Down

0 comments on commit 612317b

Please sign in to comment.