Skip to content

Application Entities

Eric Cabrel TIOGO edited this page Aug 18, 2021 · 2 revisions

Entities

Models

YearGroup

  • id: string
  • name: string; unique

Author

  • id: string
  • name: string; unique
  • birthDate?: Date
  • country?: string
  • link?: string
  • picture?: string

Language

  • id: string
  • yearGroup: YearGroups
  • years: number[]
  • yearConfirmed: boolean;
  • name: string;
  • nameExtra?: string;
  • company?: string;
  • link?: string;
  • yearGroup: string;
  • authors: string[];
  • predecessors: string[];

Request Log

  • id: string
  • type: string (rest | graphql)
  • endpoint: string
  • ipAddress: string
  • succeed: boolean

Note: All the models have the field createdAt and updatedAt

Clone this wiki locally