@vocollege/app 0.0.115 → 0.0.117
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/modules/Services/I18n/strings.json +22 -4
- package/dist/modules/VoApi/queries/articles.js +1 -1
- package/dist/modules/VoApi/queries/pages.js +1 -1
- package/dist/modules/VoApi/queries/statistics.js +1 -1
- package/package.json +1 -1
- package/src/modules/Services/I18n/strings.json +22 -4
- package/src/modules/VoApi/queries/articles.ts +1 -0
- package/src/modules/VoApi/queries/pages.ts +1 -0
- package/src/modules/VoApi/queries/statistics.ts +131 -0
|
@@ -60,7 +60,13 @@
|
|
|
60
60
|
"messages": {
|
|
61
61
|
"articleSaved": "Artikeln har sparats",
|
|
62
62
|
"articleDeleted": "Artikeln har raderats"
|
|
63
|
-
}
|
|
63
|
+
},
|
|
64
|
+
"settings": [
|
|
65
|
+
{
|
|
66
|
+
"name": "hideTopImage",
|
|
67
|
+
"label": "Visa inte bilden högst upp på sidan"
|
|
68
|
+
}
|
|
69
|
+
]
|
|
64
70
|
},
|
|
65
71
|
"education": {
|
|
66
72
|
"label": "Utbildning",
|
|
@@ -86,7 +92,13 @@
|
|
|
86
92
|
"templates": {
|
|
87
93
|
"standard": "Standard",
|
|
88
94
|
"bigImage": "Stor bild"
|
|
89
|
-
}
|
|
95
|
+
},
|
|
96
|
+
"settings": [
|
|
97
|
+
{
|
|
98
|
+
"name": "hideTopImage",
|
|
99
|
+
"label": "Visa inte bilden högst upp på sidan (gäller endast 'Standard'-mallen)"
|
|
100
|
+
}
|
|
101
|
+
]
|
|
90
102
|
},
|
|
91
103
|
"queue": {
|
|
92
104
|
"label": "Kö",
|
|
@@ -670,7 +682,8 @@
|
|
|
670
682
|
"download": "Ladda ner",
|
|
671
683
|
"copyLink": "Kopiera länk",
|
|
672
684
|
"apply": "Tillämpa",
|
|
673
|
-
"generate": "Generera"
|
|
685
|
+
"generate": "Generera",
|
|
686
|
+
"downloadExcel": "Excel-fil"
|
|
674
687
|
},
|
|
675
688
|
"status": {
|
|
676
689
|
"unpublished": "Opublicerat",
|
|
@@ -1095,7 +1108,12 @@
|
|
|
1095
1108
|
"numberEducatorFolkhogskolor": "Antal folkhögskolor",
|
|
1096
1109
|
"numberEducatorYrkeshogskolor": "Antal yrkeshögskolor",
|
|
1097
1110
|
"numberOfEducators": "Antal utbildare",
|
|
1098
|
-
"educatorPerType": "Utbildare per typ"
|
|
1111
|
+
"educatorPerType": "Utbildare per typ",
|
|
1112
|
+
"certifiedRegionalVoCollege": "Certifierade regionala college",
|
|
1113
|
+
"certifiedLocalVoCollege": "Certifierade lokala college",
|
|
1114
|
+
"certifiedEducators": "Certifierade utbildare",
|
|
1115
|
+
"certifiedEducations": "Certifierade utbildningar",
|
|
1116
|
+
"outsideSelectedPeriod": "Utanför vald period"
|
|
1099
1117
|
},
|
|
1100
1118
|
"messages": {
|
|
1101
1119
|
"educatorCanAppearMultipleTimes": "Notera att en och samma utbildare kan förekomma flera gånger, under olika rubriker. T ex kan en utbildare vara både 'Kommunal Gymnasium' och 'Kommunal vuxenutbildning'.",
|
|
@@ -7,6 +7,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
7
7
|
exports.GET_ARTICLES = exports.GET_ARTICLE = exports.GET_ARTICLES_FIELDS = void 0;
|
|
8
8
|
var client_1 = require("@apollo/client");
|
|
9
9
|
exports.GET_ARTICLES_FIELDS = (0, client_1.gql)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n fragment ArticlesFields on Article {\n id\n title\n status\n author {\n ... on User {\n id\n name\n type\n }\n }\n date\n created_at\n updated_at\n }\n"], ["\n fragment ArticlesFields on Article {\n id\n title\n status\n author {\n ... on User {\n id\n name\n type\n }\n }\n date\n created_at\n updated_at\n }\n"])));
|
|
10
|
-
exports.GET_ARTICLE = (0, client_1.gql)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n query Article($id: ID!) {\n article(id: $id) {\n id\n title\n body\n status\n url\n editUrl\n author {\n ... on User {\n id\n name\n type\n }\n }\n date\n tags {\n id\n label\n }\n images {\n id\n title\n filename\n filesize\n filetype\n url\n }\n attachments {\n id\n title\n filename\n filesize\n filetype\n url\n type\n }\n created_at\n updated_at\n }\n # setting(name: \"frontFilesPortfolio\") {\n # name\n # category\n # value\n # }\n\n # portfolio(id: \"02a2f313-8a89-48dc-a242-f8c5177c0561\") {\n # id\n # disk\n # name\n # disk\n # title\n # description\n # created_at\n # updated_at\n # }\n }\n"], ["\n query Article($id: ID!) {\n article(id: $id) {\n id\n title\n body\n status\n url\n editUrl\n author {\n ... on User {\n id\n name\n type\n }\n }\n date\n tags {\n id\n label\n }\n images {\n id\n title\n filename\n filesize\n filetype\n url\n }\n attachments {\n id\n title\n filename\n filesize\n filetype\n url\n type\n }\n created_at\n updated_at\n }\n # setting(name: \"frontFilesPortfolio\") {\n # name\n # category\n # value\n # }\n\n # portfolio(id: \"02a2f313-8a89-48dc-a242-f8c5177c0561\") {\n # id\n # disk\n # name\n # disk\n # title\n # description\n # created_at\n # updated_at\n # }\n }\n"])));
|
|
10
|
+
exports.GET_ARTICLE = (0, client_1.gql)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n query Article($id: ID!) {\n article(id: $id) {\n id\n title\n body\n status\n url\n editUrl\n settings\n author {\n ... on User {\n id\n name\n type\n }\n }\n date\n tags {\n id\n label\n }\n images {\n id\n title\n filename\n filesize\n filetype\n url\n }\n attachments {\n id\n title\n filename\n filesize\n filetype\n url\n type\n }\n created_at\n updated_at\n }\n # setting(name: \"frontFilesPortfolio\") {\n # name\n # category\n # value\n # }\n\n # portfolio(id: \"02a2f313-8a89-48dc-a242-f8c5177c0561\") {\n # id\n # disk\n # name\n # disk\n # title\n # description\n # created_at\n # updated_at\n # }\n }\n"], ["\n query Article($id: ID!) {\n article(id: $id) {\n id\n title\n body\n status\n url\n editUrl\n settings\n author {\n ... on User {\n id\n name\n type\n }\n }\n date\n tags {\n id\n label\n }\n images {\n id\n title\n filename\n filesize\n filetype\n url\n }\n attachments {\n id\n title\n filename\n filesize\n filetype\n url\n type\n }\n created_at\n updated_at\n }\n # setting(name: \"frontFilesPortfolio\") {\n # name\n # category\n # value\n # }\n\n # portfolio(id: \"02a2f313-8a89-48dc-a242-f8c5177c0561\") {\n # id\n # disk\n # name\n # disk\n # title\n # description\n # created_at\n # updated_at\n # }\n }\n"])));
|
|
11
11
|
exports.GET_ARTICLES = (0, client_1.gql)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n query Articles(\n $search: String\n $page: Int\n $limit: Int\n $orderBy: [GetArticlesOrderByClause]\n $filters: [GetArticlesFilter]\n ) {\n articles(\n search: $search\n page: $page\n limit: $limit\n orderBy: $orderBy\n filters: $filters\n ) {\n paginatorInfo {\n total\n currentPage\n hasMorePages\n }\n data {\n ...ArticlesFields\n }\n }\n }\n ", "\n"], ["\n query Articles(\n $search: String\n $page: Int\n $limit: Int\n $orderBy: [GetArticlesOrderByClause]\n $filters: [GetArticlesFilter]\n ) {\n articles(\n search: $search\n page: $page\n limit: $limit\n orderBy: $orderBy\n filters: $filters\n ) {\n paginatorInfo {\n total\n currentPage\n hasMorePages\n }\n data {\n ...ArticlesFields\n }\n }\n }\n ", "\n"])), exports.GET_ARTICLES_FIELDS);
|
|
12
12
|
var templateObject_1, templateObject_2, templateObject_3;
|
|
@@ -6,6 +6,6 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
|
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.GET_PAGES = exports.GET_PAGE = void 0;
|
|
8
8
|
var client_1 = require("@apollo/client");
|
|
9
|
-
exports.GET_PAGE = (0, client_1.gql)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n query Page($id: ID!) {\n page(id: $id) {\n id\n title\n short_title\n body\n status\n url\n editUrl\n author {\n ... on User {\n id\n name\n type\n }\n }\n template\n created_at\n updated_at\n tags {\n id\n label\n }\n images {\n id\n title\n filename\n filesize\n filetype\n url\n }\n attachments {\n id\n title\n filename\n filesize\n filetype\n url\n type\n }\n }\n }\n"], ["\n query Page($id: ID!) {\n page(id: $id) {\n id\n title\n short_title\n body\n status\n url\n editUrl\n author {\n ... on User {\n id\n name\n type\n }\n }\n template\n created_at\n updated_at\n tags {\n id\n label\n }\n images {\n id\n title\n filename\n filesize\n filetype\n url\n }\n attachments {\n id\n title\n filename\n filesize\n filetype\n url\n type\n }\n }\n }\n"])));
|
|
9
|
+
exports.GET_PAGE = (0, client_1.gql)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n query Page($id: ID!) {\n page(id: $id) {\n id\n title\n short_title\n body\n status\n url\n editUrl\n author {\n ... on User {\n id\n name\n type\n }\n }\n template\n created_at\n updated_at\n settings\n tags {\n id\n label\n }\n images {\n id\n title\n filename\n filesize\n filetype\n url\n }\n attachments {\n id\n title\n filename\n filesize\n filetype\n url\n type\n }\n }\n }\n"], ["\n query Page($id: ID!) {\n page(id: $id) {\n id\n title\n short_title\n body\n status\n url\n editUrl\n author {\n ... on User {\n id\n name\n type\n }\n }\n template\n created_at\n updated_at\n settings\n tags {\n id\n label\n }\n images {\n id\n title\n filename\n filesize\n filetype\n url\n }\n attachments {\n id\n title\n filename\n filesize\n filetype\n url\n type\n }\n }\n }\n"])));
|
|
10
10
|
exports.GET_PAGES = (0, client_1.gql)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n query Pages(\n $search: String\n $page: Int\n $limit: Int\n $orderBy: [GetPagesOrderByClause]\n $filters: [GetPagesFilter]\n ) {\n pages(\n search: $search\n page: $page\n limit: $limit\n orderBy: $orderBy\n filters: $filters\n ) {\n paginatorInfo {\n total\n currentPage\n hasMorePages\n }\n data {\n id\n title\n status\n url\n author {\n ... on User {\n id\n name\n type\n }\n }\n template\n created_at\n updated_at\n }\n }\n }\n"], ["\n query Pages(\n $search: String\n $page: Int\n $limit: Int\n $orderBy: [GetPagesOrderByClause]\n $filters: [GetPagesFilter]\n ) {\n pages(\n search: $search\n page: $page\n limit: $limit\n orderBy: $orderBy\n filters: $filters\n ) {\n paginatorInfo {\n total\n currentPage\n hasMorePages\n }\n data {\n id\n title\n status\n url\n author {\n ... on User {\n id\n name\n type\n }\n }\n template\n created_at\n updated_at\n }\n }\n }\n"])));
|
|
11
11
|
var templateObject_1, templateObject_2;
|
|
@@ -8,5 +8,5 @@ exports.GET_CERTIFICATIONS_STATISTICS = exports.GET_GENERAL_STATISTICS = exports
|
|
|
8
8
|
var client_1 = require("@apollo/client");
|
|
9
9
|
exports.GET_GROUP_FIELDS = (0, client_1.gql)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n fragment GroupFields on Group {\n id\n name\n title\n category\n educator_type\n certified\n created_at\n }\n"], ["\n fragment GroupFields on Group {\n id\n name\n title\n category\n educator_type\n certified\n created_at\n }\n"])));
|
|
10
10
|
exports.GET_GENERAL_STATISTICS = (0, client_1.gql)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n query GeneralStatistics($filters: StatisticsFilters) {\n statistics(filters: $filters) {\n regions {\n ...GroupFields\n }\n localColleges {\n ...GroupFields\n }\n employers {\n ...GroupFields\n }\n educators {\n ...GroupFields\n }\n educations {\n id\n title\n total_usages\n # groups {\n # id\n # title\n # educator_type\n # educations {\n # id\n # title\n # pivot {\n # education_id\n # education_usage_id\n # education_usage_type\n # field\n # certified\n # }\n # }\n # }\n }\n # educatorsGymVO {\n # ...GroupFields\n # }\n # educatorsGymBF {\n # ...GroupFields\n # }\n # educatorsVuxVO {\n # ...GroupFields\n # }\n # educatorsVuxBF {\n # ...GroupFields\n # }\n # educatorsFolkhogskolor {\n # ...GroupFields\n # }\n # educatorsYrkeshogskolor {\n # ...GroupFields\n # }\n }\n }\n ", "\n"], ["\n query GeneralStatistics($filters: StatisticsFilters) {\n statistics(filters: $filters) {\n regions {\n ...GroupFields\n }\n localColleges {\n ...GroupFields\n }\n employers {\n ...GroupFields\n }\n educators {\n ...GroupFields\n }\n educations {\n id\n title\n total_usages\n # groups {\n # id\n # title\n # educator_type\n # educations {\n # id\n # title\n # pivot {\n # education_id\n # education_usage_id\n # education_usage_type\n # field\n # certified\n # }\n # }\n # }\n }\n # educatorsGymVO {\n # ...GroupFields\n # }\n # educatorsGymBF {\n # ...GroupFields\n # }\n # educatorsVuxVO {\n # ...GroupFields\n # }\n # educatorsVuxBF {\n # ...GroupFields\n # }\n # educatorsFolkhogskolor {\n # ...GroupFields\n # }\n # educatorsYrkeshogskolor {\n # ...GroupFields\n # }\n }\n }\n ", "\n"])), exports.GET_GROUP_FIELDS);
|
|
11
|
-
exports.GET_CERTIFICATIONS_STATISTICS = (0, client_1.gql)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n query CertificationsStatistics($filters: StatisticsFilters) {\n statistics(filters: $filters) {\n certifiedRegions {\n id\n name\n title\n certified\n created_at\n }\n }\n }\n"], ["\n query CertificationsStatistics($filters: StatisticsFilters) {\n statistics(filters: $filters) {\n certifiedRegions {\n id\n name\n title\n certified\n created_at\n }\n }\n }\n"])));
|
|
11
|
+
exports.GET_CERTIFICATIONS_STATISTICS = (0, client_1.gql)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n query CertificationsStatistics($filters: StatisticsFilters) {\n statistics(filters: $filters) {\n certifiedRegions {\n id\n name\n title\n certified\n created_at\n # groups {\n # id\n # title\n # certified\n # groups {\n # id\n # title\n # certified\n # }\n # }\n }\n certifiedLocalColleges {\n id\n name\n title\n certified\n created_at\n parentGroups {\n id\n name\n title\n certified\n }\n }\n certifiedEducators {\n id\n name\n title\n certified\n created_at\n parentGroups {\n id\n name\n title\n certified\n parentGroups {\n id\n title\n certified\n }\n }\n }\n certifiedEducations {\n education_id\n education_certified\n education_title\n educator_id\n educator_title\n educator_certified\n local_college_id\n local_college_title\n local_college_certified\n region_id\n region_title\n region_certified\n # groups {\n # id\n # name\n # title\n # certified\n # created_at\n # parentGroups {\n # id\n # name\n # title\n # parentGroups {\n # id\n # name\n # title\n # }\n # }\n # pivot {\n # education_id\n # education_usage_id\n # education_usage_type\n # field\n # certified\n # }\n # }\n }\n # certifications {\n # # id\n # # name\n # # title\n # # certified\n # # created_at\n # # parentGroups {\n # # id\n # # title\n # # certified\n # # parentGroups {\n # # id\n # # title\n # # certified\n # # }\n # # }\n # # educations {\n # id\n # title\n # # pivot {\n # # education_id\n # # education_usage_id\n # # education_usage_type\n # # field\n # # certified\n # # }\n # groups {\n # id\n # name\n # title\n # certified\n # created_at\n # parentGroups {\n # id\n # title\n # certified\n # parentGroups {\n # id\n # title\n # certified\n # }\n # }\n # pivot {\n # education_id\n # education_usage_id\n # education_usage_type\n # field\n # certified\n # }\n # }\n # # }\n # }\n }\n }\n"], ["\n query CertificationsStatistics($filters: StatisticsFilters) {\n statistics(filters: $filters) {\n certifiedRegions {\n id\n name\n title\n certified\n created_at\n # groups {\n # id\n # title\n # certified\n # groups {\n # id\n # title\n # certified\n # }\n # }\n }\n certifiedLocalColleges {\n id\n name\n title\n certified\n created_at\n parentGroups {\n id\n name\n title\n certified\n }\n }\n certifiedEducators {\n id\n name\n title\n certified\n created_at\n parentGroups {\n id\n name\n title\n certified\n parentGroups {\n id\n title\n certified\n }\n }\n }\n certifiedEducations {\n education_id\n education_certified\n education_title\n educator_id\n educator_title\n educator_certified\n local_college_id\n local_college_title\n local_college_certified\n region_id\n region_title\n region_certified\n # groups {\n # id\n # name\n # title\n # certified\n # created_at\n # parentGroups {\n # id\n # name\n # title\n # parentGroups {\n # id\n # name\n # title\n # }\n # }\n # pivot {\n # education_id\n # education_usage_id\n # education_usage_type\n # field\n # certified\n # }\n # }\n }\n # certifications {\n # # id\n # # name\n # # title\n # # certified\n # # created_at\n # # parentGroups {\n # # id\n # # title\n # # certified\n # # parentGroups {\n # # id\n # # title\n # # certified\n # # }\n # # }\n # # educations {\n # id\n # title\n # # pivot {\n # # education_id\n # # education_usage_id\n # # education_usage_type\n # # field\n # # certified\n # # }\n # groups {\n # id\n # name\n # title\n # certified\n # created_at\n # parentGroups {\n # id\n # title\n # certified\n # parentGroups {\n # id\n # title\n # certified\n # }\n # }\n # pivot {\n # education_id\n # education_usage_id\n # education_usage_type\n # field\n # certified\n # }\n # }\n # # }\n # }\n }\n }\n"])));
|
|
12
12
|
var templateObject_1, templateObject_2, templateObject_3;
|
package/package.json
CHANGED
|
@@ -60,7 +60,13 @@
|
|
|
60
60
|
"messages": {
|
|
61
61
|
"articleSaved": "Artikeln har sparats",
|
|
62
62
|
"articleDeleted": "Artikeln har raderats"
|
|
63
|
-
}
|
|
63
|
+
},
|
|
64
|
+
"settings": [
|
|
65
|
+
{
|
|
66
|
+
"name": "hideTopImage",
|
|
67
|
+
"label": "Visa inte bilden högst upp på sidan"
|
|
68
|
+
}
|
|
69
|
+
]
|
|
64
70
|
},
|
|
65
71
|
"education": {
|
|
66
72
|
"label": "Utbildning",
|
|
@@ -86,7 +92,13 @@
|
|
|
86
92
|
"templates": {
|
|
87
93
|
"standard": "Standard",
|
|
88
94
|
"bigImage": "Stor bild"
|
|
89
|
-
}
|
|
95
|
+
},
|
|
96
|
+
"settings": [
|
|
97
|
+
{
|
|
98
|
+
"name": "hideTopImage",
|
|
99
|
+
"label": "Visa inte bilden högst upp på sidan (gäller endast 'Standard'-mallen)"
|
|
100
|
+
}
|
|
101
|
+
]
|
|
90
102
|
},
|
|
91
103
|
"queue": {
|
|
92
104
|
"label": "Kö",
|
|
@@ -670,7 +682,8 @@
|
|
|
670
682
|
"download": "Ladda ner",
|
|
671
683
|
"copyLink": "Kopiera länk",
|
|
672
684
|
"apply": "Tillämpa",
|
|
673
|
-
"generate": "Generera"
|
|
685
|
+
"generate": "Generera",
|
|
686
|
+
"downloadExcel": "Excel-fil"
|
|
674
687
|
},
|
|
675
688
|
"status": {
|
|
676
689
|
"unpublished": "Opublicerat",
|
|
@@ -1095,7 +1108,12 @@
|
|
|
1095
1108
|
"numberEducatorFolkhogskolor": "Antal folkhögskolor",
|
|
1096
1109
|
"numberEducatorYrkeshogskolor": "Antal yrkeshögskolor",
|
|
1097
1110
|
"numberOfEducators": "Antal utbildare",
|
|
1098
|
-
"educatorPerType": "Utbildare per typ"
|
|
1111
|
+
"educatorPerType": "Utbildare per typ",
|
|
1112
|
+
"certifiedRegionalVoCollege": "Certifierade regionala college",
|
|
1113
|
+
"certifiedLocalVoCollege": "Certifierade lokala college",
|
|
1114
|
+
"certifiedEducators": "Certifierade utbildare",
|
|
1115
|
+
"certifiedEducations": "Certifierade utbildningar",
|
|
1116
|
+
"outsideSelectedPeriod": "Utanför vald period"
|
|
1099
1117
|
},
|
|
1100
1118
|
"messages": {
|
|
1101
1119
|
"educatorCanAppearMultipleTimes": "Notera att en och samma utbildare kan förekomma flera gånger, under olika rubriker. T ex kan en utbildare vara både 'Kommunal Gymnasium' och 'Kommunal vuxenutbildning'.",
|
|
@@ -80,7 +80,138 @@ export const GET_CERTIFICATIONS_STATISTICS = gql`
|
|
|
80
80
|
title
|
|
81
81
|
certified
|
|
82
82
|
created_at
|
|
83
|
+
# groups {
|
|
84
|
+
# id
|
|
85
|
+
# title
|
|
86
|
+
# certified
|
|
87
|
+
# groups {
|
|
88
|
+
# id
|
|
89
|
+
# title
|
|
90
|
+
# certified
|
|
91
|
+
# }
|
|
92
|
+
# }
|
|
93
|
+
}
|
|
94
|
+
certifiedLocalColleges {
|
|
95
|
+
id
|
|
96
|
+
name
|
|
97
|
+
title
|
|
98
|
+
certified
|
|
99
|
+
created_at
|
|
100
|
+
parentGroups {
|
|
101
|
+
id
|
|
102
|
+
name
|
|
103
|
+
title
|
|
104
|
+
certified
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
certifiedEducators {
|
|
108
|
+
id
|
|
109
|
+
name
|
|
110
|
+
title
|
|
111
|
+
certified
|
|
112
|
+
created_at
|
|
113
|
+
parentGroups {
|
|
114
|
+
id
|
|
115
|
+
name
|
|
116
|
+
title
|
|
117
|
+
certified
|
|
118
|
+
parentGroups {
|
|
119
|
+
id
|
|
120
|
+
title
|
|
121
|
+
certified
|
|
122
|
+
}
|
|
123
|
+
}
|
|
83
124
|
}
|
|
125
|
+
certifiedEducations {
|
|
126
|
+
education_id
|
|
127
|
+
education_certified
|
|
128
|
+
education_title
|
|
129
|
+
educator_id
|
|
130
|
+
educator_title
|
|
131
|
+
educator_certified
|
|
132
|
+
local_college_id
|
|
133
|
+
local_college_title
|
|
134
|
+
local_college_certified
|
|
135
|
+
region_id
|
|
136
|
+
region_title
|
|
137
|
+
region_certified
|
|
138
|
+
# groups {
|
|
139
|
+
# id
|
|
140
|
+
# name
|
|
141
|
+
# title
|
|
142
|
+
# certified
|
|
143
|
+
# created_at
|
|
144
|
+
# parentGroups {
|
|
145
|
+
# id
|
|
146
|
+
# name
|
|
147
|
+
# title
|
|
148
|
+
# parentGroups {
|
|
149
|
+
# id
|
|
150
|
+
# name
|
|
151
|
+
# title
|
|
152
|
+
# }
|
|
153
|
+
# }
|
|
154
|
+
# pivot {
|
|
155
|
+
# education_id
|
|
156
|
+
# education_usage_id
|
|
157
|
+
# education_usage_type
|
|
158
|
+
# field
|
|
159
|
+
# certified
|
|
160
|
+
# }
|
|
161
|
+
# }
|
|
162
|
+
}
|
|
163
|
+
# certifications {
|
|
164
|
+
# # id
|
|
165
|
+
# # name
|
|
166
|
+
# # title
|
|
167
|
+
# # certified
|
|
168
|
+
# # created_at
|
|
169
|
+
# # parentGroups {
|
|
170
|
+
# # id
|
|
171
|
+
# # title
|
|
172
|
+
# # certified
|
|
173
|
+
# # parentGroups {
|
|
174
|
+
# # id
|
|
175
|
+
# # title
|
|
176
|
+
# # certified
|
|
177
|
+
# # }
|
|
178
|
+
# # }
|
|
179
|
+
# # educations {
|
|
180
|
+
# id
|
|
181
|
+
# title
|
|
182
|
+
# # pivot {
|
|
183
|
+
# # education_id
|
|
184
|
+
# # education_usage_id
|
|
185
|
+
# # education_usage_type
|
|
186
|
+
# # field
|
|
187
|
+
# # certified
|
|
188
|
+
# # }
|
|
189
|
+
# groups {
|
|
190
|
+
# id
|
|
191
|
+
# name
|
|
192
|
+
# title
|
|
193
|
+
# certified
|
|
194
|
+
# created_at
|
|
195
|
+
# parentGroups {
|
|
196
|
+
# id
|
|
197
|
+
# title
|
|
198
|
+
# certified
|
|
199
|
+
# parentGroups {
|
|
200
|
+
# id
|
|
201
|
+
# title
|
|
202
|
+
# certified
|
|
203
|
+
# }
|
|
204
|
+
# }
|
|
205
|
+
# pivot {
|
|
206
|
+
# education_id
|
|
207
|
+
# education_usage_id
|
|
208
|
+
# education_usage_type
|
|
209
|
+
# field
|
|
210
|
+
# certified
|
|
211
|
+
# }
|
|
212
|
+
# }
|
|
213
|
+
# # }
|
|
214
|
+
# }
|
|
84
215
|
}
|
|
85
216
|
}
|
|
86
217
|
`;
|