You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use a cached file output of your graphql-config schema result for definition lookups, symbols, outline, etc. Enabled by default when one or more schema entry is not a local file with SDL in it. Disable if you want to use SDL with a generated schema.
126
+
*/
127
+
cacheSchemaFileForLookup?: boolean;
128
+
/**
129
+
* Disables outlining and other expensive operations for files larger than this threshold (in bytes). Defaults to 1000000 (one million).
130
+
*/
131
+
largeFileThreshold?: number;
132
+
/**
133
+
* Fail the request on invalid certificate
134
+
*/
135
+
rejectUnauthorized?: boolean;
136
+
/**
137
+
* Schema cache ttl in milliseconds - the interval before requesting a fresh schema when caching the local schema file is enabled. Defaults to 30000 (30 seconds).
138
+
*/
139
+
schemaCacheTTL?: number;
140
+
}
141
+
142
+
exportinterfaceVSCodeGraphQLConfigLoadSettings{
143
+
/**
144
+
* Base dir for graphql config loadConfig(), to look for config files or package.json
145
+
*/
146
+
rootDir?: string;
147
+
/**
148
+
* exact filePath for a `graphql-config` file `loadConfig()`
149
+
*/
150
+
filePath?: string;
151
+
/**
152
+
* optional <configName>.config.{js,ts,toml,yaml,json} & <configName>rc* instead of default `graphql`
0 commit comments