Skip to content

Instantly share code, notes, and snippets.

View thovan-bayard's full-sized avatar
😷

thovan-bayard

😷
View GitHub Profile
@thovan-bayard
thovan-bayard / example.php
Created August 20, 2020 10:13 — forked from dunglas/example.php
A minimalist GraphQL client for PHP
<?php
$query = <<<'GRAPHQL'
query GetUser($user: String!) {
user (login: $user) {
name
email
repositoriesContributedTo {
totalCount
}