You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add GraphQL support including New-ServiceNowSession -GraphQL and Invoke-ServiceNowGraphQL, the latter is a WIP
Update custom variable format with Get-ServiceNowRecord -IncludeCustomVariable. The new format adds each custom variable as an object property as opposed to an array of hashtables. Old: $response.CustomVariable.where{$_.name -eq 'mycustvar'}.value, New: $response.CustomVariable.mycustvar.value. Access the new format with -IncludeCustomVariable -New