Skip to content
Snippets Groups Projects
  1. Aug 14, 2024
  2. Aug 01, 2024
    • Martin Juhás's avatar
      feat: rework graphql api types · 8f0ae118
      Martin Juhás authored
      ### Additions
      
      * added `SimpleTeamType`
      * added `SimpleEmailParticipantType`
      * added `SimpleUserType`
      * added `SimpleEmailThreadType`
      * added `SimpleExerciseType`
      * added `SimpleDefinitionType`
      * added `SimpleToolType`
      * added `SimpleRoleType`
      * added `SimpleActionLogType`
      * added `SimpleEmailType`
      * added `SimpleQuestionType`
      * added `SimpleMilestoneStateType`
      * added `SimpleDefinitionChannelType`
      * added `SimpleLearningObjectiveType`
      * added `SimpleTeamLearningObjectiveType`
      * added `SimpleFileInfoType`
      * added `SimpleEmailAddressType`
      * added `SimpleDefinitionInjectType`
      * added `SimpleQuestionnaireType`
      * added `SimpleTeamQuestionnaireStateType`
      * added `SimpleQuestionnaireAnswerType`
      * added `SimpleLearningActivityType`
      * added `SimpleTeamLearningActivityType`
      
      ### Changes
      
      * `GrapheneConfig` has been renamed to `ExerciseConfigType` to be more aligned with the current naming scheme
      * old `ExtendedToolType` has been renamed to `ToolType`
      * old `ToolType` has been renamed to `SimpleToolType`
      
      #### ToolType
      
      * field `definition` type changed to `SimpleDefinitionType`
      
      #### DefinitionType
      
      * field `files` type changed to `SimpleFileInfoType`
      * field `learningObjectives` type changed to `SimpleLearningObjectiveType`
      * field `addresses` type changed to `SimpleEmailAddressType`
      * field `injects` type changed to `SimpleDefinitionInjectType`
      * field `tools` type changed to `SimpleToolType`
      * field `roles` type changed to `SimpleDefinitionRoleType`
      * field `channels` type changed to `SimpleDefinitionChannelType`
      * field `questionnaires` type changed to `SimpleQuestionnaireType`
      * field `exercises` type changed to `SimpleExerciseType`
      * field `userSet` type changed to `SimpleUserType`
      
      #### ExerciseType
      
      * field `definition` type changed to `SimpleDefinitionType`
      * field `teams` type changed to `SimpleTeamType`
      * field `emailParticipants` type changed to `SimpleEmailParticipantType`
      * field `userSet` type changed to `SimpleUserType`
      * field `threads` type changed to `SimpleEmailThreadType`
      
      #### TeamType
      
      * field `exercise` type changed to `SimpleExerciseType`
      * field `emailAddress` type changed to `SimpleEmailAddressType`
      * field `teamQuestionnaireStates` type changed to `SimpleTeamQuestionnaireStateType`
      * field `logs` type changed to `SimpleActionLogType`
      * field `userSet` type changed to `SimpleUserType`
      
      #### ContentType
      
      * field `fileInfo` type changed to `SimpleFileInfoType`
      
      #### ToolDetailsType
      
      * field `tool` type changed to `SimpleToolType`
      * field `user` type changed to `SimpleUserType`
      
      #### InjectDetailsType
      
      * field `inject` type changed to `SimpleDefinitionInjectType`
      
      #### CustomInjectDetailsType
      
      * field `user` type changed to `SimpleUserType`
      
      #### EmailType
      
      * field `thread` type changed to `SimpleEmailThreadType`
      * field `sender` type changed to `SimpleEmailParticipantType`
      * field `user` type changed to `SimpleUserType`
      
      #### QuestionType
      
      * field `questionnaire` type changed to `SimpleQuestionnaireType`
      
      #### QuestionnaireType
      
      * field `definition` type changed to `SimpleDefinitionType`
      * field `teamQuestionnaireStates` type changed to `SimpleTeamQuestionnaireStateType`
      
      #### ActionLogType
      
      * field `team` type changed to `SimpleTeamType`
      * field `channel` type changed to `SimpleDefinitionChannelType`
      
      #### MilestoneType
      
      * field `definition` type changed to `SimpleDefinitionType`
      * field `milestoneStates` type changed to `SimpleMilestoneStateType`
      * field `activity` type changed to `SimpleLearningActivityType`
      
      #### MilestoneStateType
      
      * field `activity` type changed to `SimpleTeamLearningActivityType`
      
      #### EmailThreadType
      
      * field `participants` type changed to `SimpleEmailParticipantType`
      * field `exercise` type changed to `SimpleExerciseType`
      
      #### ToolResponseType
      
      * field `tool` type changed to `SimpleToolType`
      
      #### EmailAddressType
      
      * field `definition` type changed to `SimpleDefinitionType`
      
      #### EmailTemplateType
      
      * field `emailAddress` type changed to `SimpleEmailAddressType`
      
      #### EmailParticipantType
      
      * field `exercise` type changed to `SimpleExerciseType`
      * field `definitionAddress` type changed to `SimpleEmailAddressType`
      * field `team` type changed to `SimpleTeamType`
      * field `threads` type changed to `SimpleEmailThreadType`
      * field `emails` type changed to `SimpleEmailType`
      
      #### DefinitionInjectType
      
      * field `definition` type changed to `SimpleDefinitionType`
      
      #### FileInfoType
      
      * field `definition` type changed to `SimpleDefinitionType`
      
      #### UserType
      
      * field `definitions` type changed to `SimpleDefinitionType`
      * field `exercises` type changed to `SimpleExerciseType`
      * field `teams` type changed to `SimpleTeamType`
      
      #### DefinitionChannelType
      
      * field `definition` type changed to `SimpleDefinitionType`
      
      #### QuestionnaireAnswerType
      
      * field `teamQuestionnaireState` type changed to `SimpleTeamQuestionnaireStateType`
      
      #### TeamQuestionnaireStateType
      
      * field `team` type changed to `SimpleTeamType`
      * field `questionnaire` type changed to `SimpleQuestionnaireType`
      
      #### LearningObjectiveType
      
      * field `definition` type changed to `SimpleDefinitionType`
      
      #### LearningActivityType
      
      * field `objective` type changed to `SimpleLearningObjectiveType`
      
      #### TeamLearningObjectiveType
      
      * field `objective` type changed to `SimpleLearningObjectiveType`
      
      Closes #248
      8f0ae118
  3. Jul 24, 2024
  4. Jul 18, 2024
  5. Jul 15, 2024
    • Martin Juhás's avatar
      change: remove manual injects · 2efc0c4d
      Martin Juhás authored
      ### Changes
      
      * remove field `auto` on `DefinitionInjectType`
      * rename `autoInjects` to `injects`
      
      ### Deletions
      
      * remove `InjectSelectionType`
      * remove `teamInjectSelections` query
      * remove `injectSelection` subscription
      * remove `selectTeamInjectOption` mutation
      
      Closes #228
      2efc0c4d
  6. Jul 12, 2024
  7. May 07, 2024
  8. May 06, 2024
  9. Apr 25, 2024
  10. Apr 24, 2024
  11. Apr 16, 2024
  12. Apr 15, 2024
  13. Apr 10, 2024
  14. Mar 27, 2024
  15. Mar 25, 2024
  16. Feb 29, 2024
  17. Jan 26, 2024
  18. Jan 23, 2024
  19. Dec 22, 2023
  20. Dec 05, 2023
  21. Nov 14, 2023
  22. Nov 01, 2023
  23. Oct 19, 2023
  24. Oct 03, 2023
  25. Sep 26, 2023
  26. Sep 22, 2023
  27. Sep 20, 2023
  28. Sep 19, 2023
  29. Aug 30, 2023
  30. Aug 28, 2023
  31. Aug 23, 2023
  32. Aug 18, 2023
Loading