mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import { registerEnumType } from 'type-graphql'
|
|
|
|
export enum Order {
|
|
ASC = 'ASC',
|
|
DESC = 'DESC',
|
|
}
|
|
|
|
registerEnumType(Order, {
|
|
name: 'Order', // this one is mandatory
|
|
description: 'Order direction - ascending or descending', // this one is optional
|
|
})
|