I have been working on obtaining type definitions for graphql in my project. After installing both graphql
and @types/graphql
, I am using
import * as graphql from "graphql"
in my file. Despite this, I am encountering difficulties accessing certain types such as GraphQLSchemaConfig
. How can I go about accessing these types? It seems like the type definitions are being loaded correctly, given that the constructor is expecting an argument of that type.