Power BI - Getting Data
What is the expected output of this Power Query M code?
let
Raw = Web.Contents("https://api.example.com/users"),
Json = Json.Document(Raw),
Users = Json["users"],
Table = Table.FromList(Users, Splitter.SplitByNothing())
in
Table