ra-data-opencrud
Version:
A Prisma/GraphCMS data provider for react-admin
14 lines (11 loc) • 306 B
text/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;
}