Adding graphql query to fetch the latest v2 or v3 version

This commit is contained in:
Shivam Gupta
2021-03-17 13:44:31 +05:30
parent d55017e2a0
commit 091cb7f02c
187 changed files with 46222 additions and 105 deletions

View File

@ -0,0 +1,11 @@
const urlVariableRegex = /\{[^}]+\}/g;
function removeNonChars(variableName) {
return variableName.replace(/^\W+|\W+$/g, "").split(/,/);
}
export function extractUrlVariableNames(url) {
const matches = url.match(urlVariableRegex);
if (!matches) {
return [];
}
return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []);
}