Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Codecrew / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 30
  • Merge Requests 2
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • models
  • event-user.model.ts
  • Tuukka Kivilahti's avatar
    Fixed graphQL and viplist is now using it · a4fefec4
    Tuukka Kivilahti committed Aug 07, 2018
    a4fefec4
event-user.model.ts 352 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

import {User} from './user.model';
import gql from 'graphql-tag';

export enum UserGender {
  MALE,
  FEMALE,
  UNSPECIFIED
}

export class EventUser {

  static fragments = gql`
    fragment eventUserPrimitives on EventUser {
      id
      eventusercreated
    }

  `;

  id: number;
  eventusercreated: Date;
  user: User;

  constructor() { }
}