Skip to content

Commit 6507cec

Browse files
author
Jort Rodenburg
authored
fix missing options passthrough for introspect remote schema (#26)
1 parent 5efa1f2 commit 6507cec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

introspection.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func IntrospectWithContext(ctx context.Context) *IntrospectOptions {
8080
func IntrospectRemoteSchema(url string, opts ...*IntrospectOptions) (*RemoteSchema, error) {
8181

8282
// introspect the schema at the designated url
83-
schema, err := IntrospectAPI(NewSingleRequestQueryer(url))
83+
schema, err := IntrospectAPI(NewSingleRequestQueryer(url), opts...)
8484
if err != nil {
8585
return nil, err
8686
}

0 commit comments

Comments
 (0)