Forum Discussion
h4tt3n
5 years agoHelper V
GraphQL query in Power BI?
Hello, I am trying to connect to a GraphQL api through Power BI and could use some advice. In the Postman API tool I have written a working query, like this: The query is above, and par...
Mark_RSantos
2 years agoNew Member
Solução funcional 2024:
let
Source = Web.Contents(
"URL",
[
Headers=[
#"Method"="POST",
#"Content-Type"="application/json",
#"Authorization"= "Bearer xxxxxxxx"
],
Content=Text.ToBinary("{""query"": ""{ cards(pipe_id:xxxxxx){ edges{ node{ id title uuid url phases_history { phase { name created_at } } } } } }""}")
]
),
#"JSON" = Json.Document(Source)