Skip to content
  • Sponsor
  • Notifications You must be signed in to change notification settings
  • Fork 0

Get GraphQL in PowerShell

License

Notifications You must be signed in to change notification settings

PowerShellWeb/GQL

Folders and files

NameName
Last commit message
Last commit date
Dec 29, 2024
Dec 19, 2024
Dec 29, 2024
Dec 19, 2024
Dec 20, 2024
Dec 29, 2024
Dec 29, 2024
Dec 17, 2024
Dec 17, 2024
Dec 17, 2024
Dec 17, 2024
Dec 17, 2024
Dec 29, 2024
Dec 17, 2024
Dec 29, 2024
Dec 17, 2024
Dec 16, 2024
Dec 19, 2024
Dec 19, 2024
Dec 29, 2024
Dec 17, 2024

Repository files navigation

GQL Logo (Animated)

GQL

Get Graph Query Language with PowerShell.

GQL is a small PowerShell module for GraphQL.

It is designed to provide a simple GraphQL client in PowerShell.

We can use this as a direct client to GraphQL, without having to involve any other layer.

GQL Container

You can use the GQL module within a container:

docker pull ghcr.io/powershellweb/gql
docker run -it ghcr.io/powershellweb/gql

Installing and Importing

Install-Module GQL -Scope CurrentUser -Force
Import-Module GQL -Force -PassThru

Get-GQL

To connect to a GQL and get results, use Get-GQL, or, simply GQL.

(like all functions in PowerShell, it is case-insensitive)

More Examples

Get-GQL Example 1

# Getting git sponsorship information from GitHub GraphQL.
# **To use this example, we'll need to provide `$MyPat` with a Personal Access Token.**        
Get-GQL -Query ./Examples/GitSponsors.gql -PersonalAccessToken $myPat

Get-GQL Example 2

# We can decorate graph object results to customize them.

About

Get GraphQL in PowerShell

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Sponsor this project

Sponsor

Packages 1