Skip to content

Commit

Permalink
fix missing options passthrough for introspect remote schema (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jort Rodenburg authored Jun 24, 2022
1 parent 5efa1f2 commit 6507cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion introspection.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func IntrospectWithContext(ctx context.Context) *IntrospectOptions {
func IntrospectRemoteSchema(url string, opts ...*IntrospectOptions) (*RemoteSchema, error) {

// introspect the schema at the designated url
schema, err := IntrospectAPI(NewSingleRequestQueryer(url))
schema, err := IntrospectAPI(NewSingleRequestQueryer(url), opts...)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 6507cec

Please sign in to comment.