🐶 Public GraphQL API for information about dog breeds.
query {
breeds(locale: "en", filter: "Shiba") {
name
description
country {
name
}
}
}
The above GraphQL query produces the following JSON response.
{
"data": {
"breeds": [
{
"name": "Shiba Inu",
"description": "The Shiba Inu is a Japanese dog breed known for their spirited personality and distinctive appearance. They require exercise and socialization, and can be prone to genetic diseases such as hip dysplasia and progressive retinal atrophy. Breeders should screen for these conditions and potential owners should ask for health clearances.",
"country": {
"name": "Japan"
}
}
]
}
}
Check out the GraphiQL to explore the schema and test out some queries.
Sort allows you to sort by the name
in each language.
query {
breeds(sort: "desc") {
name
description
}
}
- 🐈NestJS
- Prisma
- Supabase
- Use 🐘PostgreSQL in our development environment.
- 🐋Docker
- ChatGPT
- The majority of the text data is currently generated by ChatGPT. We will now examine them one by one.