Suggests issues when typing title
This suggests possibly related issues when the user types a title. This uses GraphQL to allow the frontend to request the exact data that is requires. We also get free caching through the Vue Apollo plugin. With this we can include the ability to import .graphql files in JS and Vue files. Also we now have the Vue test utils library to make testing Vue components easier. Closes #22071
Showing
app/graphql/types/order.rb
0 → 100644
app/graphql/types/sort.rb
0 → 100644
... | ... | @@ -26,6 +26,8 @@ |
"@babel/preset-env": "^7.1.0", | ||
"@gitlab/svgs": "^1.38.0", | ||
"@gitlab/ui": "^1.11.0", | ||
"apollo-boost": "^0.1.20", | ||
"apollo-client": "^2.4.5", | ||
"autosize": "^4.0.0", | ||
"axios": "^0.17.1", | ||
"babel-loader": "^8.0.4", | ||
... | ... | @@ -60,6 +62,7 @@ |
"formdata-polyfill": "^3.0.11", | ||
"fuzzaldrin-plus": "^0.5.0", | ||
"glob": "^7.1.2", | ||
"graphql": "^14.0.2", | ||
"imports-loader": "^0.8.0", | ||
"jed": "^1.1.1", | ||
"jquery": "^3.2.1", | ||
... | ... | @@ -97,6 +100,7 @@ |
"url-loader": "^1.1.1", | ||
"visibilityjs": "^1.2.4", | ||
"vue": "^2.5.17", | ||
"vue-apollo": "^3.0.0-beta.25", | ||
"vue-loader": "^15.4.2", | ||
"vue-resource": "^1.5.0", | ||
"vue-router": "^3.0.1", | ||
... | ... | @@ -127,6 +131,7 @@ |
"eslint-plugin-jasmine": "^2.10.1", | ||
"gettext-extractor": "^3.3.2", | ||
"gettext-extractor-vue": "^4.0.1", | ||
"graphql-tag": "^2.10.0", | ||
"istanbul": "^0.4.5", | ||
"jasmine-core": "^2.9.0", | ||
"jasmine-diff": "^0.1.3", | ||
... | ... |
Please register or sign in to comment