node_modules.graphql-config.lib.GraphQLProjectConfig.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-client-maven-plugin Show documentation
Show all versions of apollo-client-maven-plugin Show documentation
Maven plugin for generating graphql clients
import { GraphQLSchema } from 'graphql';
import { IntrospectionResult, GraphQLResolvedConfigData, GraphQLConfigData, GraphQLConfigExtensions } from './types';
import { GraphQLEndpointsExtension } from './extensions';
export declare class GraphQLProjectConfig {
config: GraphQLResolvedConfigData;
configPath: string;
projectName?: string;
constructor(config: GraphQLConfigData, configPath: string, projectName?: string);
resolveConfigPath(relativePath: string): string;
includesFile(fileUri: string): boolean;
getSchema(): GraphQLSchema;
resolveIntrospection(): Promise;
getSchemaSDL(): string;
readonly configDir: string;
readonly schemaPath: string | null;
readonly includes: string[];
readonly excludes: string[];
readonly extensions: GraphQLConfigExtensions;
readonly endpointsExtension: GraphQLEndpointsExtension | null;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy