我们如何在powerBI中从graphqlapi获取数据



我想直接从GraphQl api中获取数据到Power Bi我该如何使用

如果API的auth是API Key、Basic、Windows或AAD,则可以使用Web连接器。对于其他身份验证方案,您可能需要自定义连接器。

我会使用高级电源查询编辑器,而不是试图通过向导进行配置。

例如

let
uri = "https://countries.trevorblades.com",
query = "{
country(code: ""BR"") {
name
native
capital
emoji
currency
languages {
code
name
}
}
}",
source = uri & "?query=" & Uri.EscapeDataString(query),
resp = Web.Contents(source),
json = Json.Document(resp,65001),
data = json[data],
country = data[country],
#"Converted to Table" = Record.ToTable(country),
#"Pivoted Column" = Table.Pivot(#"Converted to Table", List.Distinct(#"Converted to Table"[Name]), "Name", "Value")
in
#"Pivoted Column"

相关内容

  • 没有找到相关文章

最新更新