@nestjs/graphql#registerEnumType TypeScript Examples
The following examples show how to use
@nestjs/graphql#registerEnumType.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: dummy-scalar-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(DummyScalarFieldEnum, {
name: 'DummyScalarFieldEnum',
description: undefined,
});
Example #2
Source File: Role.ts From amplication with Apache License 2.0 | 5 votes |
registerEnumType(Role, {
name: 'Role',
description: undefined
});
Example #3
Source File: SortOrder.ts From amplication with Apache License 2.0 | 5 votes |
registerEnumType(SortOrder, {
name: 'SortOrder',
description: undefined
});
Example #4
Source File: notification.enum.ts From aws-nestjs-starter with The Unlicense | 5 votes |
registerEnumType(NotificationStatus, {
name: 'NotificationStatus',
});
Example #5
Source File: global.types.ts From relate with GNU General Public License v3.0 | 5 votes |
registerEnumType(FILTER_COMPARATORS, {
name: 'FILTER_COMPARATORS',
});
Example #6
Source File: global.types.ts From relate with GNU General Public License v3.0 | 5 votes |
registerEnumType(FILTER_CONNECTORS, {
name: 'FILTER_CONNECTORS',
});
Example #7
Source File: global.types.ts From relate with GNU General Public License v3.0 | 5 votes |
registerEnumType(NEO4J_EDITION, {
name: 'NEO4J_EDITION',
});
Example #8
Source File: enums.ts From NextJS-NestJS-GraphQL-Starter with MIT License | 5 votes |
registerEnumType(Roles, {
name: 'Roles',
});
Example #9
Source File: article-order-by-relevance-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(ArticleOrderByRelevanceFieldEnum, {
name: 'ArticleOrderByRelevanceFieldEnum',
description: undefined,
});
Example #10
Source File: article-scalar-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(ArticleScalarFieldEnum, {
name: 'ArticleScalarFieldEnum',
description: undefined,
});
Example #11
Source File: comment-order-by-relevance-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(CommentOrderByRelevanceFieldEnum, {
name: 'CommentOrderByRelevanceFieldEnum',
description: undefined,
});
Example #12
Source File: comment-scalar-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(CommentScalarFieldEnum, {
name: 'CommentScalarFieldEnum',
description: undefined,
});
Example #13
Source File: dummy-order-by-relevance-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(DummyOrderByRelevanceFieldEnum, {
name: 'DummyOrderByRelevanceFieldEnum',
description: undefined,
});
Example #14
Source File: QueryMode.ts From amplication with Apache License 2.0 | 5 votes |
registerEnumType(QueryMode, {
name: 'QueryMode',
description: undefined
});
Example #15
Source File: json-null-value-filter.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(JsonNullValueFilter, {
name: 'JsonNullValueFilter',
description: undefined,
});
Example #16
Source File: nullable-json-null-value-input.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(NullableJsonNullValueInput, {
name: 'NullableJsonNullValueInput',
description: undefined,
});
Example #17
Source File: query-mode.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(QueryMode, { name: 'QueryMode', description: undefined });
Example #18
Source File: role.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(Role, { name: 'Role', description: undefined });
Example #19
Source File: sort-order.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(SortOrder, { name: 'SortOrder', description: undefined });
Example #20
Source File: profile-order-by-relevance-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(ProfileOrderByRelevanceFieldEnum, {
name: 'ProfileOrderByRelevanceFieldEnum',
description: undefined,
});
Example #21
Source File: profile-scalar-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(ProfileScalarFieldEnum, {
name: 'ProfileScalarFieldEnum',
description: undefined,
});
Example #22
Source File: tag-order-by-relevance-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(TagOrderByRelevanceFieldEnum, {
name: 'TagOrderByRelevanceFieldEnum',
description: undefined,
});
Example #23
Source File: tag-scalar-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(TagScalarFieldEnum, {
name: 'TagScalarFieldEnum',
description: undefined,
});
Example #24
Source File: user-order-by-relevance-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(UserOrderByRelevanceFieldEnum, {
name: 'UserOrderByRelevanceFieldEnum',
description: undefined,
});
Example #25
Source File: user-scalar-field.enum.ts From prisma-nestjs-graphql with MIT License | 5 votes |
registerEnumType(UserScalarFieldEnum, {
name: 'UserScalarFieldEnum',
description: undefined,
});
Example #26
Source File: EnumBuildStatus.ts From amplication with Apache License 2.0 | 5 votes |
registerEnumType(EnumBuildStatus, {
name: 'EnumBuildStatus'
});
Example #27
Source File: post.type.ts From nestjs-mercurius with MIT License | 5 votes |
registerEnumType(Status, {
name: 'Status',
});
Example #28
Source File: QueryMode.ts From amplication with Apache License 2.0 | 5 votes |
registerEnumType(QueryMode, {
name: "QueryMode",
description: undefined,
});
Example #29
Source File: SortOrder.ts From amplication with Apache License 2.0 | 5 votes |
registerEnumType(SortOrder, {
name: "SortOrder",
description: undefined,
});