Hi Team,When I make changes to Content Fragments, Models and GraphQL query and publish all of them, I don't see the changes reflected in publish instance. I could see them in author instance though. I waited for about 30 mins, still I don't see them in publish. I'm checking this in dev environment.I...
Hi Team,When I try to access GraphQL GET endpoint in prod environment, I get a 403 forbidden error.I have the following added in default_filters.any file. # Allow GraphQL & preflight requests
# GraphQL also supports "GET" requests, if you intend to use "GET" add a rule in filters.any
/0060 { /type ...
@aanchal-sikka Makes sense now.So if no CUG is applied for the content which the graphQL query accesses in query, no need of authentication for the API even in prod? The publishUrl of assets returned in the query result in prod would be accessible without any authentication?
Hi @iamnjain ,On the first point, when I publish my GraphQL query in prod publish, I can access it from an external application without any authentication?
Hi @iamnjain ,When I tried in other environments, I get"img": {
"altText": "Image Alt text",
"ariaLabel": "Image Alt text",
"mobileImage": {
"_path": "/content/dam/my-project/images/image (1).png",
"_authorUrl": "http://localhost:4502/content/dam/my-project/images/image%20(1).png",
"_publishUrl": "h...
Hi @iamnjain ,On the second point, when I use the _publishUrl option in the query, I would get something like www.domain/content/dam/<path-to-image> in the query response in publish prod environment. But if I directly put the same url in browser, I get 403 Forbidden. How would I be able to use in th...
Hi Team,I'm trying to expose contents in DAM to a third party application via Content Fragments and GraphQL query. I have created queries and persisted it. I have the below questions: 1. I would like to know the Authentication token to be passed in the API request2. The GraphQL query in local instan...