我没有看到任何关于如何使用 F# 和 Http.fs 执行 GraphQL API 的好的文档
如果您有正确的语法可用或指向相同的正确文档,请分享。我正在尝试使用此处给出的星球大战 API:https ://www.rithmschool.com/blog/an-introduction-to-graphql-queries
URL: https://swapi.graph.cool
Header: 'Content-Type': 'application/json'
JSON Body:
query {
Film (title:"A New Hope" ) {
director
characters {
name
}
}
}