This is a Graphql server using JSONPlaceholder fake REST API for Testing and Prototyping.
https://sheltered-dawn-55270.herokuapp.com
Fetch posts:
query {
posts {
id
userId
title
body
}
}
Fetch todos:
query {
todos {
id
userId
title
completed
}
}
Fetch users:
query {
users {
id
name
username
email
phone
website
}
}
Fetch single user:
query fetchUser($id: Int!){
user(id: $id) {
id
name
username
email
phone
website
posts {
id
title
body
}
}
}