export type QueryOrPersistedId = {
query: string;
persistedId?: never;
} | {
query?: never;
persistedId: string;
};
export interface SchemaGroup {
schemaGroup: 'core-shared' | 'core-academic' | 'core-student' | 'core-finance' | 'core-admin' | 'core-lab';
}