xxxxxxxxxx
# This GraphiQL explorer hits a JSON API at https://jsonapiplayground.reyesoft.com
query getJsonApiStuff {
authors (path: "/authors?include=books") {
id
type
name
birthplace
books {
id
type
title
datePublished
isbn
}
}
photos (path: "/photos") {
title
uri
}
}
xxxxxxxxxx
xxxxxxxxxx