crystal-gql
GraphQL Client for Crystal
A GraphQL client shard for the Crystal language.
- Version: 0.1.3
- Crystal Version: 0.35.1
Usage
Installing
Just add this to your shards.yml file:
dependencies:
crystal-gql:
github: itsezc/crystal-gql
Then run:
shards install
Initializing
require "crystal-gql"
# Define the client
api = GraphQLClient.new "https://countries.trevorblades.com"
Querying
# useQuery
data, error, loading = api.useQuery(GQL {
"continents" => [
"code",
"name",
{
"countries" => [
"name",
"capital",
{
"languages" => [
"name"
]
}
]
}
]
})
# or traditional queries
data, error, loading = api.query("{
continents {
code
name
countries {
name
capital
languages {
name
}
}
}
}")
# Print data
print data
Querying
With authentication:
api.add_header("Authorization", "Bearer: TOKEN")
# useQuery
data, error, loading = api.useQuery(GQL {
"continents" => [
"code",
"name",
{
"countries" => [
"name",
"capital",
{
"languages" => [
"name"
]
}
]
}
]
})
Repository
crystal-gql
Owner
Statistic
- 6
- 1
- 0
- 3
- 0
- over 3 years ago
- March 30, 2020
License
MIT License
Links
Synced at
Thu, 21 Nov 2024 22:37:52 GMT
Languages