We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e299e6b + 1692984 commit 8d405caCopy full SHA for 8d405ca
MiniGraph/MiniGraph.psd1
@@ -4,7 +4,7 @@
4
RootModule = 'MiniGraph.psm1'
5
6
# Version number of this module.
7
-ModuleVersion = '1.3.17'
+ModuleVersion = '1.3.18'
8
9
# Supported PSEditions
10
# CompatiblePSEditions = @()
MiniGraph/functions/Invoke-GraphRequest.ps1
@@ -70,7 +70,7 @@
70
ContentType = $ContentType
71
}
72
if ($Query -match '^http://|https://') {
73
- $parameters.Query = $Query
+ $parameters.Uri = $Query
74
75
if ($Body) {
76
if ($Body -is [string]) { $parameters.Body = $Body }
changelog.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## 1.3.18 (2024-03-19)
+
++ Fix: Invoke-GraphRequest - fails to execute queries starting with http
## 1.3.17 (2024-03-13)
+ Upd: Invoke-GraphRequest - supports full http links as query
0 commit comments