The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Good afternoon all,
I have been facing this issue for a few days, already check the forum and Chris Webb blogs and all the solutions provided didn't work. Soory for the post on this topic again but I can't find one related with Contentstack and everything I try didn't work.
Already try with RelativePath and Query on the link string.
The idea it's to call the Contentstack API to get the data, but since the limit it's 100 they tell us in they documentation to use the skips to get all the data we need.
The query we have being trying is this one:
When write the query like this I have the same issue and doesn't work:
let
Source = Json.Document(Web.Contents("https://eu-cdn.contentstack.com",
[RelativePath="/v3/content_types/TYPE_OF_CONTENT/entries",
Query[XXXXXXX="ABC",include_count="true"],
But if I write the query with only one parameter it works:
let
Source = Json.Document(Web.Contents("https://eu-cdn.contentstack.com",
[RelativePath="/v3/content_types/TYPE_OF_CONTENT/entries",
Query=[XXXXXXX="ABC"],
When way I can keep the query with two parameters?
check if your "true" parameter value is case sensitive.
I checked and if I change it, it gives an error.
This API as a limit of 100 per page but the link doesn't have the page number. I have been looking for other ways to go around this but can't find anything.
So my problem it's that if I Query=[XXXXXXX="ABC"], I get 100 data points, but I want all the others. If I query this I can publish and PBI Service refresh without issues.
But we are using Query[XXXXXXX="ABC",include_count="true"], to get all the other pages together, but if I use this one PBI Service won't refresh the data.
Don't know if someone as a better aproach to this situation.
Already try with RelativePath and Query on the link string.
There is no "try". You must use it. Adjust your code accordingly