Skip to content

Commit 7e8e002

Browse files
StartAutomatingStartAutomating
StartAutomating
authored and
StartAutomating
committed
feat: Get-GQL -Refresh ( Fixes #2, Fixes #31, Fixes #32 )
1 parent 26761d9 commit 7e8e002

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

docs/Get-GQL.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,15 @@ This can be useful for queries that would be run frequently, but change infreque
9696
|----------|--------|--------|---------------------|
9797
|`[Switch]`|false |named |true (ByPropertyName)|
9898

99+
#### **Refresh**
100+
If set, will refresh the cache.
101+
This can be useful to force an update of cached information.
102+
`-Refresh` implies `-Cache` (it just will not return an uncached value).
103+
104+
|Type |Required|Position|PipelineInput |
105+
|----------|--------|--------|---------------------|
106+
|`[Switch]`|false |named |true (ByPropertyName)|
107+
99108
#### **WhatIf**
100109
-WhatIf is an automatic variable that is created when a command has ```[CmdletBinding(SupportsShouldProcess)]```.
101110
-WhatIf is used to see what would happen, or return operations without executing them
@@ -111,5 +120,5 @@ If the command sets a ```[ConfirmImpact("Medium")]``` which is lower than ```$co
111120

112121
### Syntax
113122
```PowerShell
114-
Get-GQL [[-Query] <String[]>] [[-PersonalAccessToken] <String>] [[-GraphQLUri] <Uri>] [[-Parameter] <IDictionary>] [[-Header] <IDictionary>] [[-PSTypeName] <String[]>] [-Cache] [-WhatIf] [-Confirm] [<CommonParameters>]
123+
Get-GQL [[-Query] <String[]>] [[-PersonalAccessToken] <String>] [[-GraphQLUri] <Uri>] [[-Parameter] <IDictionary>] [[-Header] <IDictionary>] [[-PSTypeName] <String[]>] [-Cache] [-Refresh] [-WhatIf] [-Confirm] [<CommonParameters>]
115124
```

0 commit comments

Comments
 (0)