ra-data-opencrud
Version:
A Prisma/GraphCMS data provider for react-admin
12 lines • 356 B
TypeScript
import { IntrospectionSchema, IntrospectionType } from 'graphql';
export interface Resource {
type: IntrospectionType;
[key: string]: any;
}
export interface IntrospectionResult {
types: IntrospectionType[];
queries: IntrospectionType[];
resources: Resource[];
schema: IntrospectionSchema;
}
//# sourceMappingURL=interfaces.d.ts.map