File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 4
4
RootModule = ' MiniGraph.psm1'
5
5
6
6
# Version number of this module.
7
- ModuleVersion = ' 1.3.16 '
7
+ ModuleVersion = ' 1.3.17 '
8
8
9
9
# Supported PSEditions
10
10
# CompatiblePSEditions = @()
Original file line number Diff line number Diff line change 8
8
9
9
. PARAMETER Query
10
10
The relative graph query with all conditions appended.
11
+ Uses the full query if the query starts with http:// or https://.
11
12
12
13
. PARAMETER Method
13
14
Which rest method to use.
68
69
Method = $Method
69
70
ContentType = $ContentType
70
71
}
72
+ if ($Query -match ' ^http://|https://' ) {
73
+ $parameters.Query = $Query
74
+ }
71
75
if ($Body ) {
72
76
if ($Body -is [string ]) { $parameters.Body = $Body }
73
77
else { $parameters.Body = $Body | ConvertTo-Json - Compress - Depth 99 }
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.3.17 (2024-03-13)
4
+
5
+ + Upd: Invoke-GraphRequest - supports full http links as query
6
+
3
7
## 1.3.16 (2024-03-05)
4
8
5
9
+ New: Get-GraphToken - retrieve the currently used token
You can’t perform that action at this time.
0 commit comments