ardatan / graphql-import

Import & export definitions in GraphQL SDL
868 stars 56 forks source link

Import failed with Union type #508

Closed chuter closed 4 years ago

chuter commented 4 years ago
union ActionTarget = Job | User | Company

type UserAction implements BaseActionInfo {
  user: User!
  time: Date(format: String = "yyyy-MM-dd HH:mm:SS") 
  type: ActionType
  target: ActionTarget
}