(url: string)
| 6 | const isGraphQLURI = (url: string): boolean => |
| 7 | url.toLowerCase().endsWith("graphql"); |
| 8 | const isJSONFile = (url: string): boolean => |
| 9 | url.toLowerCase().endsWith(".json"); |
| 10 | const isValidURL = (url: string): boolean => { |
| 11 | try { |
| 12 | new URL(url); |