|
@@ -0,0 +1,3801 @@
|
|
|
+// This file has been auto-generated by Warthog. Do not update directly as it
|
|
|
+// will be re-written. If you need to change this file, update models or add
|
|
|
+// new TypeGraphQL objects
|
|
|
+// prettier-ignore
|
|
|
+// @ts-ignore
|
|
|
+import { DateResolver as Date } from 'graphql-scalars';
|
|
|
+// prettier-ignore
|
|
|
+// @ts-ignore
|
|
|
+import { GraphQLID as ID } from 'graphql';
|
|
|
+// prettier-ignore
|
|
|
+// @ts-ignore
|
|
|
+import { ArgsType, Field as TypeGraphQLField, Float, InputType as TypeGraphQLInputType, Int } from 'type-graphql';
|
|
|
+// prettier-ignore
|
|
|
+// @ts-ignore
|
|
|
+import { registerEnumType, GraphQLISODateTime as DateTime } from "type-graphql";
|
|
|
+
|
|
|
+import * as BN from "bn.js";
|
|
|
+
|
|
|
+// prettier-ignore
|
|
|
+// @ts-ignore eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
|
+const { GraphQLJSONObject } = require('graphql-type-json');
|
|
|
+// prettier-ignore
|
|
|
+// @ts-ignore
|
|
|
+import { BaseWhereInput, JsonObject, PaginationArgs, DateOnlyString, DateTimeString, BigInt, Bytes } from 'warthog';
|
|
|
+
|
|
|
+import { MembershipEntryMethod } from "../src/modules/membership/membership.model";
|
|
|
+import { AssetAvailability } from "../src/modules/video/video.model";
|
|
|
+import { LiaisonJudgement } from "../src/modules/data-object/data-object.model";
|
|
|
+
|
|
|
+// @ts-ignore
|
|
|
+import { Membership } from "../src/modules/membership/membership.model";
|
|
|
+// @ts-ignore
|
|
|
+import { CuratorGroup } from "../src/modules/curator-group/curator-group.model";
|
|
|
+// @ts-ignore
|
|
|
+import { VideoCategory } from "../src/modules/video-category/video-category.model";
|
|
|
+// @ts-ignore
|
|
|
+import { Language } from "../src/modules/language/language.model";
|
|
|
+// @ts-ignore
|
|
|
+import { License } from "../src/modules/license/license.model";
|
|
|
+// @ts-ignore
|
|
|
+import { VideoMediaEncoding } from "../src/modules/video-media-encoding/video-media-encoding.model";
|
|
|
+// @ts-ignore
|
|
|
+import { VideoMediaMetadata } from "../src/modules/video-media-metadata/video-media-metadata.model";
|
|
|
+// @ts-ignore
|
|
|
+import { FeaturedVideo } from "../src/modules/featured-video/featured-video.model";
|
|
|
+// @ts-ignore
|
|
|
+import { Video } from "../src/modules/video/video.model";
|
|
|
+// @ts-ignore
|
|
|
+import { DataObject } from "../src/modules/data-object/data-object.model";
|
|
|
+// @ts-ignore
|
|
|
+import { Channel } from "../src/modules/channel/channel.model";
|
|
|
+// @ts-ignore
|
|
|
+import { ChannelCategory } from "../src/modules/channel-category/channel-category.model";
|
|
|
+
|
|
|
+export enum MembershipOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ handle_ASC = "handle_ASC",
|
|
|
+ handle_DESC = "handle_DESC",
|
|
|
+
|
|
|
+ avatarUri_ASC = "avatarUri_ASC",
|
|
|
+ avatarUri_DESC = "avatarUri_DESC",
|
|
|
+
|
|
|
+ about_ASC = "about_ASC",
|
|
|
+ about_DESC = "about_DESC",
|
|
|
+
|
|
|
+ controllerAccount_ASC = "controllerAccount_ASC",
|
|
|
+ controllerAccount_DESC = "controllerAccount_DESC",
|
|
|
+
|
|
|
+ rootAccount_ASC = "rootAccount_ASC",
|
|
|
+ rootAccount_DESC = "rootAccount_DESC",
|
|
|
+
|
|
|
+ registeredAtBlock_ASC = "registeredAtBlock_ASC",
|
|
|
+ registeredAtBlock_DESC = "registeredAtBlock_DESC",
|
|
|
+
|
|
|
+ registeredAtTime_ASC = "registeredAtTime_ASC",
|
|
|
+ registeredAtTime_DESC = "registeredAtTime_DESC",
|
|
|
+
|
|
|
+ entry_ASC = "entry_ASC",
|
|
|
+ entry_DESC = "entry_DESC",
|
|
|
+
|
|
|
+ subscription_ASC = "subscription_ASC",
|
|
|
+ subscription_DESC = "subscription_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(MembershipOrderByEnum, {
|
|
|
+ name: "MembershipOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class MembershipWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ handle_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ handle_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ handle_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ handle_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ handle_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ avatarUri_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ avatarUri_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ avatarUri_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ avatarUri_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ avatarUri_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ about_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ about_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ about_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ about_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ about_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ controllerAccount_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ controllerAccount_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ controllerAccount_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ controllerAccount_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ controllerAccount_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rootAccount_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rootAccount_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rootAccount_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rootAccount_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ rootAccount_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ registeredAtBlock_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ registeredAtBlock_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ registeredAtBlock_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ registeredAtBlock_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ registeredAtBlock_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ registeredAtBlock_in?: number[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ registeredAtTime_eq?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ registeredAtTime_lt?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ registeredAtTime_lte?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ registeredAtTime_gt?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ registeredAtTime_gte?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => MembershipEntryMethod, { nullable: true })
|
|
|
+ entry_eq?: MembershipEntryMethod;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [MembershipEntryMethod], { nullable: true })
|
|
|
+ entry_in?: MembershipEntryMethod[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ subscription_eq?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ subscription_gt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ subscription_gte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ subscription_lt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ subscription_lte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [BigInt], { nullable: true })
|
|
|
+ subscription_in?: BN[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class MembershipWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => String, { nullable: true })
|
|
|
+ handle?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class MembershipCreateInput {
|
|
|
+ @TypeGraphQLField()
|
|
|
+ handle!: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ avatarUri?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ about?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ controllerAccount!: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ rootAccount!: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ registeredAtBlock!: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime)
|
|
|
+ registeredAtTime!: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => MembershipEntryMethod)
|
|
|
+ entry!: MembershipEntryMethod;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ subscription?: BN;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class MembershipUpdateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ handle?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ avatarUri?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ about?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ controllerAccount?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rootAccount?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ registeredAtBlock?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ registeredAtTime?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => MembershipEntryMethod, { nullable: true })
|
|
|
+ entry?: MembershipEntryMethod;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ subscription?: BN;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class MembershipWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => MembershipWhereInput, { nullable: true })
|
|
|
+ where?: MembershipWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => MembershipOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: MembershipOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class MembershipCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [MembershipCreateInput])
|
|
|
+ data!: MembershipCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class MembershipUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: MembershipUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: MembershipWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum CuratorGroupOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ isActive_ASC = "isActive_ASC",
|
|
|
+ isActive_DESC = "isActive_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(CuratorGroupOrderByEnum, {
|
|
|
+ name: "CuratorGroupOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class CuratorGroupWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Boolean, { nullable: true })
|
|
|
+ isActive_eq?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Boolean], { nullable: true })
|
|
|
+ isActive_in?: Boolean[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class CuratorGroupWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class CuratorGroupCreateInput {
|
|
|
+ @TypeGraphQLField(() => [BigInt])
|
|
|
+ curatorIds!: BN[];
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ isActive!: boolean;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class CuratorGroupUpdateInput {
|
|
|
+ @TypeGraphQLField(() => [BigInt], { nullable: true })
|
|
|
+ curatorIds?: BN[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isActive?: boolean;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class CuratorGroupWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => CuratorGroupWhereInput, { nullable: true })
|
|
|
+ where?: CuratorGroupWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => CuratorGroupOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: CuratorGroupOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class CuratorGroupCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [CuratorGroupCreateInput])
|
|
|
+ data!: CuratorGroupCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class CuratorGroupUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: CuratorGroupUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: CuratorGroupWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum DataObjectOwnerChannelOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ channel_ASC = "channel_ASC",
|
|
|
+ channel_DESC = "channel_DESC",
|
|
|
+
|
|
|
+ dummy_ASC = "dummy_ASC",
|
|
|
+ dummy_DESC = "dummy_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(DataObjectOwnerChannelOrderByEnum, {
|
|
|
+ name: "DataObjectOwnerChannelOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerChannelWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ channel_eq?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ channel_gt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ channel_gte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ channel_lt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ channel_lte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [BigInt], { nullable: true })
|
|
|
+ channel_in?: BN[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ dummy_in?: number[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerChannelWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerChannelCreateInput {
|
|
|
+ @TypeGraphQLField(() => BigInt)
|
|
|
+ channel!: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ dummy?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerChannelUpdateInput {
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ channel?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ dummy?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerChannelWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerChannelWhereInput, { nullable: true })
|
|
|
+ where?: DataObjectOwnerChannelWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerChannelOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: DataObjectOwnerChannelOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerChannelCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [DataObjectOwnerChannelCreateInput])
|
|
|
+ data!: DataObjectOwnerChannelCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerChannelUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: DataObjectOwnerChannelUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: DataObjectOwnerChannelWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum DataObjectOwnerCouncilOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ dummy_ASC = "dummy_ASC",
|
|
|
+ dummy_DESC = "dummy_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(DataObjectOwnerCouncilOrderByEnum, {
|
|
|
+ name: "DataObjectOwnerCouncilOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerCouncilWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ dummy_in?: number[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerCouncilWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerCouncilCreateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ dummy?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerCouncilUpdateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ dummy?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerCouncilWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerCouncilWhereInput, { nullable: true })
|
|
|
+ where?: DataObjectOwnerCouncilWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerCouncilOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: DataObjectOwnerCouncilOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerCouncilCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [DataObjectOwnerCouncilCreateInput])
|
|
|
+ data!: DataObjectOwnerCouncilCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerCouncilUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: DataObjectOwnerCouncilUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: DataObjectOwnerCouncilWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum DataObjectOwnerDaoOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ dao_ASC = "dao_ASC",
|
|
|
+ dao_DESC = "dao_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(DataObjectOwnerDaoOrderByEnum, {
|
|
|
+ name: "DataObjectOwnerDaoOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerDaoWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ dao_eq?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ dao_gt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ dao_gte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ dao_lt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ dao_lte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [BigInt], { nullable: true })
|
|
|
+ dao_in?: BN[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerDaoWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerDaoCreateInput {
|
|
|
+ @TypeGraphQLField(() => BigInt)
|
|
|
+ dao!: BN;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerDaoUpdateInput {
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ dao?: BN;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerDaoWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerDaoWhereInput, { nullable: true })
|
|
|
+ where?: DataObjectOwnerDaoWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerDaoOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: DataObjectOwnerDaoOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerDaoCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [DataObjectOwnerDaoCreateInput])
|
|
|
+ data!: DataObjectOwnerDaoCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerDaoUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: DataObjectOwnerDaoUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: DataObjectOwnerDaoWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum DataObjectOwnerMemberOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ member_ASC = "member_ASC",
|
|
|
+ member_DESC = "member_DESC",
|
|
|
+
|
|
|
+ dummy_ASC = "dummy_ASC",
|
|
|
+ dummy_DESC = "dummy_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(DataObjectOwnerMemberOrderByEnum, {
|
|
|
+ name: "DataObjectOwnerMemberOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerMemberWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ member_eq?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ member_gt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ member_gte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ member_lt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ member_lte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [BigInt], { nullable: true })
|
|
|
+ member_in?: BN[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ dummy_in?: number[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerMemberWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerMemberCreateInput {
|
|
|
+ @TypeGraphQLField(() => BigInt)
|
|
|
+ member!: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ dummy?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerMemberUpdateInput {
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ member?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ dummy?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerMemberWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerMemberWhereInput, { nullable: true })
|
|
|
+ where?: DataObjectOwnerMemberWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerMemberOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: DataObjectOwnerMemberOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerMemberCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [DataObjectOwnerMemberCreateInput])
|
|
|
+ data!: DataObjectOwnerMemberCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerMemberUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: DataObjectOwnerMemberUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: DataObjectOwnerMemberWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum DataObjectOwnerWorkingGroupOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ dummy_ASC = "dummy_ASC",
|
|
|
+ dummy_DESC = "dummy_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(DataObjectOwnerWorkingGroupOrderByEnum, {
|
|
|
+ name: "DataObjectOwnerWorkingGroupOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerWorkingGroupWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ dummy_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ dummy_in?: number[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerWorkingGroupWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerWorkingGroupCreateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ dummy?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectOwnerWorkingGroupUpdateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ dummy?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerWorkingGroupWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerWorkingGroupWhereInput, {
|
|
|
+ nullable: true
|
|
|
+ })
|
|
|
+ where?: DataObjectOwnerWorkingGroupWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DataObjectOwnerWorkingGroupOrderByEnum, {
|
|
|
+ nullable: true
|
|
|
+ })
|
|
|
+ orderBy?: DataObjectOwnerWorkingGroupOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerWorkingGroupCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [DataObjectOwnerWorkingGroupCreateInput])
|
|
|
+ data!: DataObjectOwnerWorkingGroupCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectOwnerWorkingGroupUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: DataObjectOwnerWorkingGroupUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: DataObjectOwnerWorkingGroupWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum VideoCategoryOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ name_ASC = "name_ASC",
|
|
|
+ name_DESC = "name_DESC",
|
|
|
+
|
|
|
+ happenedIn_ASC = "happenedIn_ASC",
|
|
|
+ happenedIn_DESC = "happenedIn_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(VideoCategoryOrderByEnum, {
|
|
|
+ name: "VideoCategoryOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoCategoryWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ name_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ happenedIn_in?: number[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoCategoryWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoCategoryCreateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ happenedIn!: number;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoCategoryUpdateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ happenedIn?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoCategoryWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => VideoCategoryWhereInput, { nullable: true })
|
|
|
+ where?: VideoCategoryWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => VideoCategoryOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: VideoCategoryOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoCategoryCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [VideoCategoryCreateInput])
|
|
|
+ data!: VideoCategoryCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoCategoryUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: VideoCategoryUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: VideoCategoryWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum LanguageOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ iso_ASC = "iso_ASC",
|
|
|
+ iso_DESC = "iso_DESC",
|
|
|
+
|
|
|
+ happenedIn_ASC = "happenedIn_ASC",
|
|
|
+ happenedIn_DESC = "happenedIn_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(LanguageOrderByEnum, {
|
|
|
+ name: "LanguageOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class LanguageWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ iso_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ iso_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ iso_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ iso_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ iso_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ happenedIn_in?: number[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class LanguageWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class LanguageCreateInput {
|
|
|
+ @TypeGraphQLField()
|
|
|
+ iso!: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ happenedIn!: number;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class LanguageUpdateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ iso?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ happenedIn?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class LanguageWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => LanguageWhereInput, { nullable: true })
|
|
|
+ where?: LanguageWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => LanguageOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: LanguageOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class LanguageCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [LanguageCreateInput])
|
|
|
+ data!: LanguageCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class LanguageUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: LanguageUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: LanguageWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum LicenseOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ code_ASC = "code_ASC",
|
|
|
+ code_DESC = "code_DESC",
|
|
|
+
|
|
|
+ attribution_ASC = "attribution_ASC",
|
|
|
+ attribution_DESC = "attribution_DESC",
|
|
|
+
|
|
|
+ customText_ASC = "customText_ASC",
|
|
|
+ customText_DESC = "customText_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(LicenseOrderByEnum, {
|
|
|
+ name: "LicenseOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class LicenseWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ code_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ code_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ code_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ code_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ code_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ code_in?: number[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ attribution_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ attribution_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ attribution_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ attribution_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ attribution_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ customText_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ customText_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ customText_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ customText_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ customText_in?: string[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class LicenseWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class LicenseCreateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ code?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ attribution?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ customText?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class LicenseUpdateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ code?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ attribution?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ customText?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class LicenseWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => LicenseWhereInput, { nullable: true })
|
|
|
+ where?: LicenseWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => LicenseOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: LicenseOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class LicenseCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [LicenseCreateInput])
|
|
|
+ data!: LicenseCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class LicenseUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: LicenseUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: LicenseWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum VideoMediaEncodingOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ codecName_ASC = "codecName_ASC",
|
|
|
+ codecName_DESC = "codecName_DESC",
|
|
|
+
|
|
|
+ container_ASC = "container_ASC",
|
|
|
+ container_DESC = "container_DESC",
|
|
|
+
|
|
|
+ mimeMediaType_ASC = "mimeMediaType_ASC",
|
|
|
+ mimeMediaType_DESC = "mimeMediaType_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(VideoMediaEncodingOrderByEnum, {
|
|
|
+ name: "VideoMediaEncodingOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoMediaEncodingWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ codecName_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ codecName_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ codecName_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ codecName_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ codecName_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ container_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ container_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ container_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ container_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ container_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ mimeMediaType_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ mimeMediaType_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ mimeMediaType_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ mimeMediaType_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ mimeMediaType_in?: string[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoMediaEncodingWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoMediaEncodingCreateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ codecName?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ container?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ mimeMediaType?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoMediaEncodingUpdateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ codecName?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ container?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ mimeMediaType?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoMediaEncodingWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => VideoMediaEncodingWhereInput, { nullable: true })
|
|
|
+ where?: VideoMediaEncodingWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => VideoMediaEncodingOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: VideoMediaEncodingOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoMediaEncodingCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [VideoMediaEncodingCreateInput])
|
|
|
+ data!: VideoMediaEncodingCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoMediaEncodingUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: VideoMediaEncodingUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: VideoMediaEncodingWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum VideoMediaMetadataOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ encodingId_ASC = "encodingId_ASC",
|
|
|
+ encodingId_DESC = "encodingId_DESC",
|
|
|
+
|
|
|
+ pixelWidth_ASC = "pixelWidth_ASC",
|
|
|
+ pixelWidth_DESC = "pixelWidth_DESC",
|
|
|
+
|
|
|
+ pixelHeight_ASC = "pixelHeight_ASC",
|
|
|
+ pixelHeight_DESC = "pixelHeight_DESC",
|
|
|
+
|
|
|
+ size_ASC = "size_ASC",
|
|
|
+ size_DESC = "size_DESC",
|
|
|
+
|
|
|
+ happenedIn_ASC = "happenedIn_ASC",
|
|
|
+ happenedIn_DESC = "happenedIn_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(VideoMediaMetadataOrderByEnum, {
|
|
|
+ name: "VideoMediaMetadataOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoMediaMetadataWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ encodingId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ encodingId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelWidth_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelWidth_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelWidth_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelWidth_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelWidth_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ pixelWidth_in?: number[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelHeight_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelHeight_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelHeight_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelHeight_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ pixelHeight_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ pixelHeight_in?: number[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_eq?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_gt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_gte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_lt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_lte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [BigInt], { nullable: true })
|
|
|
+ size_in?: BN[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ happenedIn_in?: number[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoMediaMetadataWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoMediaMetadataCreateInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ encodingId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ pixelWidth?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ pixelHeight?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ happenedIn!: number;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoMediaMetadataUpdateInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ encodingId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ pixelWidth?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ pixelHeight?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ happenedIn?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoMediaMetadataWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => VideoMediaMetadataWhereInput, { nullable: true })
|
|
|
+ where?: VideoMediaMetadataWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => VideoMediaMetadataOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: VideoMediaMetadataOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoMediaMetadataCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [VideoMediaMetadataCreateInput])
|
|
|
+ data!: VideoMediaMetadataCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoMediaMetadataUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: VideoMediaMetadataUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: VideoMediaMetadataWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum FeaturedVideoOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ videoId_ASC = "videoId_ASC",
|
|
|
+ videoId_DESC = "videoId_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(FeaturedVideoOrderByEnum, {
|
|
|
+ name: "FeaturedVideoOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class FeaturedVideoWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ videoId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ videoId_in?: string[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class FeaturedVideoWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class FeaturedVideoCreateInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ videoId!: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class FeaturedVideoUpdateInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ videoId?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class FeaturedVideoWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => FeaturedVideoWhereInput, { nullable: true })
|
|
|
+ where?: FeaturedVideoWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => FeaturedVideoOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: FeaturedVideoOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class FeaturedVideoCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [FeaturedVideoCreateInput])
|
|
|
+ data!: FeaturedVideoCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class FeaturedVideoUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: FeaturedVideoUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: FeaturedVideoWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum VideoOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ channelId_ASC = "channelId_ASC",
|
|
|
+ channelId_DESC = "channelId_DESC",
|
|
|
+
|
|
|
+ categoryId_ASC = "categoryId_ASC",
|
|
|
+ categoryId_DESC = "categoryId_DESC",
|
|
|
+
|
|
|
+ title_ASC = "title_ASC",
|
|
|
+ title_DESC = "title_DESC",
|
|
|
+
|
|
|
+ description_ASC = "description_ASC",
|
|
|
+ description_DESC = "description_DESC",
|
|
|
+
|
|
|
+ duration_ASC = "duration_ASC",
|
|
|
+ duration_DESC = "duration_DESC",
|
|
|
+
|
|
|
+ thumbnailDataObjectId_ASC = "thumbnailDataObjectId_ASC",
|
|
|
+ thumbnailDataObjectId_DESC = "thumbnailDataObjectId_DESC",
|
|
|
+
|
|
|
+ thumbnailAvailability_ASC = "thumbnailAvailability_ASC",
|
|
|
+ thumbnailAvailability_DESC = "thumbnailAvailability_DESC",
|
|
|
+
|
|
|
+ languageId_ASC = "languageId_ASC",
|
|
|
+ languageId_DESC = "languageId_DESC",
|
|
|
+
|
|
|
+ hasMarketing_ASC = "hasMarketing_ASC",
|
|
|
+ hasMarketing_DESC = "hasMarketing_DESC",
|
|
|
+
|
|
|
+ publishedBeforeJoystream_ASC = "publishedBeforeJoystream_ASC",
|
|
|
+ publishedBeforeJoystream_DESC = "publishedBeforeJoystream_DESC",
|
|
|
+
|
|
|
+ isPublic_ASC = "isPublic_ASC",
|
|
|
+ isPublic_DESC = "isPublic_DESC",
|
|
|
+
|
|
|
+ isCensored_ASC = "isCensored_ASC",
|
|
|
+ isCensored_DESC = "isCensored_DESC",
|
|
|
+
|
|
|
+ isExplicit_ASC = "isExplicit_ASC",
|
|
|
+ isExplicit_DESC = "isExplicit_DESC",
|
|
|
+
|
|
|
+ licenseId_ASC = "licenseId_ASC",
|
|
|
+ licenseId_DESC = "licenseId_DESC",
|
|
|
+
|
|
|
+ mediaDataObjectId_ASC = "mediaDataObjectId_ASC",
|
|
|
+ mediaDataObjectId_DESC = "mediaDataObjectId_DESC",
|
|
|
+
|
|
|
+ mediaAvailability_ASC = "mediaAvailability_ASC",
|
|
|
+ mediaAvailability_DESC = "mediaAvailability_DESC",
|
|
|
+
|
|
|
+ mediaMetadataId_ASC = "mediaMetadataId_ASC",
|
|
|
+ mediaMetadataId_DESC = "mediaMetadataId_DESC",
|
|
|
+
|
|
|
+ happenedIn_ASC = "happenedIn_ASC",
|
|
|
+ happenedIn_DESC = "happenedIn_DESC",
|
|
|
+
|
|
|
+ isFeatured_ASC = "isFeatured_ASC",
|
|
|
+ isFeatured_DESC = "isFeatured_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(VideoOrderByEnum, {
|
|
|
+ name: "VideoOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ channelId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ channelId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ categoryId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ categoryId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ title_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ description_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ duration_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ duration_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ duration_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ duration_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ duration_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ duration_in?: number[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ thumbnailDataObjectId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ thumbnailDataObjectId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability, { nullable: true })
|
|
|
+ thumbnailAvailability_eq?: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [AssetAvailability], { nullable: true })
|
|
|
+ thumbnailAvailability_in?: AssetAvailability[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ languageId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ languageId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Boolean, { nullable: true })
|
|
|
+ hasMarketing_eq?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Boolean], { nullable: true })
|
|
|
+ hasMarketing_in?: Boolean[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ publishedBeforeJoystream_eq?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ publishedBeforeJoystream_lt?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ publishedBeforeJoystream_lte?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ publishedBeforeJoystream_gt?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ publishedBeforeJoystream_gte?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Boolean, { nullable: true })
|
|
|
+ isPublic_eq?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Boolean], { nullable: true })
|
|
|
+ isPublic_in?: Boolean[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Boolean, { nullable: true })
|
|
|
+ isCensored_eq?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Boolean], { nullable: true })
|
|
|
+ isCensored_in?: Boolean[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Boolean, { nullable: true })
|
|
|
+ isExplicit_eq?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Boolean], { nullable: true })
|
|
|
+ isExplicit_in?: Boolean[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ licenseId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ licenseId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ mediaDataObjectId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ mediaDataObjectId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability, { nullable: true })
|
|
|
+ mediaAvailability_eq?: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [AssetAvailability], { nullable: true })
|
|
|
+ mediaAvailability_in?: AssetAvailability[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ mediaMetadataId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ mediaMetadataId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ happenedIn_in?: number[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Boolean, { nullable: true })
|
|
|
+ isFeatured_eq?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Boolean], { nullable: true })
|
|
|
+ isFeatured_in?: Boolean[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoCreateInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ channelId!: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ categoryId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ duration?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ thumbnailDataObjectId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String])
|
|
|
+ thumbnailUrls!: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability)
|
|
|
+ thumbnailAvailability!: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ languageId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ hasMarketing?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ publishedBeforeJoystream?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isPublic?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ isCensored!: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isExplicit?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ licenseId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ mediaDataObjectId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String])
|
|
|
+ mediaUrls!: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability)
|
|
|
+ mediaAvailability!: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ mediaMetadataId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ happenedIn!: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ isFeatured!: boolean;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class VideoUpdateInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ channelId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ categoryId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ duration?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ thumbnailDataObjectId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ thumbnailUrls?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability, { nullable: true })
|
|
|
+ thumbnailAvailability?: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ languageId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ hasMarketing?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ publishedBeforeJoystream?: DateTimeString;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isPublic?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isCensored?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isExplicit?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ licenseId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ mediaDataObjectId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ mediaUrls?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability, { nullable: true })
|
|
|
+ mediaAvailability?: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ mediaMetadataId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ happenedIn?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isFeatured?: boolean;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => VideoWhereInput, { nullable: true })
|
|
|
+ where?: VideoWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => VideoOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: VideoOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [VideoCreateInput])
|
|
|
+ data!: VideoCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class VideoUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: VideoUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: VideoWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum DataObjectOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ addedAt_ASC = "addedAt_ASC",
|
|
|
+ addedAt_DESC = "addedAt_DESC",
|
|
|
+
|
|
|
+ typeId_ASC = "typeId_ASC",
|
|
|
+ typeId_DESC = "typeId_DESC",
|
|
|
+
|
|
|
+ size_ASC = "size_ASC",
|
|
|
+ size_DESC = "size_DESC",
|
|
|
+
|
|
|
+ liaisonId_ASC = "liaisonId_ASC",
|
|
|
+ liaisonId_DESC = "liaisonId_DESC",
|
|
|
+
|
|
|
+ liaisonJudgement_ASC = "liaisonJudgement_ASC",
|
|
|
+ liaisonJudgement_DESC = "liaisonJudgement_DESC",
|
|
|
+
|
|
|
+ ipfsContentId_ASC = "ipfsContentId_ASC",
|
|
|
+ ipfsContentId_DESC = "ipfsContentId_DESC",
|
|
|
+
|
|
|
+ joystreamContentId_ASC = "joystreamContentId_ASC",
|
|
|
+ joystreamContentId_DESC = "joystreamContentId_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(DataObjectOrderByEnum, {
|
|
|
+ name: "DataObjectOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => GraphQLJSONObject, { nullable: true })
|
|
|
+ owner_json?: JsonObject;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ addedAt_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ addedAt_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ addedAt_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ addedAt_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ addedAt_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ addedAt_in?: number[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ typeId_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ typeId_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ typeId_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ typeId_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ typeId_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ typeId_in?: number[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_eq?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_gt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_gte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_lt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size_lte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [BigInt], { nullable: true })
|
|
|
+ size_in?: BN[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ liaisonId_eq?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ liaisonId_gt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ liaisonId_gte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ liaisonId_lt?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ liaisonId_lte?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [BigInt], { nullable: true })
|
|
|
+ liaisonId_in?: BN[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => LiaisonJudgement, { nullable: true })
|
|
|
+ liaisonJudgement_eq?: LiaisonJudgement;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [LiaisonJudgement], { nullable: true })
|
|
|
+ liaisonJudgement_in?: LiaisonJudgement[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ ipfsContentId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ ipfsContentId_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ ipfsContentId_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ ipfsContentId_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ ipfsContentId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ joystreamContentId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ joystreamContentId_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ joystreamContentId_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ joystreamContentId_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ joystreamContentId_in?: string[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectCreateInput {
|
|
|
+ @TypeGraphQLField(() => GraphQLJSONObject)
|
|
|
+ owner!: JsonObject;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ addedAt!: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ typeId!: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt)
|
|
|
+ size!: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt)
|
|
|
+ liaisonId!: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => LiaisonJudgement)
|
|
|
+ liaisonJudgement!: LiaisonJudgement;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ ipfsContentId!: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ joystreamContentId!: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class DataObjectUpdateInput {
|
|
|
+ @TypeGraphQLField(() => GraphQLJSONObject, { nullable: true })
|
|
|
+ owner?: JsonObject;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ addedAt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ typeId?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ size?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => BigInt, { nullable: true })
|
|
|
+ liaisonId?: BN;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => LiaisonJudgement, { nullable: true })
|
|
|
+ liaisonJudgement?: LiaisonJudgement;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ ipfsContentId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ joystreamContentId?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => DataObjectWhereInput, { nullable: true })
|
|
|
+ where?: DataObjectWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DataObjectOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: DataObjectOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [DataObjectCreateInput])
|
|
|
+ data!: DataObjectCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class DataObjectUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: DataObjectUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: DataObjectWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum ChannelOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ ownerMemberId_ASC = "ownerMemberId_ASC",
|
|
|
+ ownerMemberId_DESC = "ownerMemberId_DESC",
|
|
|
+
|
|
|
+ ownerCuratorGroupId_ASC = "ownerCuratorGroupId_ASC",
|
|
|
+ ownerCuratorGroupId_DESC = "ownerCuratorGroupId_DESC",
|
|
|
+
|
|
|
+ categoryId_ASC = "categoryId_ASC",
|
|
|
+ categoryId_DESC = "categoryId_DESC",
|
|
|
+
|
|
|
+ rewardAccount_ASC = "rewardAccount_ASC",
|
|
|
+ rewardAccount_DESC = "rewardAccount_DESC",
|
|
|
+
|
|
|
+ title_ASC = "title_ASC",
|
|
|
+ title_DESC = "title_DESC",
|
|
|
+
|
|
|
+ description_ASC = "description_ASC",
|
|
|
+ description_DESC = "description_DESC",
|
|
|
+
|
|
|
+ coverPhotoDataObjectId_ASC = "coverPhotoDataObjectId_ASC",
|
|
|
+ coverPhotoDataObjectId_DESC = "coverPhotoDataObjectId_DESC",
|
|
|
+
|
|
|
+ coverPhotoAvailability_ASC = "coverPhotoAvailability_ASC",
|
|
|
+ coverPhotoAvailability_DESC = "coverPhotoAvailability_DESC",
|
|
|
+
|
|
|
+ avatarDataObjectId_ASC = "avatarDataObjectId_ASC",
|
|
|
+ avatarDataObjectId_DESC = "avatarDataObjectId_DESC",
|
|
|
+
|
|
|
+ avatarAvailability_ASC = "avatarAvailability_ASC",
|
|
|
+ avatarAvailability_DESC = "avatarAvailability_DESC",
|
|
|
+
|
|
|
+ isPublic_ASC = "isPublic_ASC",
|
|
|
+ isPublic_DESC = "isPublic_DESC",
|
|
|
+
|
|
|
+ isCensored_ASC = "isCensored_ASC",
|
|
|
+ isCensored_DESC = "isCensored_DESC",
|
|
|
+
|
|
|
+ languageId_ASC = "languageId_ASC",
|
|
|
+ languageId_DESC = "languageId_DESC",
|
|
|
+
|
|
|
+ happenedIn_ASC = "happenedIn_ASC",
|
|
|
+ happenedIn_DESC = "happenedIn_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(ChannelOrderByEnum, {
|
|
|
+ name: "ChannelOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class ChannelWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ ownerMemberId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ ownerMemberId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ ownerCuratorGroupId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ ownerCuratorGroupId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ categoryId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ categoryId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rewardAccount_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rewardAccount_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rewardAccount_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rewardAccount_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ rewardAccount_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ title_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ description_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ coverPhotoDataObjectId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ coverPhotoDataObjectId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability, { nullable: true })
|
|
|
+ coverPhotoAvailability_eq?: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [AssetAvailability], { nullable: true })
|
|
|
+ coverPhotoAvailability_in?: AssetAvailability[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ avatarDataObjectId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ avatarDataObjectId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability, { nullable: true })
|
|
|
+ avatarAvailability_eq?: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [AssetAvailability], { nullable: true })
|
|
|
+ avatarAvailability_in?: AssetAvailability[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Boolean, { nullable: true })
|
|
|
+ isPublic_eq?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Boolean], { nullable: true })
|
|
|
+ isPublic_in?: Boolean[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Boolean, { nullable: true })
|
|
|
+ isCensored_eq?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Boolean], { nullable: true })
|
|
|
+ isCensored_in?: Boolean[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ languageId_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ languageId_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ happenedIn_in?: number[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class ChannelWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class ChannelCreateInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ ownerMemberId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ ownerCuratorGroupId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ categoryId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rewardAccount?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ coverPhotoDataObjectId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String])
|
|
|
+ coverPhotoUrls!: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability)
|
|
|
+ coverPhotoAvailability!: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ avatarDataObjectId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String])
|
|
|
+ avatarUrls!: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability)
|
|
|
+ avatarAvailability!: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isPublic?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ isCensored!: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ languageId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ happenedIn!: number;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class ChannelUpdateInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ ownerMemberId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ ownerCuratorGroupId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ categoryId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ rewardAccount?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ title?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ description?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ coverPhotoDataObjectId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ coverPhotoUrls?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability, { nullable: true })
|
|
|
+ coverPhotoAvailability?: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ avatarDataObjectId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ avatarUrls?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => AssetAvailability, { nullable: true })
|
|
|
+ avatarAvailability?: AssetAvailability;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isPublic?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ isCensored?: boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ languageId?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ happenedIn?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class ChannelWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => ChannelWhereInput, { nullable: true })
|
|
|
+ where?: ChannelWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ChannelOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: ChannelOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class ChannelCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [ChannelCreateInput])
|
|
|
+ data!: ChannelCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class ChannelUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: ChannelUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: ChannelWhereUniqueInput;
|
|
|
+}
|
|
|
+
|
|
|
+export enum ChannelCategoryOrderByEnum {
|
|
|
+ createdAt_ASC = "createdAt_ASC",
|
|
|
+ createdAt_DESC = "createdAt_DESC",
|
|
|
+
|
|
|
+ updatedAt_ASC = "updatedAt_ASC",
|
|
|
+ updatedAt_DESC = "updatedAt_DESC",
|
|
|
+
|
|
|
+ deletedAt_ASC = "deletedAt_ASC",
|
|
|
+ deletedAt_DESC = "deletedAt_DESC",
|
|
|
+
|
|
|
+ name_ASC = "name_ASC",
|
|
|
+ name_DESC = "name_DESC",
|
|
|
+
|
|
|
+ happenedIn_ASC = "happenedIn_ASC",
|
|
|
+ happenedIn_DESC = "happenedIn_DESC"
|
|
|
+}
|
|
|
+
|
|
|
+registerEnumType(ChannelCategoryOrderByEnum, {
|
|
|
+ name: "ChannelCategoryOrderByInput"
|
|
|
+});
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class ChannelCategoryWhereInput {
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ id_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ id_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ createdAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ createdById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ createdById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ updatedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ updatedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ updatedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ deletedAt_all?: Boolean;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_eq?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_lte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gt?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => DateTime, { nullable: true })
|
|
|
+ deletedAt_gte?: Date;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ID, { nullable: true })
|
|
|
+ deletedById_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [ID], { nullable: true })
|
|
|
+ deletedById_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name_eq?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name_contains?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name_startsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name_endsWith?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [String], { nullable: true })
|
|
|
+ name_in?: string[];
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_eq?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_gte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lt?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => Int, { nullable: true })
|
|
|
+ happenedIn_lte?: number;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => [Int], { nullable: true })
|
|
|
+ happenedIn_in?: number[];
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class ChannelCategoryWhereUniqueInput {
|
|
|
+ @TypeGraphQLField(() => ID)
|
|
|
+ id?: string;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class ChannelCategoryCreateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField()
|
|
|
+ happenedIn!: number;
|
|
|
+}
|
|
|
+
|
|
|
+@TypeGraphQLInputType()
|
|
|
+export class ChannelCategoryUpdateInput {
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ name?: string;
|
|
|
+
|
|
|
+ @TypeGraphQLField({ nullable: true })
|
|
|
+ happenedIn?: number;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class ChannelCategoryWhereArgs extends PaginationArgs {
|
|
|
+ @TypeGraphQLField(() => ChannelCategoryWhereInput, { nullable: true })
|
|
|
+ where?: ChannelCategoryWhereInput;
|
|
|
+
|
|
|
+ @TypeGraphQLField(() => ChannelCategoryOrderByEnum, { nullable: true })
|
|
|
+ orderBy?: ChannelCategoryOrderByEnum;
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class ChannelCategoryCreateManyArgs {
|
|
|
+ @TypeGraphQLField(() => [ChannelCategoryCreateInput])
|
|
|
+ data!: ChannelCategoryCreateInput[];
|
|
|
+}
|
|
|
+
|
|
|
+@ArgsType()
|
|
|
+export class ChannelCategoryUpdateArgs {
|
|
|
+ @TypeGraphQLField() data!: ChannelCategoryUpdateInput;
|
|
|
+ @TypeGraphQLField() where!: ChannelCategoryWhereUniqueInput;
|
|
|
+}
|