Files
cloud-cap-samples/graphql/examples.http
2022-02-24 08:30:26 +01:00

8 lines
247 B
HTTP

# GraphQL
GET http://localhost:4007/graphql?query={BookshopService{Books{title,author{name},chapters{number,title}}}}
###
# OData
GET http://localhost:4007/bookshop/Books?$select=title&$expand=author($select=name),chapters($select=number,title)