77 lines
2.5 KiB
TypeScript
77 lines
2.5 KiB
TypeScript
import * as ActionAuth from "./ActionAuth/Schema";
|
|
import * as Modi from "./Modi/Schema";
|
|
import * as ModiEntity from "./ModiEntity/Schema";
|
|
import * as Oper from "./Oper/Schema";
|
|
import * as OperEntity from "./OperEntity/Schema";
|
|
import * as Relation from "./Relation/Schema";
|
|
import * as RelationAuth from "./RelationAuth/Schema";
|
|
import * as User from "./User/Schema";
|
|
import * as UserEntityGrant from "./UserEntityGrant/Schema";
|
|
import * as UserRelation from "./UserRelation/Schema";
|
|
export declare type ActionAuthIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (ActionAuth.ActionAuthIdSubQuery & {
|
|
entity: "actionAuth";
|
|
}) | any;
|
|
};
|
|
export declare type ModiIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (ModiEntity.ModiIdSubQuery & {
|
|
entity: "modiEntity";
|
|
}) | (Modi.ModiIdSubQuery & {
|
|
entity: "modi";
|
|
}) | any;
|
|
};
|
|
export declare type ModiEntityIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (ModiEntity.ModiEntityIdSubQuery & {
|
|
entity: "modiEntity";
|
|
}) | any;
|
|
};
|
|
export declare type OperIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (OperEntity.OperIdSubQuery & {
|
|
entity: "operEntity";
|
|
}) | (Oper.OperIdSubQuery & {
|
|
entity: "oper";
|
|
}) | any;
|
|
};
|
|
export declare type OperEntityIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (OperEntity.OperEntityIdSubQuery & {
|
|
entity: "operEntity";
|
|
}) | any;
|
|
};
|
|
export declare type RelationIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (ActionAuth.RelationIdSubQuery & {
|
|
entity: "actionAuth";
|
|
}) | (RelationAuth.RelationIdSubQuery & {
|
|
entity: "relationAuth";
|
|
}) | (UserRelation.RelationIdSubQuery & {
|
|
entity: "userRelation";
|
|
}) | (Relation.RelationIdSubQuery & {
|
|
entity: "relation";
|
|
}) | any;
|
|
};
|
|
export declare type RelationAuthIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (RelationAuth.RelationAuthIdSubQuery & {
|
|
entity: "relationAuth";
|
|
}) | any;
|
|
};
|
|
export declare type UserIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (Oper.UserIdSubQuery & {
|
|
entity: "oper";
|
|
}) | (User.UserIdSubQuery & {
|
|
entity: "user";
|
|
}) | (UserRelation.UserIdSubQuery & {
|
|
entity: "userRelation";
|
|
}) | (User.UserIdSubQuery & {
|
|
entity: "user";
|
|
}) | any;
|
|
};
|
|
export declare type UserEntityGrantIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (UserEntityGrant.UserEntityGrantIdSubQuery & {
|
|
entity: "userEntityGrant";
|
|
}) | any;
|
|
};
|
|
export declare type UserRelationIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (UserRelation.UserRelationIdSubQuery & {
|
|
entity: "userRelation";
|
|
}) | any;
|
|
};
|