()
| 882 | } |
| 883 | |
| 884 | func (ec *executionContext) introspectSchema() (*introspection.Schema, error) { |
| 885 | if ec.DisableIntrospection { |
| 886 | return nil, errors.New("introspection disabled") |
| 887 | } |
| 888 | return introspection.WrapSchema(ec.Schema()), nil |
| 889 | } |
| 890 | |
| 891 | func (ec *executionContext) introspectType(name string) (*introspection.Type, error) { |
| 892 | if ec.DisableIntrospection { |