There is Important Note on skills_developments inputs, make sure to check it.
Types::Objects::MeasureOfImpact (new object)New file: app/graphql/types/objects/measure_of_impact.rb
type MeasureOfImpact {
id: ID!
value: String
description: String
opportunity: Opportunity
}Inputs::MeasureOfImpact (new input)New file: app/graphql/inputs/measure_of_impact.rb
input MeasureOfImpactInput {
id: ID
value: String
description: String
_destroy: Boolean
}_destroy: true Removes the record with the matching id (Rails nested attributes with allow_destroy: true).
Location | Removed | Reason |
|---|---|---|
|
| No longer stored on applications; measure of impacts are owned by the parent |
|
| Removed; applications no longer manage measure of impacts |
|
| Replaced by |
|
| Re-typed to |
Location | Added | Description |
|---|---|---|
|
| Re-typed from |
|
| New field — skill-development tags split out from |
|
| Replaces |
|
| New argument — set skill-development tags. IMPORTANT NOTE: pass option as skill_development, otherwise it won't register as skill_developments. |
Paging type used by list queries is unchanged: current_page, total_items, total_pages.